:root {
    color-scheme: light;
    --brand-navy-950: #051225;
    --brand-navy-900: #07182f;
    --brand-navy-800: #0b2347;
    --brand-navy-700: #123666;
    --brand-blue-100: #e8f0fb;
    --brand-yellow: #f4c515;
    --brand-yellow-deep: #d9aa00;
    --brand-paper: #f5f7fb;
    --brand-white: #ffffff;
    --brand-line: #dce4ef;
    --brand-line-soft: #e9eef5;
    --brand-text: #14233b;
    --brand-muted: #637189;
    --brand-success: #0a8b66;
    --brand-shadow-sm: 0 8px 24px rgba(7, 24, 47, 0.07);
    --brand-shadow-md: 0 20px 60px rgba(7, 24, 47, 0.11);
    --brand-shadow-lg: 0 34px 90px rgba(7, 24, 47, 0.17);
    --brand-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --brand-content: 88rem;
}

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

html {
    scroll-behavior: smooth;
    background: var(--brand-paper);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: clip;
    background:
        radial-gradient(circle at 4% 12%, rgba(18, 54, 102, 0.055), transparent 24rem),
        linear-gradient(180deg, #f9fbfe 0%, var(--brand-paper) 52%, #eef3f9 100%);
    color: var(--brand-text);
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(7, 24, 47, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 24, 47, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word;
}

::selection {
    background: var(--brand-yellow);
    color: var(--brand-navy-950);
}

:focus-visible {
    outline: 3px solid rgba(244, 197, 21, 0.72);
    outline-offset: 3px;
}

/* Navigation */

.nav-bar.nav-bar {
    z-index: 1000;
    border: 0;
    transition: filter 300ms ease;
}

.nav-bar .nav-bar__strip {
    min-height: 2.35rem;
    border: 0;
    background: var(--brand-navy-950);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.nav-bar .nav-bar__strip-inner {
    max-width: var(--brand-content);
    margin-inline: auto;
}

.nav-bar .nav-bar__strip a {
    padding: 0.35rem 0.72rem;
    border-radius: 0.45rem;
    background: var(--brand-yellow);
    color: var(--brand-navy-950);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.nav-bar .nav-bar__center {
    border-bottom: 1px solid rgba(220, 228, 239, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(22px) saturate(150%);
    transition: box-shadow 300ms ease, background-color 300ms ease;
}

.nav-bar.is-scrolled .nav-bar__center {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 12px 36px rgba(7, 24, 47, 0.1);
}

.nav-bar .nav-bar__inner {
    max-width: var(--brand-content);
    min-height: 5.25rem;
    padding: 0.7rem clamp(1.2rem, 3.5vw, 3rem);
}

.nav-bar .nav-bar__brand-logo {
    inline-size: clamp(11rem, 16vw, 14.5rem);
    block-size: 3.5rem;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: left center;
    transition: transform 450ms var(--brand-ease);
}

.nav-bar .nav-bar__brand-link:hover .nav-bar__brand-logo {
    transform: translateX(0.18rem);
}

.nav-bar .nav-bar__brand-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-bar .nav-bar__menu,
.nav-bar .nav-bar__links,
.nav-bar .nav-bar__actions {
    gap: 0.25rem;
}

/* Keep the complete navigation visible on conventional desktop widths. */
@media (min-width: 1101px) and (max-width: 1440px) {
    .nav-bar .nav-bar__strip-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .nav-bar .nav-bar__strip-text,
    .nav-bar .nav-bar__strip-links {
        flex: 0 1 auto !important;
        width: auto !important;
    }

    .nav-bar--stack-mobile.nav-bar--has-burger .nav-bar__inner {
        flex-flow: row nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .nav-bar--stack-mobile .nav-bar__brand {
        flex: 0 0 auto !important;
    }

    .nav-bar--has-burger .nav-bar__toggle {
        display: none !important;
    }

    .nav-bar--has-burger .nav-bar__menu {
        display: flex !important;
        flex: 1 1 auto;
        flex-basis: auto !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
        margin-top: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .nav-bar--has-burger .nav-bar__links,
    .nav-bar--has-burger .nav-bar__actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
    }

    .nav-bar--has-burger .nav-bar__links {
        flex: 1 1 auto !important;
    }

    .nav-bar--has-burger .nav-bar__item,
    .nav-bar--has-burger .nav-bar__account {
        width: auto !important;
    }

    .nav-bar--has-burger :is(.nav-bar__link, .nav-bar__action, .nav-bar__account-button, .nav-bar__account-link) {
        width: auto !important;
        min-height: 2.75rem !important;
        justify-content: center !important;
        padding-inline: 0.82rem !important;
    }

    .nav-bar--has-burger .nav-bar__link {
        border: 0 !important;
    }
}

.nav-bar .nav-bar__link {
    position: relative;
    min-height: 2.75rem;
    padding: 0.65rem 0.82rem;
    border-radius: 0.55rem;
    color: #45536b;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.nav-bar .nav-bar__link::after {
    content: "";
    position: absolute;
    right: 0.82rem;
    bottom: 0.25rem;
    left: 0.82rem;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 280ms var(--brand-ease);
}

.nav-bar .nav-bar__link:hover,
.nav-bar .nav-bar__link:focus-visible,
.nav-bar .nav-bar__link.is-active {
    background: #f2f6fb;
    color: var(--brand-navy-800);
    transform: translateY(-1px);
}

.nav-bar .nav-bar__link:hover::after,
.nav-bar .nav-bar__link.is-active::after {
    transform: scaleX(1);
}

.nav-bar .nav-bar__link-icon--route:empty::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='6' cy='18' r='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='18' cy='6' r='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8.5 18h2.25c4.5 0 1-12 5-12h.75' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-dasharray='2.5 2.5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='6' cy='18' r='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='18' cy='6' r='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8.5 18h2.25c4.5 0 1-12 5-12h.75' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-dasharray='2.5 2.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-bar .nav-bar__link-icon--logout:empty::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 5H5v14h5M14 8l4 4-4 4M8 12h10' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 5H5v14h5M14 8l4 4-4 4M8 12h10' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Signed-in identity */

.nav-bar .nav-bar__account-button {
    position: relative;
    min-height: 3rem;
    padding: 0.38rem 2.2rem 0.38rem 0.42rem;
    border: 1px solid #d4deea;
    border-radius: 0.72rem;
    background: #f8fafc;
    color: var(--brand-navy-900);
}

.nav-bar .nav-bar__account-button::after {
    content: "";
    position: absolute;
    right: 0.8rem;
    width: 0.38rem;
    height: 0.38rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    opacity: 0.65;
    transform: translateY(-0.12rem) rotate(45deg);
    transition: transform 220ms ease;
}

.nav-bar .nav-bar__account.is-menu-open .nav-bar__account-button::after,
.nav-bar .nav-bar__account:hover .nav-bar__account-button::after {
    transform: translateY(0.1rem) rotate(225deg);
}

.nav-bar .nav-bar__account-avatar {
    width: 2.15rem;
    height: 2.15rem;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #cfd9e6;
}

.nav-bar .nav-bar__account-label {
    color: var(--brand-navy-900);
    font-size: 0.78rem;
    font-weight: 700;
}

.nav-bar .nav-bar__account-status {
    color: #728096;
    font-size: 0.59rem;
    font-weight: 550;
}

.nav-bar .nav-bar__account-menu {
    width: 15.5rem;
    padding: 0.5rem;
    border: 1px solid #d8e1ec;
    border-radius: 0.82rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 52px rgba(7, 24, 47, 0.17);
    backdrop-filter: blur(18px);
}

.nav-bar .nav-bar__account-menu .nav-bar__account-link {
    width: 100% !important;
    min-height: 2.75rem !important;
    justify-content: flex-start !important;
    padding: 0.68rem 0.75rem !important;
    border: 0;
    border-radius: 0.55rem;
    color: #46566c;
    font-size: 0.76rem;
    font-weight: 600;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-bar .nav-bar__account-menu .nav-bar__account-link:hover,
.nav-bar .nav-bar__account-menu .nav-bar__account-link:focus-visible {
    background: #f0f4f9;
    color: var(--brand-navy-900);
    transform: translateX(0.16rem);
}

.nav-bar .nav-bar__account-menu .nav-bar__account-link:last-child {
    margin-top: 0.35rem;
    border-top: 1px solid #e5ebf2;
    border-radius: 0 0 0.55rem 0.55rem;
    color: #9b3434;
}

.nav-bar .nav-bar__account.is-menu-open .nav-bar__account-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (min-width: 1101px) and (max-width: 1440px) {
    .nav-bar--has-burger .nav-bar__account {
        position: relative !important;
        display: flex !important;
        width: auto !important;
    }

    .nav-bar--has-burger .nav-bar__account-menu {
        position: absolute !important;
        top: calc(100% + 0.45rem) !important;
        right: 0 !important;
        width: 15.5rem !important;
        min-width: 15.5rem !important;
        padding: 0.5rem !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(0.4rem) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid #d8e1ec !important;
        box-shadow: 0 22px 52px rgba(7, 24, 47, 0.17) !important;
    }

    .nav-bar--has-burger .nav-bar__account:hover .nav-bar__account-menu,
    .nav-bar--has-burger .nav-bar__account:focus-within .nav-bar__account-menu,
    .nav-bar--has-burger .nav-bar__account.is-menu-open .nav-bar__account-menu {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
}

.nav-bar .nav-bar__link-icon {
    opacity: 0.72;
    transform: scale(0.86);
}

.nav-bar .nav-bar__action {
    min-height: 2.8rem;
    padding: 0.7rem 1.05rem;
    border-radius: 0.58rem;
    box-shadow: none;
    font-size: 0.88rem;
    transition: transform 220ms var(--brand-ease), box-shadow 220ms ease;
}

.nav-bar .nav-bar__action--primary {
    border-color: var(--brand-navy-800);
    background: var(--brand-navy-800);
    color: white;
}

.nav-bar .nav-bar__action--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(11, 35, 71, 0.2);
}

/* Cinematic hero */

.hero.hero {
    min-height: var(--hero-min-height, min(88svh, 58rem));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--brand-navy-950);
}

.hero .hero__slide::before {
    transform: scale(1.025) translate3d(var(--hero-parallax-x, 0), var(--hero-parallax-y, 0), 0);
    transition: transform 1.2s var(--brand-ease);
}

.hero .hero__slide::after {
    opacity: 1;
    background:
        linear-gradient(90deg, rgba(4, 15, 32, 0.68) 0%, rgba(4, 15, 32, 0.22) 48%, rgba(4, 15, 32, 0.02) 78%),
        linear-gradient(180deg, rgba(3, 12, 27, 0.1) 58%, rgba(3, 12, 27, 0.72) 100%),
        radial-gradient(circle at 18% 42%, rgba(244, 197, 21, 0.11), transparent 25rem);
    mix-blend-mode: normal;
}

.hero .hero__slide.is-active::before {
    animation: heroImageIn 1.8s var(--brand-ease) both;
}

.hero .hero__slot--copy-group {
    width: min(42rem, calc(100% - (var(--hero-edge) * 2)));
}

.hero .hero__copy-group {
    gap: 1.35rem;
    overflow: visible;
}

.hero .hero__eyebrow {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brand-yellow);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.hero .hero__eyebrow::before {
    content: "";
    width: 2.8rem;
    height: 2px;
    background: var(--brand-yellow);
}

.hero .hero__heading {
    max-width: 11ch;
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: clamp(3.2rem, min(6.1vw, 9vh), 6.7rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-shadow: 0 12px 46px rgba(0, 0, 0, 0.28);
}

.hero .hero__body {
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.83);
    font-size: clamp(1.05rem, 1.35vw, 1.26rem);
    line-height: 1.72;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.15rem;
}

.hero-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.5rem;
    background: rgba(5, 18, 37, 0.42);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.hero-assurances span::before {
    content: "✓";
    color: var(--brand-yellow);
    font-weight: 800;
}

.hero .hero__actions {
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.hero .hero__button {
    min-width: 11.5rem;
    padding: 0.92rem 1.35rem;
    border-radius: 0.6rem;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    box-shadow: none;
}

.hero .hero__button--primary {
    position: relative;
    overflow: hidden;
    background: var(--brand-yellow);
    color: var(--brand-navy-950);
    box-shadow: 0 14px 34px rgba(244, 197, 21, 0.2);
}

.hero .hero__button--primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.42) 48%, transparent 76%);
    transform: translateX(-140%);
    transition: transform 700ms var(--brand-ease);
}

.hero .hero__button--primary:hover::after {
    transform: translateX(140%);
}

.hero .hero__button--secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(14px);
}

.hero .hero__scroll-indicator {
    bottom: 1.7rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Editorial content system */

[id] {
    scroll-margin-top: 8.75rem;
}

body .article {
    width: min(calc(100% - 2rem), var(--brand-content));
    margin: clamp(4.5rem, 8vw, 8rem) auto;
    padding: clamp(2rem, 4.8vw, 4.8rem);
    border: 1px solid rgba(220, 228, 239, 0.82);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--brand-shadow-sm);
    overflow: clip;
}

body .article::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 5rem;
    height: 3px;
    background: var(--brand-yellow);
}

body .article__grid {
    gap: clamp(2rem, 5vw, 5rem);
}

body .article__content {
    gap: clamp(1rem, 2vw, 1.6rem);
}

body .article__header {
    gap: 0.7rem;
}

body .article__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #9a7800;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.19em;
}

body .article__meta::before {
    content: "";
    width: 1.7rem;
    height: 1px;
    background: currentColor;
}

body .article__title {
    max-width: 18ch;
    color: var(--brand-navy-900);
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.2rem, 4.3vw, 4.6rem);
    font-weight: 650;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

body .article__subtitle {
    max-width: 42rem;
    color: #354763;
    font-size: clamp(1.1rem, 1.65vw, 1.45rem);
    font-weight: 500;
    line-height: 1.45;
}

body .article__lead {
    max-width: 46rem;
    color: var(--brand-muted);
    font-size: clamp(1rem, 1.3vw, 1.17rem);
    line-height: 1.75;
}

body .article__body {
    max-width: none;
    color: #33445e;
    font-size: 1rem;
    line-height: 1.75;
}

body .article .button-group {
    margin-top: 0.55rem;
}

body .article .button {
    min-height: 3.1rem;
    padding: 0.82rem 1.25rem;
    border: 1px solid var(--brand-navy-800);
    border-radius: 0.58rem;
    background: var(--brand-navy-800);
    color: white;
    box-shadow: none;
    font-size: 0.88rem;
    font-weight: 650;
    transition: transform 240ms var(--brand-ease), box-shadow 240ms ease, background-color 240ms ease;
}

body .article .button::after {
    content: "→";
    margin-left: 0.65rem;
    transition: transform 240ms var(--brand-ease);
}

body .article .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(7, 24, 47, 0.16);
}

body .article .button:hover::after {
    transform: translateX(0.22rem);
}

body .article .button--secondary {
    border-color: var(--brand-line);
    background: white;
    color: var(--brand-navy-800);
}

body .article__media {
    border: 1px solid rgba(220, 228, 239, 0.9);
    border-radius: 0.9rem;
    background: #e9eef5;
    box-shadow: 0 24px 54px rgba(7, 24, 47, 0.14);
}

body .article__media img {
    min-height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--brand-ease), filter 500ms ease;
}

body .article:hover .article__media img {
    transform: scale(1.025);
}

/* Enterprise request preview */

body #direktanfrage {
    z-index: 3;
    margin-top: clamp(-4.5rem, -5vw, -3rem);
    border-color: rgba(207, 217, 230, 0.88);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--brand-shadow-lg);
}

body #direktanfrage::before {
    width: 100%;
    background: linear-gradient(90deg, var(--brand-yellow) 0 18%, var(--brand-navy-800) 18% 100%);
}

body #direktanfrage .article__title {
    max-width: 22ch;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.request-preview {
    display: grid;
    grid-template-columns: 1fr auto 1fr 0.82fr 0.82fr;
    gap: 0.7rem;
    align-items: stretch;
    margin-top: 0.8rem;
}

.request-preview__step {
    position: relative;
    display: grid;
    align-content: center;
    min-height: 6.2rem;
    padding: 1rem 1rem 1rem 3.3rem;
    border: 1px solid var(--brand-line);
    border-radius: 0.72rem;
    background: #fbfcfe;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--brand-ease);
}

.request-preview__step:hover {
    border-color: #aebed2;
    box-shadow: var(--brand-shadow-sm);
    transform: translateY(-2px);
}

.request-preview__step > span {
    position: absolute;
    top: 1.05rem;
    left: 1rem;
    display: grid;
    place-items: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: var(--brand-blue-100);
    color: var(--brand-navy-700);
    font-size: 0.65rem;
    font-weight: 800;
}

.request-preview__step small {
    color: #77849a;
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.request-preview__step strong {
    color: var(--brand-navy-900);
    font-size: 0.86rem;
    font-weight: 600;
}

.request-preview__route {
    display: grid;
    place-items: center;
    color: #8492a8;
    font-size: 1.25rem;
}

.request-preview__note {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1rem;
    color: #65738a;
    font-size: 0.74rem;
}

.request-preview__note span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.request-preview__note span::before {
    content: "✓";
    color: var(--brand-success);
    font-weight: 800;
}

/* Service and value cards */

.service-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

body .service-grid article,
body .values-grid article {
    position: relative;
    min-height: 15rem;
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--brand-line);
    border-radius: 0.85rem;
    background: linear-gradient(145deg, #fff 0%, #f9fbfd 100%);
    box-shadow: none;
    transition: transform 350ms var(--brand-ease), border-color 250ms ease, box-shadow 350ms ease;
}

body .service-grid article::after,
body .values-grid article::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -3rem;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: rgba(18, 54, 102, 0.045);
    transition: transform 500ms var(--brand-ease), background-color 300ms ease;
}

body .service-grid article:hover,
body .values-grid article:hover {
    z-index: 1;
    border-color: #b8c6d8;
    box-shadow: var(--brand-shadow-md);
    transform: translateY(-7px);
}

body .service-grid article:hover::after,
body .values-grid article:hover::after {
    background: rgba(244, 197, 21, 0.14);
    transform: scale(1.35);
}

body .service-grid article > span {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 1.35rem;
    border: 1px solid #cbd7e5;
    border-radius: 0.62rem;
    background: white;
    color: var(--brand-navy-700);
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(7, 24, 47, 0.07);
}

body .service-grid h3,
body .values-grid h3 {
    margin: 0 0 0.55rem;
    color: var(--brand-navy-900);
    font-family: "Poppins", sans-serif;
    font-size: 1.08rem;
    line-height: 1.3;
}

body .service-grid p,
body .values-grid p {
    margin: 0;
    color: var(--brand-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

body .service-grid a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.1rem;
    border: 0;
    background: none;
    color: var(--brand-navy-700);
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

body .service-grid a::after {
    content: "→";
    transition: transform 220ms ease;
}

body .service-grid a:hover::after {
    transform: translateX(0.2rem);
}

/* Services page: editorial bento instead of interchangeable cards */

body #service-overview {
    padding-inline: clamp(1.25rem, 3vw, 3rem);
    background:
        linear-gradient(rgba(255, 255, 255, 0.965), rgba(255, 255, 255, 0.965)),
        linear-gradient(90deg, rgba(7, 24, 47, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(7, 24, 47, 0.06) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
}

body #service-overview .article__body {
    width: 100%;
    max-width: none;
}

.service-grid--detailed {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    margin-top: clamp(1.5rem, 3vw, 2.75rem);
    text-align: left;
}

body .service-grid--detailed .service-tile {
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: span 4;
    min-height: 24rem;
    padding: 1.5rem;
    border: 1px solid #d8e1ec;
    border-radius: 1rem;
    background: #f7f9fc;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    transition: transform 500ms var(--brand-ease), border-color 300ms ease, box-shadow 500ms ease;
}

body .service-grid--detailed .service-tile:hover {
    border-color: rgba(7, 34, 71, 0.25);
    box-shadow: 0 24px 58px rgba(7, 24, 47, 0.15);
    transform: translateY(-9px);
}

body .service-grid--detailed .service-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--service-image, none);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.01);
    transition: transform 1s var(--brand-ease), filter 500ms ease;
}

body .service-grid--detailed .service-tile::after {
    inset: 0;
    z-index: -1;
    width: auto;
    height: auto;
    border-radius: inherit;
    background: transparent;
    transition: background 500ms ease;
}

body .service-grid--detailed .service-tile--image::before {
    opacity: 1;
}

body .service-grid--detailed .service-tile--image::after {
    background: linear-gradient(180deg, rgba(4, 18, 38, 0.2), rgba(4, 18, 38, 0.22) 35%, rgba(4, 18, 38, 0.96) 100%);
}

body .service-grid--detailed article.service-tile--image:hover::after {
    width: auto;
    height: auto;
    background: linear-gradient(180deg, rgba(4, 18, 38, 0.16), rgba(4, 18, 38, 0.26) 38%, rgba(4, 18, 38, 0.97) 100%);
    transform: none;
}

body .service-grid--detailed .service-tile--image:hover::before {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.065);
}

body .service-grid--detailed .service-tile--feature {
    grid-column: span 7;
    min-height: 31rem;
}

body .service-grid--detailed .service-tile--route {
    grid-column: span 5;
    min-height: 31rem;
    background:
        radial-gradient(circle at 85% 18%, rgba(244, 197, 21, 0.19), transparent 10rem),
        var(--brand-navy-900);
    color: white;
}

body .service-grid--detailed .service-tile--panorama {
    grid-column: span 12;
    min-height: 27rem;
}

body .service-grid--detailed .service-tile--panorama::before {
    background-position: center 58%;
}

.service-tile__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

body .service-grid--detailed .service-tile__top > span {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    border: 1px solid rgba(12, 40, 76, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-navy-900);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.service-tile__top em {
    padding: 0.42rem 0.68rem;
    border: 1px solid rgba(7, 34, 71, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-navy-700);
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.05em;
    backdrop-filter: blur(12px);
}

.service-tile--image .service-tile__top em {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(4, 18, 38, 0.45);
    color: white;
}

.service-tile__copy {
    position: relative;
    z-index: 1;
    max-width: 34rem;
}

.service-tile__copy small {
    display: block;
    margin-bottom: 0.55rem;
    color: #7b899d;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

body .service-grid--detailed .service-tile h3 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.45rem, 2.2vw, 2.35rem);
    letter-spacing: -0.035em;
}

body .service-grid--detailed .service-tile p {
    max-width: 42ch;
    font-size: 0.86rem;
}

body .service-grid--detailed .service-tile a {
    margin-top: 1rem;
}

.service-tile--image .service-tile__copy small,
body .service-grid--detailed .service-tile--image h3,
body .service-grid--detailed .service-tile--image p,
body .service-grid--detailed .service-tile--image a,
body .service-grid--detailed .service-tile--route h3,
body .service-grid--detailed .service-tile--route p,
body .service-grid--detailed .service-tile--route a {
    color: white;
}

.service-route {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    align-items: center;
    gap: 0.55rem;
    margin-block: auto;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.055);
}

.service-route i {
    width: 0.72rem;
    height: 0.72rem;
    border: 3px solid var(--brand-yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(244, 197, 21, 0.12);
}

.service-route > span {
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0 5px, transparent 5px 10px);
    background-size: 20px 1px;
    animation: service-route-flow 1.8s linear infinite;
}

.service-route b {
    color: #c5d1e1;
    font-size: 0.68rem;
    font-weight: 600;
}

.service-status {
    display: grid;
    gap: 0.45rem;
    margin-block: 1.4rem auto;
}

.service-status span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.72rem 0.8rem;
    border: 1px solid #dae3ee;
    border-radius: 0.62rem;
    background: white;
    color: #526176;
    font-size: 0.7rem;
}

.service-status i {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: #2c9b63;
    box-shadow: 0 0 0 4px rgba(44, 155, 99, 0.1);
    animation: service-status-pulse 2.4s ease-in-out infinite;
}

.service-status span:nth-child(2) i {
    animation-delay: 280ms;
}

.service-status span:nth-child(3) i {
    animation-delay: 560ms;
}

.service-city {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin-block: 1.2rem auto;
}

.service-city__map {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    margin-bottom: 0.45rem;
    padding: 0.8rem 0.9rem;
    overflow: hidden;
    border: 1px solid #d5dfeb;
    border-radius: 0.72rem;
    background:
        linear-gradient(90deg, rgba(7, 34, 71, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(7, 34, 71, 0.035) 1px, transparent 1px),
        white;
    background-size: 18px 18px;
}

.service-city__map::before {
    content: "";
    position: absolute;
    right: 1.55rem;
    left: 1.55rem;
    height: 1px;
    background: repeating-linear-gradient(90deg, #8fa1b8 0 4px, transparent 4px 8px);
}

.service-city__map i {
    position: relative;
    z-index: 1;
    width: 0.65rem;
    height: 0.65rem;
    border: 2px solid var(--brand-navy-700);
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 4px rgba(18, 54, 102, 0.08);
}

.service-city__map i:last-child {
    border-color: #b28b00;
}

.service-city__map b {
    position: relative;
    z-index: 1;
    width: max-content;
    margin: auto;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: var(--brand-navy-900);
    color: white;
    font-size: 0.64rem;
    font-weight: 650;
}

.service-city span {
    padding: 0.42rem 0.65rem;
    border: 1px solid #d6e0eb;
    border-radius: 999px;
    color: #68778d;
    font-size: 0.65rem;
}

/* Services fleet: three deliberate frames, never layered. */

body #service-fleet .article__body {
    max-width: none;
}

.fleet-showcase {
    display: grid;
    grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.45fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: stretch;
}

.fleet-showcase__facts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.fleet-showcase__promise {
    display: grid;
    gap: 0.35rem;
    padding: 1.2rem;
    border-left: 3px solid var(--brand-yellow);
    background: #f4f7fb;
}

.fleet-showcase__promise strong {
    color: var(--brand-navy-900);
    font-family: "Poppins", sans-serif;
}

.fleet-showcase__promise span {
    color: var(--brand-muted);
    font-size: 0.78rem;
}

.fleet-showcase__gallery {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: repeat(2, minmax(11rem, 1fr));
    gap: 0.72rem;
    min-height: 29rem;
}

.fleet-shot {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0.82rem;
    background: var(--brand-navy-900);
}

.fleet-shot--large {
    grid-row: 1 / 3;
}

.fleet-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--brand-ease), filter 500ms ease;
}

.fleet-shot::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(4, 18, 38, 0.85));
    pointer-events: none;
}

.fleet-shot:hover img {
    filter: saturate(1.08);
    transform: scale(1.045);
}

.fleet-shot figcaption {
    position: absolute;
    right: 1rem;
    bottom: 0.85rem;
    left: 1rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: white;
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.fleet-shot figcaption span {
    color: var(--brand-yellow);
    font-family: "Poppins", sans-serif;
}

/* About page: operational proof points instead of generic value cards. */

body #about-mission .article__body {
    width: 100%;
    max-width: none;
}

.values-grid--proof {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.9rem;
    width: 100%;
    margin-top: clamp(1.4rem, 3vw, 2.6rem);
    text-align: left;
}

body .values-grid--proof .value-card {
    isolation: isolate;
    display: flex;
    flex-direction: column;
    grid-column: span 4;
    min-height: 25rem;
    padding: 1.45rem;
    border-color: #d7e0eb;
    border-radius: 1rem;
    background: #f8fafc;
}

body .values-grid--proof .value-card::after {
    display: none;
}

body .values-grid--proof .value-card:hover {
    border-color: #afbed0;
    box-shadow: 0 22px 55px rgba(7, 24, 47, 0.13);
    transform: translateY(-7px);
}

body .values-grid--proof .value-card--contact {
    background:
        radial-gradient(circle at 100% 0, rgba(244, 197, 21, 0.16), transparent 12rem),
        var(--brand-navy-900);
}

.value-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.value-card__top > span {
    color: #8190a5;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
}

.value-card__top small {
    color: #7f8da1;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.value-contact,
.value-direct,
.value-progress {
    min-height: 7.4rem;
    margin-bottom: auto;
}

.value-contact {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.055);
}

.value-contact > i {
    position: relative;
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--brand-yellow);
}

.value-contact > i::before,
.value-contact > i::after {
    content: "";
    position: absolute;
    left: 50%;
    border: 2px solid var(--brand-navy-900);
    transform: translateX(-50%);
}

.value-contact > i::before {
    top: 0.62rem;
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 50%;
}

.value-contact > i::after {
    bottom: 0.55rem;
    width: 1.15rem;
    height: 0.65rem;
    border-bottom: 0;
    border-radius: 0.75rem 0.75rem 0 0;
}

.value-contact div {
    display: grid;
    gap: 0.18rem;
}

.value-contact b {
    color: white;
    font-size: 0.78rem;
}

.value-contact em {
    color: #9eacc0;
    font-size: 0.65rem;
    font-style: normal;
}

.value-direct {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid #d7e1ec;
    border-radius: 0.75rem;
    background: white;
}

.value-direct i {
    width: 0.72rem;
    height: 0.72rem;
    border: 2px solid var(--brand-navy-700);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(18, 54, 102, 0.07);
}

.value-direct i:last-child {
    border-color: #b28b00;
}

.value-direct span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #6f7e93;
    font-size: 0.63rem;
    font-weight: 650;
    white-space: nowrap;
}

.value-direct span::before,
.value-direct span::after {
    content: "";
    height: 1px;
    flex: 1;
    background: repeating-linear-gradient(90deg, #aab7c8 0 4px, transparent 4px 8px);
}

.value-progress {
    display: grid;
    gap: 0.5rem;
}

.value-progress span {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 2.2rem;
    padding-left: 2.2rem;
    border: 1px solid #dce4ee;
    border-radius: 0.62rem;
    background: white;
    color: #8491a4;
    font-size: 0.66rem;
}

.value-progress span::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    width: 0.55rem;
    height: 0.55rem;
    border: 2px solid #bac5d2;
    border-radius: 50%;
}

.value-progress .is-done::before {
    border-color: #2c9b63;
    background: #2c9b63;
}

.value-progress .is-active {
    border-color: #c4d2e2;
    color: var(--brand-navy-700);
    font-weight: 650;
}

.value-progress .is-active::before {
    border-color: #b28b00;
    box-shadow: 0 0 0 4px rgba(244, 197, 21, 0.14);
}

body .values-grid--proof h3 {
    margin-top: 1.35rem;
    font-size: clamp(1.25rem, 1.65vw, 1.65rem);
    letter-spacing: -0.025em;
}

body .values-grid--proof p {
    margin-top: 0.55rem;
    font-size: 0.82rem;
}

body .values-grid--proof .value-card--contact :is(.value-card__top > span, .value-card__top small, h3) {
    color: white;
}

body .values-grid--proof .value-card--contact p {
    color: #aebbcf;
}

@keyframes service-route-flow {
    to { background-position-x: 20px; }
}

@keyframes service-status-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(44, 155, 99, 0.1); }
    50% { box-shadow: 0 0 0 7px rgba(44, 155, 99, 0.035); }
}

.quality-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.quality-metrics > div {
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border: 1px solid var(--brand-line);
    border-radius: 0.7rem;
    background: #f9fbfd;
}

.quality-metrics strong {
    color: var(--brand-navy-800);
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
}

.quality-metrics span {
    color: var(--brand-muted);
    font-size: 0.72rem;
}

body .check-list {
    display: grid;
    gap: 0.72rem;
    padding: 0;
    list-style: none;
}

body .check-list li {
    position: relative;
    padding-left: 2rem;
}

body .check-list li::before {
    content: "✓";
    position: absolute;
    top: 0.16rem;
    left: 0;
    display: grid;
    place-items: center;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 0.4rem;
    background: #e5f5ef;
    color: var(--brand-success);
    font-size: 0.72rem;
    font-weight: 800;
}

/* Process section */

body #ablauf {
    border-color: rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 88% 20%, rgba(244, 197, 21, 0.1), transparent 25rem),
        var(--brand-navy-900);
    box-shadow: var(--brand-shadow-lg);
}

body #ablauf::before {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--brand-yellow), transparent 60%);
}

body #ablauf .article__title {
    max-width: 22ch;
    color: white;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 1rem;
}

.process-flow article {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.035);
}

.process-flow article:first-child {
    border-radius: 0.75rem 0 0 0.75rem;
}

.process-flow article:last-child {
    border-radius: 0 0.75rem 0.75rem 0;
}

.process-flow article > span {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: var(--brand-navy-950);
    font-size: 0.72rem;
    font-weight: 800;
}

.process-flow article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.15rem;
    right: -0.45rem;
    z-index: 2;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    background: var(--brand-navy-900);
    transform: rotate(45deg);
}

.process-flow h3 {
    margin: 0 0 0.35rem;
    color: white;
    font-size: 0.92rem;
}

.process-flow p {
    margin: 0;
    color: #9fb0c8;
    font-size: 0.78rem;
    line-height: 1.55;
}

/* Forms and application surfaces */

.contact-form.contact-form {
    width: min(calc(100% - 2rem), var(--brand-content));
    margin: clamp(4.5rem, 8vw, 8rem) auto;
    padding: clamp(2rem, 4.5vw, 4.5rem);
    gap: clamp(2rem, 5vw, 5rem);
    border: 1px solid var(--brand-line);
    border-top: 4px solid var(--brand-yellow);
    border-radius: 1.15rem;
    background: white;
    box-shadow: var(--brand-shadow-md);
}

.contact-form .contact-form__title {
    color: var(--brand-navy-900);
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.contact-form .contact-form__intro {
    color: var(--brand-navy-700);
    font-weight: 600;
}

.contact-form .contact-form__description {
    max-width: 32rem;
    line-height: 1.72;
}

.contact-form .contact-form__details {
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--brand-line);
    border-radius: 0.75rem;
}

.contact-form .contact-form__detail {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--brand-line-soft);
    background: #fafcff;
}

.contact-form .contact-form__detail:last-child {
    border-bottom: 0;
}

.contact-form .contact-form__detail-label {
    color: #7c899d;
    font-size: 0.64rem;
    font-weight: 700;
}

.contact-form .contact-form__detail-value[href^="tel:"] {
    color: var(--brand-navy-800);
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-form :is(input, textarea, select),
.booking-request :is(input, textarea, select),
.customer-account :is(input, textarea, select),
.login-form :is(input, textarea, select),
.form-shell :is(input, textarea, select) {
    border: 1px solid #cfd9e6;
    border-radius: 0.55rem;
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form :is(input, textarea, select):focus,
.booking-request :is(input, textarea, select):focus,
.customer-account :is(input, textarea, select):focus,
.login-form :is(input, textarea, select):focus,
.form-shell :is(input, textarea, select):focus {
    border-color: var(--brand-navy-700);
    box-shadow: 0 0 0 4px rgba(18, 54, 102, 0.1);
    outline: 0;
}

.contact-form button,
.form-shell button,
.booking-request button,
.customer-account button,
.login-form button {
    border-radius: 0.58rem;
    transition: transform 220ms var(--brand-ease), box-shadow 220ms ease, background-color 220ms ease;
}

.contact-form button:hover,
.form-shell button:hover,
.booking-request button:hover,
.customer-account button:hover,
.login-form button:hover {
    transform: translateY(-2px);
}

.booking-request.booking-request,
.customer-account.customer-account {
    width: min(calc(100% - 2rem), var(--brand-content));
    max-width: var(--brand-content);
    margin: clamp(2rem, 4vw, 4.5rem) auto clamp(5rem, 8vw, 8rem);
    padding: 0;
    color: var(--brand-text);
}

.booking-request .booking-request__shell,
.customer-account .customer-account__shell {
    padding: clamp(1.2rem, 2.8vw, 2.5rem);
    border: 1px solid var(--brand-line);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--brand-shadow-md);
}

.booking-request .booking-request__header,
.customer-account .customer-account__header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--brand-line-soft);
}

.booking-request .booking-request__header::before {
    content: attr(data-booking-eyebrow);
    display: block;
    margin-bottom: 0.55rem;
    color: #9a7800;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.booking-request .booking-request__title,
.customer-account .customer-account__title {
    color: var(--brand-navy-900);
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.035em;
}

.booking-request .booking-request__card,
.booking-request .booking-request__summary-card,
.customer-account .customer-account__card,
.customer-account .customer-account__stat {
    border: 1px solid var(--brand-line);
    border-radius: 0.82rem;
    background: #fff;
    box-shadow: none;
    transition: border-color 240ms ease, box-shadow 300ms ease, transform 300ms var(--brand-ease);
}

.booking-request .booking-request__card:hover,
.customer-account .customer-account__card:hover,
.customer-account .customer-account__stat:hover {
    border-color: #bac8d9;
    box-shadow: var(--brand-shadow-sm);
}

.booking-request .booking-request__summary {
    position: sticky;
    top: 7.5rem;
}

.booking-request .booking-request__summary-card {
    border-top: 4px solid var(--brand-yellow);
}

.booking-request .booking-request__choices label,
.booking-request .booking-request__toggle {
    border: 1px solid var(--brand-line);
    border-radius: 0.58rem;
    background: #fafcff;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.booking-request .booking-request__choices label:hover,
.booking-request .booking-request__toggle:hover {
    border-color: #aebed2;
    background: #f3f7fc;
    transform: translateY(-1px);
}

.booking-request .booking-request__primary,
.customer-account .customer-account__primary {
    border-color: var(--brand-navy-800);
    background: var(--brand-navy-800);
    color: white;
}

.booking-request .booking-request__secondary {
    border-color: #cbd6e4;
    background: white;
    color: var(--brand-navy-800);
}

/* Signed-in booking workspace */

.booking-request.booking-request {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.booking-request.booking-request::before {
    display: none;
}

.booking-request .booking-request__shell {
    position: relative;
    gap: 1.15rem;
    padding: clamp(1rem, 2.2vw, 2rem);
    overflow: hidden;
    border-color: #d8e1ec;
    border-radius: 1.25rem;
    background:
        linear-gradient(90deg, rgba(7, 34, 71, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(7, 34, 71, 0.025) 1px, transparent 1px),
        #f8fafc;
    background-size: 32px 32px;
    box-shadow: 0 26px 70px rgba(7, 24, 47, 0.12);
}

.booking-request .booking-request__header {
    position: relative;
    gap: 0.6rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    overflow: hidden;
    border: 0;
    border-radius: 1rem;
    background:
        radial-gradient(circle at 90% 12%, rgba(244, 197, 21, 0.18), transparent 16rem),
        var(--brand-navy-900);
}

.booking-request .booking-request__header::after {
    content: "SICHER · DIREKT · PERSÖNLICH";
    position: absolute;
    right: clamp(1.5rem, 4vw, 4rem);
    bottom: 1.3rem;
    color: rgba(255, 255, 255, 0.24);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.booking-request .booking-request__header::before {
    margin: 0 0 0.15rem;
    color: var(--brand-yellow);
}

.booking-request .booking-request__title {
    max-width: 18ch;
    color: white;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.booking-request .booking-request__header :is(.booking-request__intro, .booking-request__description) {
    max-width: 40rem;
    color: #b8c5d6;
    font-size: 0.86rem;
    line-height: 1.55;
}

.booking-request .booking-request__header .booking-request__description {
    color: #8394aa;
}

.booking-request__progress {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
    padding: 0.85rem;
    border: 1px solid #dbe3ed;
    border-radius: 0.82rem;
    background: rgba(255, 255, 255, 0.9);
}

.booking-request__progress span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.62rem;
    min-width: 0;
    padding: 0.58rem 0.7rem;
    border-radius: 0.58rem;
    color: #718096;
}

.booking-request__progress span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.36rem;
    width: 0.3rem;
    height: 0.3rem;
    border-top: 1px solid #9eabbc;
    border-right: 1px solid #9eabbc;
    transform: rotate(45deg);
}

.booking-request__progress b {
    display: grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    flex: 0 0 auto;
    border: 1px solid #d1dbe7;
    border-radius: 50%;
    background: white;
    color: var(--brand-navy-700);
    font-size: 0.58rem;
}

.booking-request__progress em {
    overflow: hidden;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-request__progress .is-active {
    background: #edf3fa;
    color: var(--brand-navy-900);
}

.booking-request__progress .is-active b {
    border-color: var(--brand-yellow);
    background: var(--brand-yellow);
}

.booking-request .booking-request__status {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: fit-content;
    padding: 0.65rem 0.9rem 0.65rem 0.68rem;
    border-color: #d8e1ec;
    border-radius: 999px;
    background: white;
}

.booking-request .booking-request__status::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #e2f5ec;
    color: #208054;
    font-size: 0.72rem;
    font-weight: 800;
}

.booking-request .booking-request__status-copy {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}

.booking-request .booking-request__status-label {
    display: none;
}

.booking-request .booking-request__status-name {
    color: var(--brand-navy-900);
    font-size: 0.75rem;
}

.booking-request .booking-request__status-email {
    font-size: 0.66rem;
}

.booking-request .booking-request__logout {
    display: none;
}

.booking-request .booking-request__layout {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.38fr);
    gap: 1rem;
}

.booking-request .booking-request__form {
    gap: 0.8rem;
}

.booking-request .booking-request__card {
    position: relative;
    gap: 1.1rem;
    padding: clamp(1.2rem, 2vw, 1.7rem) clamp(1.1rem, 2vw, 1.7rem) clamp(1.2rem, 2vw, 1.7rem) clamp(4rem, 6vw, 5.4rem);
    overflow: hidden;
    border-color: #d7e0eb;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
}

.booking-request .booking-request__card::before {
    content: attr(data-booking-step);
    position: absolute;
    top: 1.35rem;
    left: 1.25rem;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #cad5e3;
    border-radius: 50%;
    background: #f5f8fb;
    color: var(--brand-navy-700);
    font-family: "Poppins", sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
}

.booking-request .booking-request__card:hover {
    border-color: #aebfd2;
    box-shadow: 0 16px 38px rgba(7, 24, 47, 0.09);
    transform: none;
}

.booking-request .booking-request__card-head {
    gap: 0.3rem;
}

.booking-request .booking-request__card-head h3 {
    color: var(--brand-navy-900);
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.booking-request .booking-request__card-head p {
    color: #758399;
    font-size: 0.72rem;
    line-height: 1.5;
}

.booking-request .booking-request__field,
.booking-request .booking-request__toggle,
.booking-request .booking-request__choices label {
    color: #31445f;
    font-size: 0.7rem;
    font-weight: 650;
}

.booking-request .booking-request__field input,
.booking-request .booking-request__field textarea {
    min-height: 3.15rem;
    padding: 0.78rem 0.9rem;
    border-color: #d3deea;
    border-radius: 0.65rem;
    background: #f8fafc;
    color: var(--brand-navy-900);
    font-size: 0.8rem;
}

.booking-request .booking-request__field textarea {
    min-height: 7rem;
}

.booking-request .booking-request__choices {
    gap: 0.5rem;
}

.booking-request .booking-request__choices label,
.booking-request .booking-request__toggle {
    position: relative;
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 3.15rem;
    padding: 0.72rem 0.85rem;
    border-color: #d6e0ec;
    border-radius: 0.65rem;
    background: #f8fafc;
}

.booking-request .booking-request__choices label:has(input:checked),
.booking-request .booking-request__toggle:has(input:checked) {
    border-color: #9dafc4;
    background: #eef4fa;
    box-shadow: 0 0 0 2px rgba(18, 54, 102, 0.06);
}

.booking-request .booking-request__choices input,
.booking-request .booking-request__toggle input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--brand-navy-700);
}

.booking-request .booking-request__place[data-place-role="origin"]::before,
.booking-request .booking-request__place[data-place-role="destination"]::before {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 1.12rem;
    left: 1rem;
    width: 0.52rem;
    height: 0.52rem;
    border: 2px solid var(--brand-navy-700);
    border-radius: 50%;
    pointer-events: none;
}

.booking-request .booking-request__place[data-place-role="destination"]::before {
    border-color: #b28b00;
}

.booking-request .booking-request__place[data-place-role="origin"] input[type="text"],
.booking-request .booking-request__place[data-place-role="destination"] input[type="text"] {
    padding-left: 2.5rem;
}

.booking-request .booking-request__stops-head {
    padding-top: 0.2rem;
    border-top: 1px solid #e5ebf2;
}

.booking-request .booking-request__stops-head h4 {
    color: var(--brand-navy-900);
    font-size: 0.82rem;
}

.booking-request .booking-request__summary {
    top: 8.5rem;
}

.booking-request .booking-request__summary-card {
    position: relative;
    gap: 1rem;
    min-height: 22rem;
    padding: 1.35rem;
    overflow: hidden;
    border: 0;
    border-radius: 0.95rem;
    background:
        radial-gradient(circle at 90% 8%, rgba(244, 197, 21, 0.18), transparent 11rem),
        var(--brand-navy-900);
    color: white;
    box-shadow: 0 18px 44px rgba(7, 24, 47, 0.2);
}

.booking-request .booking-request__summary-card::after {
    content: "";
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    width: 9rem;
    height: 9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 2.5rem rgba(255, 255, 255, 0.025), 0 0 0 5rem rgba(255, 255, 255, 0.018);
}

.booking-request .booking-request__summary-head,
.booking-request .booking-request__summary-body,
.booking-request .booking-request__summary-empty {
    position: relative;
    z-index: 1;
}

.booking-request .booking-request__summary-head h3 {
    color: white;
    font-family: "Poppins", sans-serif;
}

.booking-request .booking-request__summary-head p {
    color: #9eacc0;
    font-size: 0.7rem;
    line-height: 1.5;
}

.booking-request .booking-request__summary-empty,
.booking-request .booking-request__totals div,
.booking-request .booking-request__leg {
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.055);
    color: #becadc;
}

.booking-request .booking-request__totals dt,
.booking-request .booking-request__leg-meta {
    color: #8fa0b7;
}

.booking-request .booking-request__totals dd,
.booking-request .booking-request__leg-route {
    color: white;
}

.booking-request .booking-request__actions {
    position: sticky;
    bottom: 0.75rem;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    padding: 0.7rem;
    border: 1px solid #d9e2ed;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(7, 24, 47, 0.1);
    backdrop-filter: blur(14px);
}

.booking-request .booking-request__primary,
.booking-request .booking-request__secondary {
    min-height: 2.85rem;
    padding: 0.72rem 1rem;
    border-radius: 0.58rem;
    font-size: 0.72rem;
}

.booking-request .booking-request__primary {
    background: var(--brand-yellow);
    color: var(--brand-navy-950);
}

.customer-account .customer-account__hero {
    overflow: hidden;
    border-radius: 0.9rem;
    background:
        radial-gradient(circle at 85% 20%, rgba(244, 197, 21, 0.16), transparent 18rem),
        var(--brand-navy-900);
}

/* Interior page hero cards */

body :is(#services-intro, #about-story, #booking-intro, #account-intro, #administration-intro, #legal-intro) {
    margin-top: clamp(2rem, 4vw, 4rem);
}

body :is(#services-intro, #about-story) {
    border-color: rgba(255, 255, 255, 0.08);
    background: var(--brand-navy-900);
}

body :is(#services-intro, #about-story)::before {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--brand-yellow), transparent 55%);
}

body :is(#services-intro, #about-story) :is(.article__title, .article__subtitle) {
    color: white;
}

body :is(#services-intro, #about-story) :is(.article__lead, .article__body) {
    color: #b7c4d7;
}

/* Footer */

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: clamp(5rem, 8vw, 8rem);
    background:
        radial-gradient(circle at 84% 12%, rgba(244, 197, 21, 0.1), transparent 24rem),
        var(--brand-navy-950);
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__accent {
    height: 4px;
    background: linear-gradient(90deg, var(--brand-yellow) 0 22%, #1e477d 22% 62%, transparent 62%);
}

.site-footer__inner,
.site-footer__bottom {
    width: min(calc(100% - 2rem), var(--brand-content));
    margin-inline: auto;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(11rem, 0.7fr));
    gap: clamp(2.5rem, 6vw, 7rem);
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.site-footer__brand p {
    margin: 1.4rem 0 0;
    color: #9cabc0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer__logo {
    display: inline-flex;
    width: min(18rem, 100%);
    padding: 0.75rem 1rem;
    border-radius: 0.7rem;
    background: white;
    transition: transform 300ms var(--brand-ease), box-shadow 300ms ease;
}

.site-footer__logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.site-footer__logo img {
    width: 100%;
    height: 3.2rem;
    object-fit: contain;
}

.site-footer__nav,
.site-footer__contact {
    display: grid;
    align-content: start;
    gap: 0.72rem;
}

.site-footer__label {
    margin-bottom: 0.35rem;
    color: var(--brand-yellow);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__nav a:hover {
    color: white;
    transform: translateX(0.2rem);
}

.site-footer .site-footer__phone {
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 650;
}

.site-footer__contact > span:not(.site-footer__label) {
    color: #8f9eb4;
    font-size: 0.84rem;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #75859d;
    font-size: 0.73rem;
}

.site-footer__bottom > div {
    display: flex;
    gap: 1.2rem;
}

/* Motion system */

@keyframes heroImageIn {
    from { transform: scale(1.09); filter: saturate(0.72) brightness(0.76); }
    to { transform: scale(1.025); filter: saturate(1) brightness(1); }
}

@keyframes heroCopyIn {
    from { opacity: 0; transform: translateY(2rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes softPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244, 197, 21, 0); }
    50% { box-shadow: 0 0 0 9px rgba(244, 197, 21, 0.08); }
}

.hero .hero__slide.is-active .hero__eyebrow,
.hero .hero__slide.is-active .hero__heading,
.hero .hero__slide.is-active .hero__body,
.hero .hero__slide.is-active .hero__actions {
    animation: heroCopyIn 900ms var(--brand-ease) both;
}

.hero .hero__slide.is-active .hero__heading { animation-delay: 100ms; }
.hero .hero__slide.is-active .hero__body { animation-delay: 200ms; }
.hero .hero__slide.is-active .hero__actions { animation-delay: 300ms; }

.motion-ready .reveal-item {
    opacity: 0;
    transform: translateY(2.25rem);
    transition: opacity 800ms var(--brand-ease), transform 800ms var(--brand-ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready .reveal-stagger > * {
    opacity: 0;
    transform: translateY(1.2rem);
    transition: opacity 620ms var(--brand-ease), transform 620ms var(--brand-ease);
    transition-delay: calc(var(--item-index, 0) * 70ms);
}

.motion-ready .reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive refinement */

@media (max-width: 1180px) {
    .nav-bar .nav-bar__brand-logo {
        inline-size: 10.5rem;
    }

    .nav-bar .nav-bar__link {
        padding-inline: 0.58rem;
        font-size: 0.82rem;
    }

    .request-preview {
        grid-template-columns: 1fr auto 1fr;
    }

    .request-preview__step:nth-of-type(3),
    .request-preview__step:nth-of-type(4) {
        grid-column: span 1;
    }

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

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

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

    body .values-grid--proof .value-card {
        grid-column: span 1;
    }

    body .values-grid--proof .value-card:last-child {
        grid-column: span 2;
    }

    body .service-grid--detailed .service-tile {
        grid-column: span 1;
    }

    body .service-grid--detailed .service-tile--feature,
    body .service-grid--detailed .service-tile--panorama {
        grid-column: span 2;
    }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }

    .process-flow article,
    .process-flow article:first-child,
    .process-flow article:last-child {
        border-radius: 0.7rem;
    }

    .process-flow article::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .nav-bar .nav-bar__inner {
        min-height: 4.6rem;
    }

    .nav-bar .nav-bar__brand-logo {
        inline-size: 9.5rem;
        block-size: 3rem;
    }

    .nav-bar .nav-bar__toggle {
        border: 1px solid var(--brand-line);
        border-radius: 0.55rem;
        background: #f7f9fc;
    }

    .hero .hero__slide::before {
        background-position: 66% center;
    }

    .hero .hero__slide::after {
        background: linear-gradient(90deg, rgba(4, 15, 32, 0.9), rgba(4, 15, 32, 0.42));
    }

    body .article {
        margin-block: 4rem;
        padding: clamp(1.5rem, 5vw, 2.5rem);
    }

    body #direktanfrage {
        margin-top: -2rem;
    }

    .booking-request .booking-request__layout {
        grid-template-columns: 1fr;
    }

    .booking-request .booking-request__summary {
        position: static;
    }

    .booking-request .booking-request__summary-card {
        min-height: 17rem;
    }

    .booking-request .booking-request__header::after {
        display: none;
    }

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

    .quality-metrics {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        grid-template-columns: 1.4fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .nav-bar .nav-bar__strip {
        display: none;
    }

    .nav-bar .nav-bar__inner {
        padding-inline: 1rem;
    }

    .hero.hero {
        min-height: 47rem;
    }

    .hero .hero__slide::before {
        background-position: 68% center;
    }

    .hero .hero__slide::after {
        background:
            linear-gradient(0deg, rgba(3, 12, 27, 0.95) 0%, rgba(3, 12, 27, 0.48) 72%),
            linear-gradient(90deg, rgba(3, 12, 27, 0.58), transparent);
    }

    .hero .hero__slot--copy-group {
        top: auto;
        bottom: 5.6rem;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        transform: none;
    }

    .hero .hero__heading {
        max-width: 10ch;
        font-size: clamp(2.75rem, 13vw, 4.3rem);
    }

    .hero .hero__body {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .hero-assurances {
        display: none;
    }

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

    .hero .hero__button {
        width: 100%;
    }

    .booking-request .booking-request__shell {
        padding: 0.5rem;
        border-radius: 0.9rem;
    }

    .booking-request .booking-request__header {
        padding: 1.4rem 1.2rem;
    }

    .booking-request__progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0.55rem;
    }

    .booking-request__progress span:nth-child(2)::after {
        display: none;
    }

    .booking-request .booking-request__status {
        width: 100%;
        border-radius: 0.7rem;
    }

    .booking-request .booking-request__status-email {
        display: none;
    }

    .booking-request .booking-request__card {
        padding: 4rem 1rem 1rem;
    }

    .booking-request .booking-request__card::before {
        top: 1rem;
        left: 1rem;
    }

    .booking-request .booking-request__fields--two,
    .booking-request .booking-request__choices,
    .booking-request .booking-request__stops-head {
        grid-template-columns: 1fr;
    }

    .booking-request .booking-request__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .booking-request .booking-request__actions button {
        width: 100%;
    }

    body .article,
    .contact-form.contact-form,
    .booking-request.booking-request,
    .customer-account.customer-account {
        width: min(calc(100% - 1rem), var(--brand-content));
    }

    body .article__title,
    .contact-form .contact-form__title {
        font-size: clamp(1.8rem, 9vw, 2.65rem);
    }

    .request-preview {
        grid-template-columns: 1fr;
    }

    .request-preview__route {
        height: 1rem;
        transform: rotate(90deg);
    }

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

    body .service-grid--detailed .service-tile,
    body .service-grid--detailed .service-tile--feature,
    body .service-grid--detailed .service-tile--panorama {
        grid-column: span 1;
        min-height: 24rem;
    }

    body .values-grid--proof .value-card,
    body .values-grid--proof .value-card:last-child {
        grid-column: span 1;
        min-height: 22rem;
    }

    .value-direct span {
        white-space: normal;
        text-align: center;
    }

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

    .service-route b {
        display: none;
    }

    .fleet-showcase__gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 14rem);
        min-height: 0;
    }

    .fleet-shot--large {
        grid-row: auto;
    }

    body .service-grid article,
    body .values-grid article {
        min-height: auto;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__bottom > div {
        flex-wrap: wrap;
    }
}

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

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

    .motion-ready .reveal-item,
    .motion-ready .reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
}
