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

:root {
    --primary: #067498;
    --primary-dark: #045c79;
    --primary-light: #e8f4f7;
    --dark: #0f0526;
    --dark-soft: #1b1033;
    --ink: #26343d;
    --muted: #62727b;
    --line: #dce7eb;
    --soft: #f2f8fa;
    --white: #ffffff;
    --danger: #b42318;
    --success: #087a55;
    --container: 1500px;
    --shadow: 0 22px 60px rgba(15, 5, 38, 0.12);
    --radius: 18px;
    --transition: 220ms ease;
}

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

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.consent-open {
    overflow: hidden;
}

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

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

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

button,
summary {
    cursor: pointer;
}

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

h1,
h2,
h3 {
    color: var(--dark);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.7rem, 5.8vw, 5.6rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.35rem);
}

h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

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

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

.narrow {
    max-width: 860px;
    text-align: center;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--dark);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

.icon {
    width: 1.35em;
    height: 1.35em;
    flex: 0 0 auto;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 0.77rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

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

.eyebrow--light {
    color: #89d3e6;
}

.section-separator {
    width: 300px;
    height: auto;
    margin: 16px auto 30px;
}

.section {
    padding: 105px 0;
}

.section--no-top {
    padding-top: 0;
}

.section--intro p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.section--soft {
    background: var(--soft);
}

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

.section--dark h2,
.section--dark h3 {
    color: var(--white);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 13px 22px;
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 5px;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.2;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.button:hover,
.button:focus-visible {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.button--light {
    color: var(--dark);
    background: var(--white);
    border-color: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.button--ghost {
    color: var(--dark);
    background: transparent;
    border-color: var(--line);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    color: var(--primary);
    background: var(--soft);
    border-color: var(--primary);
}

.button--small {
    min-height: 43px;
    padding: 10px 16px;
    font-size: 0.86rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 750;
}

.text-link .icon {
    transition: transform var(--transition);
}

.text-link:hover .icon,
.text-link:focus-visible .icon {
    transform: translateX(5px);
}

.text-link--light {
    color: var(--white);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(15, 5, 38, 0.08);
}

.topbar {
    max-height: 40px;
    overflow: hidden;
    color: var(--white);
    background: var(--primary);
    transition: max-height var(--transition), opacity var(--transition);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    font-size: 0.76rem;
}

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

.topbar__phone .icon {
    width: 16px;
    height: 16px;
}

.topbar__nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.topbar__nav a {
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.78);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.topbar__nav a:last-child {
    padding-right: 0;
    border-right: 0;
}

.topbar__nav a:hover,
.topbar__nav a.is-active {
    color: var(--white);
}

.mainnav {
    height: 140px;
    transition: height var(--transition);
}

.mainnav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    align-self: flex-start;
    width: 130px;
    margin-top: 5px;
    transition: width var(--transition), margin var(--transition);
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
    height: 100%;
}

.desktop-nav > a:not(.nav-cta) {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.desktop-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--primary);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active {
    color: var(--primary);
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 45px;
    padding: 10px 17px;
    color: var(--white);
    background: var(--dark);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background var(--transition);
}

.desktop-nav > .nav-cta:hover,
.desktop-nav > .nav-cta.is-active {
    color: var(--white);
    background: var(--primary);
}

.site-header.is-condensed .topbar {
    max-height: 0;
    opacity: 0;
}

.site-header.is-condensed .mainnav {
    height: 76px;
}

.site-header.is-condensed .brand {
    width: 82px;
    margin-top: -4px;
}

.site-header.is-condensed .desktop-nav > a:not(.nav-cta)::after {
    bottom: 12px;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 0 8px 14px;
    color: var(--dark);
    background: transparent;
    border: 0;
    font-size: 0.85rem;
    font-weight: 700;
}

.menu-toggle__close {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
    display: block;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.mobile-menu__nav {
    display: grid;
    width: min(calc(100% - 40px), 680px);
    margin-inline: auto;
    padding: 22px 0 30px;
}

.mobile-menu__nav > a,
.mobile-menu summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px;
    color: var(--dark);
    border-bottom: 1px solid var(--line);
    font-weight: 650;
    list-style: none;
}

.mobile-menu summary::after {
    color: var(--primary);
    content: "+";
    font-size: 1.4rem;
}

.mobile-menu details[open] summary::after {
    content: "−";
}

.mobile-menu details div {
    display: grid;
    padding: 6px 0 10px 18px;
    background: var(--soft);
}

.mobile-menu details div a {
    padding: 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.mobile-menu__nav > .button {
    margin-top: 20px;
    color: var(--white);
    border: 0;
}

/* Hero */
.video-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 144px));
    overflow: hidden;
    color: var(--white);
    background: var(--dark);
}

.video-hero__media,
.video-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-hero__media {
    object-fit: cover;
}

.video-hero__overlay {
    background: linear-gradient(90deg, rgba(15, 5, 38, 0.88) 0%, rgba(15, 5, 38, 0.57) 46%, rgba(15, 5, 38, 0.15) 100%);
}

.video-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: inherit;
    padding-top: 30px;
    padding-bottom: 70px;
}

.video-hero h1 {
    max-width: 880px;
    margin-bottom: 28px;
    color: var(--white);
}

.video-hero h1 span {
    color: #84d4e7;
}

.video-hero__content > p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

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

.video-control {
    position: absolute;
    right: 28px;
    bottom: 25px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--white);
    background: rgba(15, 5, 38, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    font-size: 0.75rem;
}

.video-control .icon {
    width: 17px;
    height: 17px;
}

.video-control__play {
    display: none;
}

.video-control.is-paused .video-control__play {
    display: block;
}

.video-control.is-paused .video-control__pause {
    display: none;
}

.page-hero {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background-color: var(--dark);
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 5, 38, 0.9), rgba(15, 5, 38, 0.55) 62%, rgba(15, 5, 38, 0.28));
}

.page-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 410px;
    padding-block: 60px;
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.page-hero__content > p:last-child {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.feature-strip {
    color: var(--white);
    background: var(--primary);
}

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

.feature-strip__grid > div {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 104px;
    padding: 18px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.feature-strip__grid > div:first-child {
    padding-left: 0;
}

.feature-strip__grid > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.feature-strip .icon {
    width: 35px;
    height: 35px;
}

.feature-strip span,
.feature-strip strong,
.feature-strip small {
    display: block;
}

.feature-strip strong {
    font-size: 0.94rem;
}

.feature-strip small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.73rem;
}

/* Content grids */
.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insight-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: var(--soft);
    border-radius: var(--radius);
}

.insight-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.insight-card > div:last-child {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
}

.insight-card h3 {
    margin-bottom: 16px;
}

.insight-card p:not(.eyebrow) {
    color: var(--muted);
    font-size: 0.91rem;
}

.insight-card .text-link {
    margin-top: auto;
    padding-top: 12px;
}

.insight-card--accent {
    color: rgba(255, 255, 255, 0.78);
    background: var(--dark);
}

.insight-card--accent h3 {
    color: var(--white);
}

.insight-card--accent p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.insight-card__symbol {
    display: grid;
    min-height: 210px;
    place-items: center;
    color: #82d5e8;
    background: linear-gradient(145deg, #1c1035, #0f0526);
}

.insight-card__symbol .icon {
    width: 90px;
    height: 90px;
    stroke-width: 1.2;
}

.image-break {
    position: relative;
    min-height: 390px;
    overflow: hidden;
}

.image-break > img,
.image-break__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.image-break > img {
    object-fit: cover;
}

.image-break__overlay {
    background: linear-gradient(90deg, rgba(15, 5, 38, 0.65), rgba(15, 5, 38, 0.05));
}

.image-break__caption {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 22px;
    min-height: 390px;
    padding-bottom: 48px;
    color: var(--white);
}

.image-break__caption span {
    color: #83d5e8;
    font-size: 3.4rem;
    font-weight: 300;
    line-height: 1;
}

.image-break__caption p {
    max-width: 440px;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 620;
    line-height: 1.3;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.split p:not(.eyebrow) {
    color: var(--muted);
}

.section--dark .split p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.split .button {
    margin-top: 15px;
}

.split--reverse > :first-child {
    order: 2;
}

.split--reverse > :last-child {
    order: 1;
}

.media-card {
    position: relative;
    margin: 0;
}

.media-card::before {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 70%;
    height: 70%;
    background: var(--primary);
    border-radius: var(--radius);
    content: "";
}

.media-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 390px;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.media-card figcaption {
    position: relative;
    z-index: 2;
    width: calc(100% - 46px);
    margin: -42px 0 0 23px;
    padding: 16px 22px;
    color: var(--white);
    background: var(--dark);
    border-radius: 7px;
    font-size: 0.82rem;
}

.media-card--dark::before {
    background: var(--primary);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
}

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

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

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

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

.service-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
    min-height: 315px;
    overflow: hidden;
    background: var(--soft);
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    border-color: rgba(6, 116, 152, 0.25);
    box-shadow: 0 18px 40px rgba(15, 5, 38, 0.09);
    transform: translateY(-4px);
}

.service-card__image {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

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

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

.service-card__image span {
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    width: 43px;
    height: 43px;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    place-items: center;
    font-size: 0.76rem;
    font-weight: 750;
}

.service-card > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
}

.service-card h3 {
    margin-bottom: 14px;
}

.service-card h3 a:hover {
    color: var(--primary);
}

.service-card p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.86rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

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

.service-card--request {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.74);
    background: var(--primary);
}

.service-card--request__icon {
    min-height: 105px;
    padding: 28px 34px 0;
}

.service-card--request__icon .icon {
    width: 58px;
    height: 58px;
    color: #9be1ef;
}

.service-card--request h3,
.service-card--request p {
    color: var(--white);
}

.process-section {
    background: linear-gradient(180deg, var(--white), var(--soft));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    counter-reset: steps;
    list-style: none;
}

.process-grid li {
    position: relative;
    min-height: 260px;
    padding: 34px 30px;
    background: var(--white);
    border-top: 3px solid var(--primary);
    border-right: 1px solid var(--line);
}

.process-grid li:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
}

.process-grid li:last-child {
    border-right: 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.process-grid span {
    display: block;
    margin-bottom: 32px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
}

.process-grid h3 {
    margin-bottom: 12px;
}

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

.quality-section {
    position: relative;
    overflow: hidden;
}

.quality-section::after {
    position: absolute;
    right: -130px;
    bottom: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(132, 212, 231, 0.2);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 70px rgba(132, 212, 231, 0.035), 0 0 0 140px rgba(132, 212, 231, 0.02);
}

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

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 18px 22px;
    background: var(--soft);
    border-radius: 8px;
    font-weight: 620;
}

.benefit-item .icon {
    color: var(--primary);
}

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

.value-grid article {
    padding: 34px;
    background: var(--soft);
    border-radius: var(--radius);
}

.value-grid article > .icon {
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    color: var(--primary);
}

.value-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-list span {
    padding: 11px 16px;
    color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    font-size: 0.86rem;
}

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

.document-card {
    position: relative;
    min-height: 335px;
    padding: 42px;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
}

.document-card > span:first-child {
    position: absolute;
    top: 34px;
    right: 34px;
    color: rgba(6, 116, 152, 0.16);
}

.document-card > span:first-child .icon {
    width: 76px;
    height: 76px;
}

.document-card h2 {
    max-width: 430px;
    font-size: 1.75rem;
}

.document-card p:not(.eyebrow) {
    max-width: 450px;
    color: var(--muted);
}

.document-card small {
    position: absolute;
    right: 42px;
    bottom: 35px;
    left: 42px;
    padding-top: 16px;
    color: var(--primary);
    border-top: 1px solid var(--line);
    font-weight: 700;
}

.hazard-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.hazard-grid article {
    grid-column: span 2;
    min-height: 310px;
    padding: 34px;
    background: var(--white);
    border-radius: var(--radius);
}

.hazard-grid article:nth-child(4) {
    grid-column: 2 / span 2;
}

.hazard-grid article:nth-child(5) {
    grid-column: 4 / span 2;
}

.hazard-grid article > span {
    display: block;
    margin-bottom: 26px;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
}

.hazard-grid h2 {
    font-size: 1.8rem;
}

.hazard-grid p {
    color: var(--muted);
    font-size: 0.88rem;
}

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

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-list .icon {
    margin-top: 4px;
    color: var(--primary);
}

/* CTA and contact */
.cta-band {
    position: relative;
    min-height: 360px;
    color: var(--white);
    background: var(--primary) url("../img/cta-hintergrund.webp") center / cover no-repeat;
}

.cta-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 116, 152, 0.96), rgba(15, 5, 38, 0.7));
}

.cta-band__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    min-height: 360px;
    padding-block: 70px;
}

.cta-band h2 {
    max-width: 760px;
    margin-bottom: 14px;
    color: var(--white);
}

.cta-band__content > div > p:last-child {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
}

.cta-band .button {
    flex: 0 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 55px;
    align-items: stretch;
}

.contact-list {
    display: grid;
    gap: 6px;
    margin-top: 30px;
}

.contact-list > a,
.contact-list > p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list .icon {
    margin-top: 3px;
    color: var(--primary);
}

.contact-list small,
.contact-list span {
    display: block;
}

.contact-list small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-consent {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    background: var(--dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-consent iframe {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

.map-consent.is-loaded iframe {
    display: block;
}

.map-consent.is-loaded .map-consent__placeholder {
    display: none;
}

.map-consent__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    background: radial-gradient(circle at top, #263b4a 0%, var(--dark) 68%);
}

.map-consent__placeholder h3 {
    margin: 18px 0 9px;
    color: var(--white);
}

.map-consent__placeholder p {
    max-width: 470px;
    font-size: 0.86rem;
}

.map-consent__placeholder > a {
    margin-top: 12px;
    color: #8bd6e7;
    font-size: 0.76rem;
    text-decoration: underline;
}

.map-consent__icon {
    display: grid;
    width: 72px;
    height: 72px;
    color: #8bd6e7;
    border: 1px solid rgba(139, 214, 231, 0.4);
    border-radius: 50%;
    place-items: center;
}

.map-consent__icon .icon {
    width: 32px;
    height: 32px;
}

/* Forms */
.form-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--soft) 100%);
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(45px, 7vw, 90px);
    align-items: start;
}

.form-layout--request {
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
}

.form-intro {
    position: sticky;
    top: 125px;
}

.form-intro > p:not(.eyebrow) {
    color: var(--muted);
}

.direct-contact-card {
    display: grid;
    gap: 4px;
    margin-top: 35px;
    padding: 28px;
    color: var(--white);
    background: var(--dark);
    border-radius: var(--radius);
}

.direct-contact-card h3 {
    color: var(--white);
}

.direct-contact-card a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.direct-contact-card .icon {
    color: #87d5e6;
}

.direct-contact-card small,
.direct-contact-card span {
    display: block;
}

.direct-contact-card small {
    color: rgba(255, 255, 255, 0.53);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.request-tips {
    display: grid;
    gap: 0;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

.request-tips li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.request-tips span {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
}

.request-tips p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.request-tips strong {
    color: var(--dark);
}

.form-card {
    padding: clamp(28px, 4vw, 52px);
    background: var(--white);
    border: 1px solid rgba(6, 116, 152, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-card__heading {
    margin-bottom: 35px;
}

.form-card__heading span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 0.74rem;
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field,
.upload-field,
.service-options {
    margin-bottom: 22px;
}

.field label,
.service-options legend {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.field label span {
    color: var(--muted);
    font-weight: 450;
}

.field input,
.field textarea {
    width: 100%;
    color: var(--dark);
    background: #fbfdfe;
    border: 1px solid #cddce1;
    border-radius: 7px;
    outline: 0;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input {
    height: 52px;
    padding: 0 15px;
}

.field textarea {
    min-height: 160px;
    padding: 14px 15px;
    line-height: 1.55;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(6, 116, 152, 0.1);
}

.field.has-error input,
.field.has-error textarea,
.service-options.has-error,
.upload-field.has-error label {
    border-color: var(--danger);
}

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

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.service-options {
    min-width: 0;
    padding: 0;
    border: 0;
}

.service-options > p {
    margin: -3px 0 14px;
    color: var(--muted);
    font-size: 0.76rem;
}

.service-options__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-options__grid label {
    position: relative;
}

.service-options__grid input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.service-options__grid span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 49px;
    padding: 10px 13px;
    color: var(--muted);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.service-options__grid span .icon {
    width: 18px;
    height: 18px;
    opacity: 0.25;
}

.service-options__grid input:checked + span {
    color: var(--primary);
    background: var(--primary-light);
    border-color: var(--primary);
}

.service-options__grid input:checked + span .icon {
    opacity: 1;
}

.service-options__grid input:focus-visible + span {
    box-shadow: 0 0 0 4px rgba(6, 116, 152, 0.1);
}

.upload-field {
    position: relative;
}

.upload-field > label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--soft);
    border: 1px dashed #9ab5bf;
    border-radius: 9px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.upload-field > label:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.upload-field > label > .icon {
    width: 29px;
    height: 29px;
    color: var(--primary);
}

.upload-field strong,
.upload-field small {
    display: block;
}

.upload-field strong {
    color: var(--dark);
    font-size: 0.86rem;
}

.upload-field small {
    color: var(--muted);
    font-size: 0.72rem;
}

.upload-field > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.upload-field > input:focus-visible + .upload-list {
    outline: 3px solid rgba(6, 116, 152, 0.2);
}

.upload-list {
    display: grid;
    gap: 5px;
    margin: 9px 0 0;
    padding: 0;
    list-style: none;
}

.upload-list li {
    padding: 7px 10px;
    color: var(--muted);
    background: #fbfdfe;
    border-radius: 5px;
    font-size: 0.74rem;
}

.form-consents {
    display: grid;
    gap: 10px;
    margin: 28px 0;
}

.checkbox {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--primary);
}

.checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.checkbox.has-error span {
    color: var(--danger);
}

.button--submit {
    width: 100%;
    min-height: 56px;
}

.form-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 15px 17px;
    border-radius: 8px;
    font-size: 0.84rem;
}

.form-alert p {
    margin: 0;
}

.form-alert--success {
    color: var(--success);
    background: #e8f7f1;
    border: 1px solid #b4e3d1;
}

.form-alert--error {
    color: var(--danger);
    background: #fff1f0;
    border: 1px solid #f2c1bd;
}

/* Legal */
.legal-page {
    background: var(--soft);
}

.legal-content {
    max-width: 940px;
    padding: clamp(28px, 6vw, 68px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.legal-content h2 {
    margin: 42px 0 14px;
    font-size: 1.42rem;
    letter-spacing: -0.02em;
}

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

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

.legal-notice {
    margin-bottom: 42px;
    padding: 20px 22px;
    color: #744210;
    background: #fff7df;
    border-left: 4px solid #d69e2e;
    border-radius: 6px;
}

.legal-notice p {
    margin: 5px 0 0;
    color: #744210;
}

.error-page {
    min-height: 65vh;
    padding: 120px 0;
    text-align: center;
}

.error-page__number {
    margin-bottom: -10px;
    color: rgba(6, 116, 152, 0.12);
    font-size: clamp(7rem, 18vw, 15rem);
    font-weight: 800;
    line-height: 0.8;
}

.error-page .eyebrow {
    justify-content: center;
}

.error-page h1 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.error-page p:not(.eyebrow, .error-page__number) {
    color: var(--muted);
}

.error-page .button {
    margin-top: 18px;
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.68);
    background: var(--dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1.3fr;
    gap: 55px;
    padding-top: 75px;
    padding-bottom: 70px;
}

.site-footer h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.footer-brand img {
    width: 100px;
    margin-bottom: 22px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}

.footer-brand p {
    max-width: 310px;
    font-size: 0.83rem;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li a {
    font-size: 0.82rem;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-bottom button:hover {
    color: #8bd6e7;
}

.footer-contact {
    display: grid;
    align-content: start;
}

.footer-contact > a,
.footer-contact > p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0;
    padding: 8px 0;
    font-size: 0.82rem;
}

.footer-contact .icon {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: #8bd6e7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    font-size: 0.74rem;
}

.footer-bottom__inner p {
    margin: 0;
}

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

.footer-bottom button {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
}

.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 850;
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: var(--primary);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(15, 5, 38, 0.25);
    opacity: 0;
    place-items: center;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.to-top:hover {
    background: var(--dark);
}

.to-top .icon {
    width: 22px;
    height: 22px;
}

/* Consent */
.consent {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
}

.consent__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 5, 38, 0.62);
    backdrop-filter: blur(5px);
}

.consent__panel {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 18px;
    width: min(100%, 820px);
    max-height: calc(100vh - 48px);
    padding: 26px;
    overflow-y: auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 30px 100px rgba(15, 5, 38, 0.35);
}

.consent__mark {
    display: grid;
    grid-row: 1 / span 2;
    width: 53px;
    height: 53px;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 50%;
    place-items: center;
}

.consent__mark .icon {
    width: 27px;
    height: 27px;
}

.consent h2 {
    margin-bottom: 7px;
    font-size: 1.38rem;
}

.consent p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.consent__settings,
.consent__actions,
.consent__legal {
    grid-column: 1 / -1;
}

.consent__settings {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.consent-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 15px;
    background: var(--soft);
    border-radius: 8px;
}

.consent-option strong,
.consent-option small {
    display: block;
}

.consent-option strong {
    color: var(--dark);
    font-size: 0.84rem;
}

.consent-option small {
    color: var(--muted);
    font-size: 0.7rem;
}

.consent-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.consent__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 20px;
}

.consent__actions .button {
    min-height: 43px;
    padding: 10px 15px;
    font-size: 0.78rem;
}

.consent__legal {
    margin-top: 13px;
    text-align: right;
}

.consent__legal a {
    color: var(--primary);
    text-decoration: underline;
}

.consent[hidden],
.mobile-menu[hidden],
.consent__settings[hidden],
.consent__actions [hidden] {
    display: none;
}

/* Reveal */
.reveal.is-pending {
    opacity: 0;
    transform: translateY(22px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 650ms ease, transform 650ms ease;
}

@media (max-width: 1120px) {
    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav > a:not(.nav-cta) {
        font-size: 0.82rem;
    }

    .brand {
        width: 112px;
    }

    .service-card {
        grid-template-columns: 0.72fr 1.28fr;
    }

    .service-card > div:last-child {
        padding: 27px;
    }

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

    .hazard-grid article,
    .hazard-grid article:nth-child(4),
    .hazard-grid article:nth-child(5) {
        grid-column: auto;
    }

    .hazard-grid article:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 940px) {
    .topbar__nav,
    .desktop-nav {
        display: none;
    }

    .topbar__inner {
        justify-content: center;
    }

    .mainnav,
    .site-header.is-condensed .mainnav {
        height: 78px;
    }

    .brand,
    .site-header.is-condensed .brand {
        align-self: center;
        width: 76px;
        margin: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .video-hero {
        min-height: 650px;
    }

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

    .feature-strip__grid > div,
    .feature-strip__grid > div:first-child,
    .feature-strip__grid > div:last-child {
        padding: 18px 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.25);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .feature-strip__grid > div:nth-child(2n) {
        border-right: 0;
    }

    .feature-strip__grid > div:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

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

    .insight-card:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .split,
    .contact-layout,
    .form-layout,
    .form-layout--request {
        grid-template-columns: 1fr;
    }

    .split--reverse > :first-child,
    .split--reverse > :last-child {
        order: initial;
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

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

    .service-card {
        grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
    }

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

    .process-grid li,
    .process-grid li:first-child,
    .process-grid li:last-child {
        border-radius: 0;
    }

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

    .form-intro {
        position: static;
    }

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

    .footer-contact {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 700px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .section--no-top {
        padding-top: 0;
    }

    .topbar__inner {
        font-size: 0.7rem;
    }

    .topbar__phone .icon {
        display: none;
    }

    .video-hero {
        min-height: 620px;
    }

    .video-hero__overlay {
        background: linear-gradient(90deg, rgba(15, 5, 38, 0.9), rgba(15, 5, 38, 0.55));
    }

    .video-hero__content {
        padding-bottom: 95px;
    }

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

    .video-control {
        right: 16px;
        bottom: 16px;
    }

    .video-control span {
        display: none;
    }

    .page-hero,
    .page-hero__content {
        min-height: 350px;
    }

    .page-hero__content {
        padding-block: 50px;
    }

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

    .feature-strip__grid > div,
    .feature-strip__grid > div:first-child,
    .feature-strip__grid > div:last-child,
    .feature-strip__grid > div:nth-child(2n),
    .feature-strip__grid > div:nth-last-child(-n + 2) {
        min-height: 82px;
        padding: 14px 4px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }

    .feature-strip__grid > div:last-child {
        border-bottom: 0;
    }

    .feature-strip .icon {
        width: 29px;
        height: 29px;
    }

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

    .insight-card:last-child {
        grid-column: auto;
        display: flex;
    }

    .insight-card > div:last-child {
        padding: 28px;
    }

    .image-break,
    .image-break__caption {
        min-height: 310px;
    }

    .media-card::before {
        top: -10px;
        right: -7px;
    }

    .media-card img {
        min-height: 280px;
    }

    .section-heading {
        gap: 12px;
        margin-bottom: 35px;
    }

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

    .service-card__image {
        min-height: 220px;
    }

    .service-card > div:last-child {
        padding: 27px;
    }

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

    .process-grid li {
        min-height: auto;
        border-right: 0;
    }

    .value-grid article,
    .document-card,
    .hazard-grid article {
        padding: 28px;
    }

    .hazard-grid article:last-child {
        grid-column: auto;
    }

    .cta-band__content {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 26px;
    }

    .contact-layout {
        gap: 35px;
    }

    .map-consent,
    .map-consent iframe {
        min-height: 390px;
    }

    .form-card {
        padding: 25px 20px;
    }

    .form-grid,
    .service-options__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-options__grid {
        gap: 8px;
    }

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

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

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

    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding-block: 18px;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .to-top {
        right: 15px;
        bottom: 15px;
        width: 44px;
        height: 44px;
    }

    .consent {
        padding: 12px;
    }

    .consent__panel {
        display: block;
        max-height: calc(100vh - 24px);
        padding: 21px;
    }

    .consent__mark {
        margin-bottom: 14px;
    }

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

    .consent__actions .button {
        width: 100%;
    }

    .consent__legal {
        text-align: left;
    }
}

@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;
    }

    .reveal.is-pending {
        opacity: 1;
        transform: none;
    }
}
