:root {
    --blue: #2f4a99;
    --blue-dark: #17336f;
    --blue-bright: #1267df;
    --gold: #e5ad32;
    --dark: #05070b;
    --anthracite: #111827;
    --text: #1f2937;
    --muted: #667085;
    --white: #ffffff;
    --border: rgba(17, 24, 39, 0.12);
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
    --radius: 18px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px);
}

.header-container {
    width: min(100%, var(--container));
    min-height: 96px;
    height: auto;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-img {
    display: block;
    width: auto;
    height: 86px;
    max-height: 100px;
    object-fit: contain;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    border: 0;
    background: transparent;
    padding: 22px 0;
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 7px;
    height: 7px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .dropdown-arrow,
.mobile-dropdown.is-open .dropdown-arrow {
    transform: rotate(225deg);
    margin-top: 3px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    width: 290px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 24, 39, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: 0.2s ease;
}

.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.dropdown-menu a:hover {
    background: #f3f6ff;
    color: var(--blue);
}

.header-cta {
    flex-shrink: 0;
    padding: 12px 25px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(47, 74, 153, 0.25);
    transition: 0.2s ease;
}

.header-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: #111827;
    transition: 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 30%, rgba(0, 0, 0, 0.4) 58%, rgba(0, 0, 0, 0.1) 100%),
        url("/images/starteseite/hero.png") center / cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 68% 38%, rgba(47, 74, 153, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 72%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 82px 32px 48px;
}

.hero-content {
    max-width: 710px;
}

.hero-content h1 {
    margin: 0;
    max-width: 650px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 0.92;
    font-weight: 950;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    color: #fff;
}

.hero-content h1 span {
    display: block;
    color: var(--blue);
}

.hero-content p {
    margin: 28px 0 0;
    font-size: clamp(19px, 2vw, 26px);
    line-height: 1.48;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
}

.hero-line {
    width: 68px;
    height: 3px;
    margin: 33px 0 34px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 18px rgba(229, 173, 50, 0.75);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(100px, 1fr));
    gap: 26px;
    max-width: 680px;
    margin-bottom: 50px;
}

.hero-feature {
    min-height: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    color: var(--gold);
}

.hero-feature:not(:first-child) {
    border-left: 1px solid rgba(229, 173, 50, 0.26);
}


.feature-icon {
    height: 43px;
    display: grid;
    place-items: center;
}

.feature-icon svg {
    width: 54px;
    height: 54px;
     stroke: currentColor;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-feature span {
    max-width: 115px;
    font-size: 11px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    color: #fff;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 220px;
    height: 54px;
    padding: 0 28px;
    border-radius: 2px;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    box-shadow: 0 18px 34px rgba(18, 103, 223, 0.38);
    transition: 0.2s ease;
}

.hero-button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.hero-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Partner bar */

.partner-bar {
    background: #05070b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.partner-container {
    width: 100%;
    max-width: var(--container);
    min-height: 88px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.partner-label {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.partner-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.partner-list span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
    white-space: nowrap;
}

.partner-list svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--gold);
}

/* Trust Section */
.trust-section {
    background: #ffffff;
    padding: 88px 0 78px;
}

.trust-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.trust-heading {
    max-width: 760px;
    margin: 0 auto 86px;
    text-align: center;
}

.trust-heading h2 {
    margin: 0;
    font-family: "Aptos Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: #111d3d;
}

.trust-heading-line {
    display: block;
    width: 44px;
    height: 3px;
    margin: 23px auto 28px;
    border-radius: 999px;
    background: #d99a2b;
}

.trust-heading p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: #667799;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 72px;
}

.trust-card {
    min-height: 248px;
    padding: 36px 36px 32px;
    border: 1px solid #e6ebf3;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.025);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 74, 153, 0.22);
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.075);
}

.trust-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 32px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #e9efff;
    color: #2f4a99;
}

.trust-icon svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: currentColor;
}

.trust-card h3 {
    margin: 0 0 18px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #101a3a;
}

.trust-card p {
    max-width: 485px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.75;
    font-weight: 400;
    color: #637391;
}

/* Services overview */
.services-overview {
    background: #ffffff;
    padding: 92px 0 86px;
}

.services-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.services-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 58px;
}

.section-kicker {
    display: block;
    margin-bottom: 8px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2f4a99;
}

.services-head h2 {
    margin: 0;
    max-width: 640px;
    font-family: "Aptos Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111d3d;
}

.services-head p {
    max-width: 360px;
    margin: 12px 0 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
    color: #65738f;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 270px;
    overflow: hidden;
    border-radius: 0;
    background: #ffffff;
}

.service-row-soft {
    background: #f3f6fc;
}

.service-image {
    min-height: 270px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.045);
}

.service-content {
    min-height: 270px;
    padding: 58px 48px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    margin: 0 0 18px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 850;
    letter-spacing: -0.025em;
    color: #101a3a;
}

.service-content p {
    max-width: 465px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 400;
    color: #65738f;
}

.service-link {
    width: fit-content;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
    color: #17336f;
    transition: color 0.2s ease, gap 0.2s ease;
}

.service-link span {
    font-size: 18px;
    line-height: 0;
    margin-top: -1px;
}

.service-link:hover {
    gap: 11px;
    color: #2f4a99;
}

.services-list .service-row:first-child {
    border-radius: 13px 13px 0 0;
}

.services-list .service-row:last-child {
    border-radius: 0 0 13px 13px;
}

.services-list .service-row:first-child .service-image {
    border-top-left-radius: 13px;
}

.services-list .service-row:first-child .service-content {
    border-top-right-radius: 13px;
}

.services-list .service-row:last-child .service-image {
    border-bottom-left-radius: 13px;
}

.services-list .service-row:last-child .service-content {
    border-bottom-right-radius: 13px;
}

/* Target section */
.target-section {
    background: #eaf1ff;
    padding: 90px 0 88px;
}

.target-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 88px;
}

.target-content h2 {
    max-width: 520px;
    margin: 0 0 26px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: clamp(31px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.04em;
    color: #101a3a;
}

.target-content p {
    max-width: 570px;
    margin: 0 0 34px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: #52627d;
}

.target-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.target-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 650;
    color: #253047;
}

.target-check {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #2f4a99;
    color: #ffffff;
}

.target-check svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
}

.target-image-wrap {
    position: relative;
    min-height: 455px;
    border-radius: 26px;
}

.target-image-wrap::after {
    content: "";
    position: absolute;
    right: -22px;
    bottom: -18px;
    width: 92%;
    height: 92%;
    border-radius: 28px;
    background: rgba(47, 74, 153, 0.06);
    z-index: 1;
}

.target-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 455px;
    display: block;
    object-fit: cover;
    border-radius: 26px 26px 26px 26px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

/* Regional section */
.region-section {
    background: #ffffff;
    padding: 98px 0 92px;
}

.region-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 500px 1fr;
    align-items: center;
    gap: 56px;
}

.region-map {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.region-map-card {
    width: 100%;
    min-height: 440px;
    border-radius: 20px;
    overflow: hidden;
    background: #f4f7fb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(47, 74, 153, 0.1);
}

.home-region-map {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border-radius: 20px;
    z-index: 1;
}

.map-consent {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 440px;
    border-radius: inherit;
    overflow: hidden;
}

.map-consent-placeholder {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    padding: 24px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(47, 74, 153, 0.08), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(47, 74, 153, 0.14);
    text-align: center;
}

.map-consent.is-loaded .map-consent-placeholder {
    display: none;
}

.map-consent:not(.is-loaded) .home-region-map {
    visibility: hidden;
    pointer-events: none;
}

.map-consent-content {
    max-width: 520px;
}

.map-consent-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2F4A99;
}

.map-consent-content h3 {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.2;
    color: var(--color-heading, #111827);
}

.map-consent-content p {
    margin: 0;
    color: var(--color-text-muted, #667085);
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.map-consent-button {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #2F4A99;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.map-consent-button:hover {
    transform: translateY(-1px);
    background: #17336f;
    box-shadow: 0 12px 28px rgba(47, 74, 153, 0.22);
}

.map-consent-button:focus-visible {
    outline: 3px solid rgba(47, 74, 153, 0.28);
    outline-offset: 3px;
}

.map-consent-note {
    margin-top: 12px !important;
    font-size: 0.85rem;
}

.map-consent-note a {
    color: #2F4A99;
    font-weight: 700;
    text-decoration: none;
}

.map-consent-note a:hover {
    text-decoration: underline;
}

@media (max-width: 560px) {
    .map-consent-placeholder {
        padding: 20px;
    }

    .map-consent-content h3 {
        font-size: 1.22rem;
    }
}

.leaflet-container {
    font-family: "Aptos", "Inter", Arial, sans-serif;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.16);
}

.leaflet-popup-content {
    margin: 11px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #14213d;
}

.leaflet-popup-tip {
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.leaflet-control-attribution {
    font-size: 10px;
}

.home-region-city-marker {
    cursor: pointer;
    filter: drop-shadow(0 6px 12px rgba(47, 74, 153, 0.28));
    transition: filter 0.2s ease;
}

.home-region-city-marker:hover {
    filter: drop-shadow(0 8px 18px rgba(47, 74, 153, 0.42));
}

.home-region-tooltip {
    padding: 7px 10px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    color: #101a3a;
}

.home-region-tooltip::before {
    display: none;
}

.region-content {
    max-width: 640px;
}

.region-heading {
    max-width: 520px;
    margin: 0 auto 26px;
    text-align: center;
}

.region-badge {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 7px 12px;
    border: 1px solid #dfe6f3;
    border-radius: 999px;
    background: #f8faff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #101a3a;
}

.region-badge svg {
    width: 12px;
    height: 12px;
    fill: #2f4a99;
}

.region-heading h2 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -0.04em;
    color: #101a3a;
}

.region-text {
    margin-bottom: 30px;
}

.region-text p {
    margin: 0 0 24px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: #52627d;
}

.region-text p:last-child {
    margin-bottom: 0;
}

.region-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
}

.region-card {
    min-height: 200px;
    padding: 31px 34px 28px;
    border-left: 3px solid #2f4a99;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(16, 24, 40, 0.08);
}

.region-card-wide {
    grid-column: 1 / -1;
    max-width: 430px;
    justify-self: center;
    min-height: 132px;
}

.region-card h3 {
    margin: 0 0 20px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.02em;
    color: #101a3a;
}

.region-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.region-card-wide ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 26px;
}

.region-card li {
    position: relative;
    padding-left: 14px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 500;
    color: #52627d;
}

.region-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #a9b8df;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    min-height: 335px;
    background:
        linear-gradient(rgba(13, 37, 84, 0.82), rgba(13, 37, 84, 0.82)),
        url("../images/starteseite/final-cta-background.png") center center / cover no-repeat;
    color: #ffffff;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(47, 74, 153, 0.18), transparent 42%),
        linear-gradient(90deg, rgba(8, 22, 50, 0.42), rgba(8, 22, 50, 0.12), rgba(8, 22, 50, 0.42));
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    min-height: 335px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin: 0 0 28px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
}

.cta-button {
    min-width: 240px;
    height: 58px;
    padding: 0 34px;
    border-radius: 8px;
    background: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 850;
    color: var(--white);
    box-shadow: 0 14px 32px rgba(10, 22, 55, 0.28);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
    box-shadow: 0 18px 42px rgba(10, 22, 55, 0.36);
}

.cta-button svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.cta-contact {
    position: relative;
    padding-left: 40px;
    text-align: left;
}

.cta-contact::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 42px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.24);
}

.cta-contact span {
    display: block;
    margin-bottom: 7px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.cta-contact a {
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 850;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cta-contact a:hover {
    color: #d8a132;
}

/* Footer */
.site-footer {
    background: #14244b;
    color: #ffffff;
    padding: 56px 0 34px;
}

.footer-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-img {
    display: block;
    width: auto;
    height: 100px;
    max-height: 100px;
    object-fit: contain;
}

.footer-description {
    max-width: 430px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.75;
    font-weight: 400;
    text-align: right;
    color: rgba(255, 255, 255, 0.58);
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 70px 0 56px;
    background: rgba(255, 255, 255, 0.11);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 0.8fr;
    gap: 84px;
}

.footer-column h3 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-title-line {
    display: block;
    width: 28px;
    height: 3px;
    margin: 23px 0 28px;
    border-radius: 999px;
    background: #d8a132;
}

.footer-contact-list,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: #d8a132;
}

.footer-contact-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-list a,
.footer-contact-list address {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-social {
    margin-top: 42px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.52);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: #3957b4;
    color: #ffffff;
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 74px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.42);
}


/* Responsive */

@media (max-width: 1100px) {

    /* Regional section */
    .region-section {
        padding: 82px 0;
    }

    .region-container {
        grid-template-columns: 430px 1fr;
        gap: 38px;
    }

    .region-map-card,
    .home-region-map {
        min-height: 390px;
    }

    .region-heading h2 {
        font-size: 31px;
    }

    .region-text p {
        font-size: 15px;
    }

    .region-card {
        padding: 28px 28px 26px;
    }
}

@media (max-width: 1050px) {

    /* Footer */
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 70px;
    }

    .footer-divider {
        margin: 56px 0 48px;
    }
}

@media (max-width: 1024px) {

    /* Header */
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .header-container {
    width: min(100%, var(--container));
    min-height: 96px;
    height: auto;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
        transition: max-height 0.28s ease;
    }

    .mobile-menu.is-open {
        max-height: 620px;
    }

    .mobile-nav {
        padding: 14px 20px 22px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-nav a,
    .mobile-dropdown-toggle {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 14px 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        text-align: left;
        cursor: pointer;
    }

    .mobile-dropdown-menu {
        display: none;
        padding: 4px 0 10px 14px;
    }

    .mobile-dropdown.is-open .mobile-dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-dropdown-menu a {
        padding: 11px 12px;
        border-left: 2px solid rgba(47, 74, 153, 0.18);
        font-size: 14px;
        font-weight: 650;
        color: #344054;
    }

    .mobile-cta {
        margin-top: 10px;
        justify-content: center !important;
        padding: 15px 22px !important;
        border-radius: 999px;
        background: var(--blue) !important;
        color: var(--white) !important;
    }

    /* Hero Section */
    .hero-section {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.74) 55%, rgba(0, 0, 0, 0.9) 100%),
            url("/images/starteseite/hero.png") center / cover no-repeat;
    }

    .hero-container {
        padding: 72px 20px 46px;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-features {
        gap: 16px;
        max-width: 520px;
    }

    .hero-feature {
        min-height: 118px;
        border: 1px solid rgba(229, 173, 50, 0.2) !important;
        background: rgba(0, 0, 0, 0.24);
    }

    .partner-container {
        min-height: auto;
        padding: 28px 20px;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .partner-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 24px;
    }

    /* Trust Section */
    .trust-section {
        padding: 76px 0 68px;
    }

    .trust-heading {
        margin-bottom: 58px;
    }

    .trust-grid {
        gap: 24px;
    }

    .trust-card {
        padding: 32px 28px;
    }

    .trust-card h3 {
        font-size: 20px;
    }

    /* Services overview */
    .services-overview {
        padding: 78px 0;
    }

    .services-head {
        margin-bottom: 46px;
    }

    .service-content {
        padding: 42px 34px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 14px;
    }

    /* Target section */
    .target-section {
        padding: 76px 0;
    }

    .target-container {
        gap: 48px;
    }

    .target-content h2 {
        font-size: 34px;
    }

    .target-image-wrap {
        min-height: 390px;
    }

    .target-image {
        height: 390px;
    }
}

@media (max-width: 900px) {

    /* Regional section */
    .region-container {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .region-map {
        order: 1;
    }

    .region-content {
        order: 2;
        max-width: 100%;
    }

    .region-heading {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .region-badge {
        margin-left: 0;
        margin-right: 0;
    }

    .region-map-card,
    .home-region-map {
        min-height: 340px;
    }

    /* CTA Section */
    .cta-section {
        min-height: 380px;
    }

    .cta-container {
        min-height: 380px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-actions {
        gap: 32px;
    }

    .cta-contact {
        padding-left: 32px;
    }
}


@media (max-width: 820px) {

    /* Target Section */
    .target-section {
        padding: 64px 0;
    }

    .target-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .target-content h2 {
        max-width: 100%;
        margin-bottom: 20px;
        font-size: 31px;
    }

    .target-content p {
        max-width: 100%;
        margin-bottom: 28px;
        font-size: 15px;
        line-height: 1.7;
    }

    .target-list {
        gap: 14px;
    }

    .target-list li {
        align-items: flex-start;
        font-size: 14.5px;
    }

    .target-check {
        margin-top: 1px;
    }

    .target-image-wrap {
        min-height: auto;
    }

    .target-image-wrap::after {
        right: -10px;
        bottom: -10px;
        border-radius: 22px;
    }

    .target-image {
        height: 300px;
        border-radius: 22px;
    }
}

@media (max-width: 760px) {

    /* Trust Section */
    .trust-section {
        padding: 64px 0 56px;
    }

    .trust-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .trust-heading {
        margin-bottom: 42px;
        text-align: left;
    }

    .trust-heading h2 {
        font-size: 30px;
    }

    .trust-heading-line {
        margin-left: 0;
        margin-right: 0;
    }

    .trust-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .trust-card {
        min-height: auto;
        padding: 28px 24px 26px;
        border-radius: 13px;
    }

    .trust-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 26px;
    }

    .trust-icon svg {
        width: 30px;
        height: 30px;
    }

    .trust-card h3 {
        margin-bottom: 14px;
        font-size: 19px;
    }

    .trust-card p {
        font-size: 14px;
    }

    /* Services overview */
    .services-overview {
        padding: 64px 0;
    }

    .services-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-head {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 36px;
    }

    .services-head h2 {
        font-size: 31px;
    }

    .services-head p {
        max-width: 100%;
        margin-top: 0;
        font-size: 15px;
    }

    .services-list {
        gap: 18px;
    }

    .service-row,
    .service-row-soft {
        grid-template-columns: 1fr;
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid #e6ebf3;
        overflow: hidden;
    }

    .service-row-image-right .service-content {
        order: 2;
    }

    .service-row-image-right .service-image {
        order: 1;
    }

    .service-image {
        min-height: 220px;
    }

    .service-content {
        min-height: auto;
        padding: 28px 24px 30px;
    }

    .service-content h3 {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .service-link {
        margin-top: 22px;
    }

    .services-list .service-row:first-child,
    .services-list .service-row:last-child,
    .services-list .service-row:first-child .service-image,
    .services-list .service-row:first-child .service-content,
    .services-list .service-row:last-child .service-image,
    .services-list .service-row:last-child .service-content {
        border-radius: 14px;
    }

    .services-list .service-row .service-content {
        border-radius: 0;
    }

    .services-list .service-row .service-image {
        border-radius: 0;
    }

    /* Footer */
    .site-footer {
        padding: 46px 0 28px;
    }

    .footer-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 26px;
    }

    .footer-description {
        max-width: 100%;
        text-align: left;
        font-size: 13px;
    }

    .footer-divider {
        margin: 42px 0 38px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-title-line {
        margin: 18px 0 22px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-social {
        margin-top: 28px;
    }

    .footer-bottom {
        margin-top: 44px;
        padding-top: 24px;
    }

    .footer-top {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo-img {
        height: 86px;
        max-height: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-description {
        text-align: center;
    }

    .footer-main {
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .header-container {
        min-height: 78px;
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .header-logo-img {
        height: 62px;
        max-height: 72px;
    }
}

@media (max-width: 700px) {

    /* Regional section */
    .region-section {
        padding: 64px 0;
    }

    .region-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
        gap: 36px;
    }

    .region-heading {
        margin-bottom: 22px;
    }

    .region-heading h2 {
        font-size: 30px;
    }

    .region-text {
        margin-bottom: 26px;
    }

    .region-text p {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    .region-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .region-card {
        min-height: auto;
        padding: 26px 24px 24px;
    }

    .region-card-wide {
        grid-column: auto;
        max-width: 100%;
        justify-self: stretch;
    }

    .region-card-wide ul {
        grid-template-columns: 1fr;
    }

    .region-map-card,
    .home-region-map {
        min-height: 340px;
    }
}

@media (max-width: 680px) {

    /* CTA Section */
    .cta-section {
        min-height: auto;
        background:
            linear-gradient(rgba(13, 37, 84, 0.88), rgba(13, 37, 84, 0.88)),
            url("../images/starteseite/final-cta-background.png") center center / cover no-repeat;
    }

    .cta-container {
        width: 100%;
        max-width: var(--container);
        min-height: auto;
        padding: 70px 16px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h2 {
        margin-bottom: 22px;
        font-size: 31px;
        line-height: 1.15;
    }

    .cta-content p {
        margin-left: 0;
        margin-right: 0;
        font-size: 15px;
        line-height: 1.7;
    }

    .cta-actions {
        margin-top: 32px;
        flex-direction: column;
        gap: 22px;
    }

    .cta-button {
        width: 100%;
        min-width: 0;
    }

    .cta-contact {
        padding-left: 0;
        text-align: left;
    }

    .cta-contact::before {
        display: none;
    }

    .cta-contact span {
        margin-bottom: 8px;
    }

    .cta-contact a {
        font-size: 16px;
    }
}

@media (max-width: 640px) {

    /* Hero Section */
    .hero-container {
        padding-top: 58px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 13vw, 58px);
        line-height: 0.95;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 34px;
    }

    .hero-feature {
        min-height: 108px;
        padding: 10px;
    }

    .feature-icon svg {
        width: 42px;
        height: 42px;
    }

    .hero-feature span {
        font-size: 9.5px;
    }

    .hero-button {
        width: 100%;
        min-width: 0;
    }

    .partner-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    /* Target Section */
    .target-image {
        height: 250px;
    }

    .header-logo-img {
        height: 54px;
    }

    .footer-logo-img {
        height: 76px;
    }
}

@media (max-width: 420px) {
}
