@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-500-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-600-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-700-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --red: #bd1220;
    --red-bright: #df1c25;
    --red-dark: #8d0d17;
    --red-soft: #faebed;
    --ink: #17181c;
    --ink-soft: #2a2d33;
    --muted: #656a73;
    --line: #e7e5e5;
    --surface: #ffffff;
    --surface-alt: #f7f7f6;
    --success: #17653a;
    --shadow-sm: 0 12px 35px rgba(20, 21, 25, 0.08);
    --shadow-lg: 0 28px 70px rgba(20, 21, 25, 0.14);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1200px;
    --font-body: "Inter", "Segoe UI", Arial, sans-serif;
    --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.13;
    letter-spacing: -0.035em;
    overflow-wrap: break-word;
    hyphens: auto;
}

h1 {
    font-size: clamp(2.7rem, 5.5vw, 5.25rem);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
}

h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

p:last-child {
    margin-bottom: 0;
}

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

:focus-visible {
    outline: 3px solid rgba(223, 28, 37, 0.45);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.section--compact {
    padding: 80px 0;
}

.section--tint {
    background: linear-gradient(135deg, #fff8f8 0%, var(--red-soft) 100%);
}

.section--dark {
    color: rgba(255, 255, 255, 0.72);
    background: var(--ink);
}

.icon {
    width: 1.35em;
    height: 1.35em;
    flex: 0 0 auto;
    vertical-align: -0.24em;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 12px 18px;
    color: #fff;
    background: var(--ink);
    border-radius: 6px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow--hero,
.eyebrow--light {
    color: #fff;
}

.eyebrow--hero::before,
.eyebrow--light::before {
    background: var(--red-bright);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.2;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button .icon,
.text-link .icon,
.card-link .icon {
    transition: transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:hover .icon,
.text-link:hover .icon,
.card-link:hover .icon {
    transform: translateX(4px);
}

.button--primary,
.button--header {
    color: #fff;
    background: linear-gradient(135deg, var(--red-bright), var(--red));
    box-shadow: 0 12px 28px rgba(189, 18, 32, 0.23);
}

.button--primary:hover,
.button--header:hover {
    background: linear-gradient(135deg, #ec2732, #a80f1a);
    box-shadow: 0 16px 34px rgba(189, 18, 32, 0.3);
}

.button--large {
    min-height: 58px;
    padding: 16px 26px;
}

.button--glass {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(12px);
}

.button--glass:hover {
    background: rgba(255, 255, 255, 0.18);
}

.button--dark {
    color: #fff;
    background: var(--ink);
}

.button--dark:hover {
    background: var(--red);
}

.button--light {
    color: var(--ink);
    background: #fff;
}

.button--light:hover {
    color: var(--red);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-weight: 750;
}

.text-link--light {
    color: #fff;
}

.lead {
    color: var(--ink-soft);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Header */
.utility-bar {
    color: rgba(255, 255, 255, 0.82);
    background: var(--ink);
    font-size: 0.76rem;
    font-weight: 650;
}

.utility-bar__inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
}

.utility-bar span,
.utility-bar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.utility-bar .icon {
    color: #ff616a;
    font-size: 0.95rem;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(22, 23, 27, 0.08);
    transition: box-shadow 0.25s ease, background 0.25s ease;
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 35px rgba(20, 21, 25, 0.09);
}

.header-inner {
    display: grid;
    min-height: 88px;
    align-items: center;
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
    gap: 24px;
}

.brand {
    display: inline-flex;
    width: fit-content;
    align-items: center;
}

.brand img {
    width: 151px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 5px;
}

.nav-link {
    position: relative;
    display: flex;
    min-height: 88px;
    align-items: center;
    padding: 0 15px;
    color: var(--ink-soft);
    font-size: 0.91rem;
    font-weight: 680;
    white-space: nowrap;
}

.nav-link::after {
    position: absolute;
    right: 15px;
    bottom: 19px;
    left: 15px;
    height: 2px;
    content: "";
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--red);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.button--header {
    justify-self: end;
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: min(760px, calc(100svh - 124px));
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.hero__media,
.page-hero__media {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
}

.hero__media {
    background-image: url("../images/page-hero.jpeg");
    background-position: center 38%;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(14, 15, 18, 0.92) 0%, rgba(14, 15, 18, 0.75) 43%, rgba(14, 15, 18, 0.18) 78%),
        linear-gradient(0deg, rgba(14, 15, 18, 0.42), transparent 45%);
}

.hero__content {
    padding: 90px 0 96px;
}

.hero h1 {
    max-width: 830px;
    margin-bottom: 24px;
    color: #fff;
    text-wrap: balance;
}

.hero__content > p {
    max-width: 680px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.08rem, 1.6vw, 1.27rem);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 42px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 650;
}

.hero__assurance span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__assurance .icon {
    color: #ff737a;
}

.trust-strip {
    position: relative;
    z-index: 4;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-strip article {
    display: flex;
    min-height: 122px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 25px;
    border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
    border-right: 0;
}

.trust-strip__icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 50%;
    place-items: center;
}

.trust-strip__icon .icon {
    font-size: 1.05rem;
}

.trust-strip strong,
.trust-strip article > div > span {
    display: block;
}

.trust-strip strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
}

.trust-strip article > div > span {
    color: var(--muted);
    font-size: 0.78rem;
}

/* Shared section layouts */
.section-heading {
    margin-bottom: 54px;
}

.section-heading--split {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 70px;
}

.section-heading--split h2 {
    max-width: 680px;
    margin-bottom: 0;
}

.section-heading--split > div:last-child p {
    margin-bottom: 18px;
    color: var(--muted);
}

.section-heading--center {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--center p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading--light h2 {
    color: #fff;
}

.section-heading--light > p,
.section-heading--light > div:last-child p {
    color: rgba(255, 255, 255, 0.65);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(20, 21, 25, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-card__image {
    position: relative;
    display: block;
    height: 360px;
    overflow: hidden;
    background: var(--surface-alt);
}

.service-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 55%, rgba(16, 17, 19, 0.35));
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card__number {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    display: grid;
    width: 43px;
    height: 43px;
    color: #fff;
    background: rgba(17, 18, 21, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 750;
    backdrop-filter: blur(8px);
    place-items: center;
}

.service-card__body {
    position: relative;
    min-height: 214px;
    padding: 28px 76px 30px 28px;
}

.service-card__body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.card-link {
    position: absolute;
    right: 24px;
    bottom: 28px;
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 50%;
    place-items: center;
}

.split-layout {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    gap: clamp(60px, 8vw, 105px);
}

.media-frame {
    position: relative;
}

.media-frame > img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.media-frame__badge {
    position: absolute;
    right: -30px;
    bottom: 38px;
    display: flex;
    min-width: 255px;
    align-items: center;
    gap: 14px;
    padding: 20px 23px;
    color: #fff;
    background: var(--red);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(141, 13, 23, 0.27);
}

.media-frame__badge > .icon {
    font-size: 1.45rem;
}

.media-frame__badge strong,
.media-frame__badge span {
    display: block;
}

.media-frame__badge strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.media-frame__badge span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
}

.content-block > p:not(.lead) {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
    font-weight: 580;
}

.check-list .icon {
    box-sizing: content-box;
    width: 15px;
    height: 15px;
    margin-top: 3px;
    padding: 3px;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
    stroke-width: 2.6;
}

.process {
    overflow: hidden;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-grid::before {
    position: absolute;
    z-index: -1;
    top: 43px;
    right: 15%;
    left: 15%;
    height: 1px;
    content: "";
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}

.process-card {
    padding: 0 28px;
    text-align: center;
}

.process-card > span {
    display: grid;
    width: 86px;
    height: 86px;
    margin: 0 auto 27px;
    color: var(--red);
    background: #fff;
    border: 1px solid #e5c7ca;
    border-radius: 50%;
    box-shadow: 0 0 0 10px #fff, var(--shadow-sm);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 650;
    place-items: center;
}

.process-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

/* CTA */
.cta-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.cta-banner__backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: url("../images/cta-paramedic.jpeg") center 46% / cover no-repeat;
}

.cta-banner::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(142, 12, 23, 0.94), rgba(189, 18, 32, 0.86) 58%, rgba(21, 22, 26, 0.76));
}

.cta-banner__inner {
    display: grid;
    min-height: 410px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.cta-banner h2 {
    margin-bottom: 16px;
    color: #fff;
}

.cta-banner p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
}

.cta-banner__actions {
    display: flex;
    min-width: 220px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* Page hero */
.page-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 460px;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.page-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(16, 17, 20, 0.9), rgba(16, 17, 20, 0.63) 52%, rgba(16, 17, 20, 0.28));
}

.page-hero__media {
    background-image: url("../images/page-hero.jpeg");
    background-position: center 44%;
}

.page-hero--about .page-hero__media {
    background-image: url("../images/team-vehicle.jpg");
    background-position: center 48%;
}

.page-hero--contact .page-hero__media {
    background-image: url("../images/cta-paramedic.jpeg");
    background-position: center 45%;
}

.page-hero__content {
    padding: 80px 0;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2.65rem, 5vw, 4.8rem);
}

.page-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
}

.intro-section {
    border-bottom: 1px solid var(--line);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.4fr 1.3fr;
    gap: 70px;
}

.intro-grid h2 {
    max-width: 780px;
    margin-bottom: 18px;
}

.intro-grid p {
    max-width: 850px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

/* Services */
.service-details {
    padding-top: 90px;
}

.service-detail-list {
    display: grid;
    gap: 100px;
}

.service-detail {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(60px, 8vw, 110px);
}

.service-detail--reverse .service-detail__image {
    order: 2;
}

.service-detail__image {
    position: relative;
}

.service-detail__image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-detail__image > span {
    position: absolute;
    top: 26px;
    left: 26px;
    display: grid;
    width: 55px;
    height: 55px;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(141, 13, 23, 0.35);
    place-items: center;
}

.service-detail__content {
    max-width: 590px;
}

.service-detail__content > p {
    color: var(--muted);
    font-size: 1.04rem;
}

.transport-modes {
    margin-top: 112px;
}

.mode-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mode-card {
    min-height: 250px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(189, 18, 32, 0.09);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(141, 13, 23, 0.04);
}

.mode-card > .icon {
    box-sizing: content-box;
    width: 27px;
    height: 27px;
    margin-bottom: 34px;
    padding: 13px;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
}

.mode-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.faq-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 8vw, 110px);
}

.faq-layout > div:first-child {
    position: sticky;
    top: 135px;
}

.faq-layout > div:first-child p {
    color: var(--muted);
}

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

.accordion__item {
    border-bottom: 1px solid var(--line);
}

.accordion__item h3 {
    margin: 0;
}

.accordion__item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 26px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: left;
}

.accordion__item button > span {
    position: relative;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    background: var(--red-soft);
    border-radius: 50%;
}

.accordion__item button > span::before,
.accordion__item button > span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    content: "";
    background: var(--red);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.accordion__item button > span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item button[aria-expanded="true"] > span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.accordion__panel > p {
    overflow: hidden;
    margin: 0;
    color: var(--muted);
}

.accordion__item.is-open .accordion__panel {
    grid-template-rows: 1fr;
}

.accordion__item.is-open .accordion__panel > p {
    padding-bottom: 26px;
}

.no-js .accordion__panel {
    grid-template-rows: 1fr;
}

.no-js .accordion__panel > p {
    padding-bottom: 26px;
}

/* About */
.split-layout--story {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.media-frame--portrait > img {
    height: 560px;
}

.media-frame__line {
    position: absolute;
    z-index: -1;
    right: -22px;
    bottom: -22px;
    width: 44%;
    height: 58%;
    border: 3px solid var(--red);
    border-radius: var(--radius-lg);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
}

.value-card {
    position: relative;
    min-height: 360px;
    padding: 38px;
    background: var(--ink);
    transition: background 0.25s ease;
}

.value-card:hover {
    background: #202126;
}

.value-card > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 68px;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
    place-items: center;
}

.value-card__number {
    position: absolute;
    top: 35px;
    right: 35px;
    color: rgba(255, 255, 255, 0.15);
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 600;
}

.value-card h3 {
    color: #fff;
}

.value-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.94rem;
}

.fleet-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
}

.fleet-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.feature-list {
    display: grid;
    gap: 0;
    margin-top: 35px;
    border-top: 1px solid var(--line);
}

.feature-list article {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.feature-list article > span {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 50%;
    place-items: center;
}

.feature-list h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

/* Contact */
.emergency-note {
    color: #fff;
    background: var(--red-dark);
}

.emergency-note__inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.emergency-note p {
    margin: 0;
    font-size: 0.9rem;
}

.emergency-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(55px, 8vw, 105px);
}

.contact-copy {
    position: sticky;
    top: 135px;
}

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

.contact-methods {
    display: grid;
    gap: 10px;
    margin: 36px 0;
}

.contact-method {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 14px;
    padding: 14px 15px;
    background: var(--surface-alt);
    border: 1px solid transparent;
    border-radius: 12px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.contact-method:hover {
    background: #fff;
    border-color: #ebc2c6;
    transform: translateX(5px);
}

.contact-method > span {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
    place-items: center;
}

.contact-method > div {
    min-width: 0;
    flex: 1;
}

.contact-method small,
.contact-method strong {
    display: block;
}

.contact-method small {
    color: var(--muted);
    font-size: 0.75rem;
}

.contact-method strong {
    overflow: hidden;
    font-family: var(--font-heading);
    font-size: 0.94rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-method > .icon {
    margin-right: 3px;
    color: var(--muted);
}

.contact-assurance {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    color: var(--ink-soft);
    background: var(--red-soft);
    border-left: 3px solid var(--red);
    border-radius: 0 10px 10px 0;
}

.contact-assurance > .icon {
    margin-top: 3px;
    color: var(--red);
}

.contact-assurance p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.6;
}

.form-card {
    padding: clamp(28px, 5vw, 54px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-card__header {
    margin-bottom: 32px;
}

.form-card__header h2 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.form-card__header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.form-status {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 10px;
}

.form-status > .icon {
    margin-top: 2px;
}

.form-status strong,
.form-status p {
    display: block;
}

.form-status p {
    margin: 3px 0 0;
    font-size: 0.85rem;
}

.form-status--success {
    color: var(--success);
    background: #e9f7ef;
}

.form-status--error {
    color: var(--red-dark);
    background: var(--red-soft);
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.form-field {
    min-width: 0;
}

.form-field label,
.label-row {
    display: flex;
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.label-row {
    align-items: center;
    justify-content: space-between;
}

.label-row label {
    margin: 0;
}

.label-row > span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    background: #fbfbfb;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 0.93rem;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    background: #fff;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(189, 18, 32, 0.1);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: var(--red);
}

.field-error {
    display: block;
    margin-top: 6px;
    color: var(--red-dark);
    font-size: 0.75rem;
    line-height: 1.45;
}

.form-field--checkbox label {
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.55;
}

.form-field--checkbox input {
    width: 18px;
    min-height: 18px;
    flex: 0 0 18px;
    margin: 3px 0 0;
    padding: 0;
    accent-color: var(--red);
}

.form-field--checkbox a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-trap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.button--submit {
    width: 100%;
    min-height: 58px;
    margin-top: 4px;
    border: 0;
    cursor: pointer;
}

.form-note {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: center;
}

.form-note .icon {
    color: var(--success);
}

/* Legal */
.legal-hero {
    padding: 82px 0;
    background: linear-gradient(135deg, var(--red-soft), #fff);
    border-bottom: 1px solid #edd7d9;
}

.legal-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.legal-layout {
    max-width: 900px;
}

.legal-notice {
    position: sticky;
    top: 135px;
    padding: 25px;
    color: var(--red-dark);
    background: var(--red-soft);
    border-left: 4px solid var(--red);
    border-radius: 0 12px 12px 0;
}

.legal-notice p {
    margin: 8px 0 0;
    font-size: 0.85rem;
}

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

.legal-content h2 {
    margin: 44px 0 14px;
    font-size: 1.45rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

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

.legal-content a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.62);
    background: #111216;
}

.footer-grid {
    display: grid;
    padding-top: 72px;
    padding-bottom: 58px;
    grid-template-columns: 1.25fr 0.6fr 1fr;
    gap: clamp(45px, 7vw, 100px);
}

.brand--footer {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
}

.brand--footer img {
    width: 135px;
}

.footer-brand p {
    max-width: 390px;
    font-size: 0.88rem;
}

.footer-title {
    margin: 0 0 20px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.86rem;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links--contact li > a,
.footer-links--contact li > span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-links--contact .icon {
    margin-top: 2px;
    color: #ff555f;
}

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

.footer-bottom p {
    margin: 0;
}

.footer-bottom > div {
    display: flex;
    gap: 22px;
}

.footer-bottom a:hover {
    color: #fff;
}

.mobile-call {
    display: none;
}

/* Motion */
.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .primary-nav {
        justify-self: end;
    }

    .nav-link {
        padding: 0 11px;
    }

    .button--header {
        display: none;
    }

    .service-card__image {
        height: 310px;
    }

    .media-frame__badge {
        right: 22px;
    }

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

@media (max-width: 820px) {
    html {
        scroll-padding-top: 100px;
    }

    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .section {
        padding: 82px 0;
    }

    .section--compact {
        padding: 62px 0;
    }

    .utility-bar__inner {
        justify-content: center;
    }

    .utility-bar__inner > span {
        display: none;
    }

    .site-header {
        backdrop-filter: none;
    }

    .header-inner {
        min-height: 74px;
        grid-template-columns: 1fr auto;
    }

    .brand img {
        width: 132px;
    }

    .menu-toggle {
        z-index: 1002;
        display: inline-flex;
        min-height: 46px;
        align-items: center;
        gap: 10px;
        padding: 8px 0 8px 12px;
        background: transparent;
        border: 0;
        cursor: pointer;
        font-size: 0.79rem;
        font-weight: 750;
    }

    .menu-toggle__icon {
        display: grid;
        width: 42px;
        height: 42px;
        align-content: center;
        gap: 5px;
        background: var(--ink);
        border-radius: 50%;
        place-items: center;
    }

    .menu-toggle__icon i {
        display: block;
        width: 17px;
        height: 1.5px;
        background: #fff;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        z-index: 1001;
        top: var(--nav-top, 110px);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        visibility: hidden;
        width: auto;
        height: auto;
        align-self: stretch;
        justify-self: stretch;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 35px 18px;
        opacity: 0;
        background: rgba(255, 255, 255, 0.99);
        transform: translateY(-15px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .primary-nav::after {
        display: flex;
        margin-top: auto;
        padding: 22px;
        color: var(--red);
        content: "24/7 erreichbar · 03491 4202995";
        background: var(--red-soft);
        border-radius: 12px;
        font-weight: 750;
        justify-content: center;
    }

    .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-link {
        min-height: 65px;
        padding: 0 10px;
        border-bottom: 1px solid var(--line);
        font-family: var(--font-heading);
        font-size: 1.28rem;
        font-weight: 600;
    }

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

    .hero {
        min-height: 690px;
    }

    .hero__media {
        background-position: 62% center;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(14, 15, 18, 0.92), rgba(14, 15, 18, 0.65)), linear-gradient(0deg, rgba(14, 15, 18, 0.42), transparent);
    }

    .hero__content {
        padding: 75px 0 82px;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .trust-strip article {
        min-height: 98px;
        justify-content: flex-start;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-strip article:last-child {
        border-bottom: 0;
    }

    .section-heading--split,
    .split-layout,
    .intro-grid,
    .service-detail,
    .faq-layout,
    .fleet-grid,
    .contact-layout,
    .legal-layout,
    .cta-banner__inner {
        grid-template-columns: 1fr;
    }

    .section-heading--split {
        align-items: start;
        gap: 24px;
    }

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

    .service-card {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
    }

    .service-card__image {
        height: 100%;
        min-height: 300px;
    }

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

    .process-grid {
        gap: 45px;
    }

    .process-grid::before {
        display: none;
    }

    .process-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .cta-banner__inner {
        min-height: 0;
        gap: 35px;
    }

    .cta-banner__actions {
        align-items: flex-start;
    }

    .intro-grid {
        gap: 12px;
    }

    .service-detail-list {
        gap: 85px;
    }

    .service-detail--reverse .service-detail__image {
        order: 0;
    }

    .service-detail__image img {
        height: 500px;
    }

    .transport-modes {
        margin-top: 82px;
    }

    .faq-layout {
        gap: 45px;
    }

    .faq-layout > div:first-child,
    .contact-copy,
    .legal-notice {
        position: static;
    }

    .split-layout--story {
        display: flex;
        flex-direction: column;
    }

    .value-grid {
        background: transparent;
        border: 0;
        gap: 1px;
    }

    .value-card {
        min-height: 300px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .value-card > span {
        margin-bottom: 40px;
    }

    .contact-layout {
        gap: 60px;
    }

    .contact-copy {
        max-width: 650px;
    }

    .legal-layout {
        gap: 42px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    body {
        padding-bottom: 66px;
        font-size: 15px;
    }

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 68px 0;
    }

    h1 {
        font-size: clamp(2.45rem, 12vw, 3.4rem);
    }

    h2 {
        font-size: clamp(1.85rem, 9vw, 2.6rem);
    }

    .menu-toggle__label {
        display: none;
    }

    .hero {
        min-height: calc(100svh - 110px);
    }

    .hero__content {
        padding: 70px 0;
    }

    .hero h1 {
        margin-bottom: 20px;
    }

    .hero__content > p {
        margin-bottom: 28px;
        font-size: 1rem;
    }

    .hero__actions {
        display: grid;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__assurance {
        display: grid;
        gap: 10px;
        margin-top: 30px;
    }

    .service-card {
        display: block;
    }

    .service-card__image {
        height: 330px;
        min-height: 0;
    }

    .service-card__body {
        min-height: 200px;
    }

    .media-frame > img,
    .media-frame--portrait > img {
        height: 410px;
    }

    .media-frame__badge {
        right: 14px;
        bottom: 14px;
        left: 14px;
        min-width: 0;
    }

    .page-hero {
        min-height: 390px;
    }

    .page-hero__content {
        padding: 65px 0;
    }

    .page-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.35rem);
    }

    .service-detail__image img {
        height: 430px;
    }

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

    .mode-card {
        min-height: 0;
    }

    .accordion__item button {
        gap: 18px;
        font-size: 0.96rem;
    }

    .fleet-image img {
        height: 470px;
    }

    .emergency-note__inner {
        align-items: flex-start;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        margin-right: -3px;
        margin-left: -3px;
        padding: 25px 20px;
        border-radius: 18px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .mobile-call {
        position: fixed;
        z-index: 999;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        min-height: 66px;
        align-items: center;
        justify-content: center;
        gap: 9px;
        color: #fff;
        background: linear-gradient(135deg, var(--red-bright), var(--red));
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 -10px 28px rgba(36, 5, 8, 0.24);
        font-weight: 800;
    }
}

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

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
