
:root {
    --blue: #0047d9;
    --blue-dark: #003ca8;
    --black: #090d12;
    --text: #10141a;
    --muted: #5b6370;
    --light: #f6f8fb;
    --border: #e4e8ef;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

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

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

.wrap {
    width: min(1380px, calc(100% - 72px));
    margin: 0 auto;
}

.topbar {
    background: var(--blue-dark);
    color: white;
    font-size: 14px;
}

.topbar .wrap {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar span {
    margin-right: 28px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header .wrap {
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 292px;
    height: 78px;
    object-fit: contain;
    object-position: left center;
}

.nav {
    display: flex;
    gap: 42px;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav a {
    position: relative;
    padding: 43px 0 34px;
}

.nav a.active,
.nav a:hover {
    color: var(--blue);
}

.nav a.active::after,
.nav a:hover::after {
    content: "";
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
}

.menu-toggle {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    background: var(--blue);
    border: 2px solid var(--blue);
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.btn.outline {
    background: white;
    color: var(--blue);
}

.btn.ghost {
    background: transparent;
    border-color: rgba(255,255,255,.55);
}

.hero {
    position: relative;
    min-height: 374px;
    overflow: hidden;
    background: #070b10;
}

.hero.large {
    min-height: 472px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,11,16,.92), rgba(7,11,16,.62) 38%, rgba(7,11,16,.18) 74%, rgba(7,11,16,.06));
}

.hero .wrap {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 610px;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero .eyebrow {
    color: white;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.hero h1.upper {
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--blue);
}

.hero p {
    margin: 0 0 30px;
    color: rgba(255,255,255,.92);
    font-size: 17px;
    line-height: 1.65;
}

.service-strip {
    color: white;
    background: linear-gradient(90deg, #111820, #07090d);
}

.service-strip .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.strip-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 30px 30px;
    border-right: 1px solid rgba(255,255,255,.16);
}

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

.icon {
    color: var(--blue);
    font-size: 42px;
    line-height: 1;
}

.strip-item h3 {
    margin: 0 0 7px;
    font-size: 15px;
    text-transform: uppercase;
}

.strip-item p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.45;
}

.section {
    padding: 78px 0;
}

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

.section-title {
    position: relative;
    margin: 0 0 48px;
    text-align: center;
    font-size: 32px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 34px;
    height: 3px;
    background: var(--blue);
}

.intro-grid {
    display: grid;
    grid-template-columns: .78fr 1.45fr;
    gap: 58px;
    align-items: center;
}

.intro-grid h2,
.text-col h2,
.contact-copy h1 {
    margin: 0 0 22px;
    font-size: 42px;
    line-height: 1.15;
}

.intro-grid p,
.text-col p,
.contact-copy p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

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

.feature-card,
.service-card,
.project-card,
.stat-card {
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(8,20,40,.05);
}

.feature-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.feature-card div {
    padding: 20px;
}

.feature-card small {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
}

.feature-card h3 {
    margin: 10px 0 0;
    font-size: 18px;
}

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

.service-card img {
    width: 100%;
    height: 155px;
    object-fit: cover;
}

.service-card .inside {
    padding: 28px;
}

.service-card h3 {
    margin: 18px 0 12px;
    font-size: 22px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
}

.service-card ul {
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    margin: 10px 0;
    padding-left: 24px;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 900;
}

.service-card a {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
}

.benefit-bar {
    padding: 34px 0;
    background: #f8fafc;
}

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

.benefit {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 12px 26px;
    border-right: 1px solid #d9dfe8;
}

.benefit:last-child {
    border-right: 0;
}

.benefit h3 {
    margin: 0 0 6px;
}

.benefit p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-grid img {
    height: 380px;
    width: 100%;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.stat-card {
    padding: 32px;
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--blue);
    font-size: 28px;
    margin-bottom: 8px;
}

.reference-request {
    max-width: 860px;
    margin: 0 auto;
    padding: 54px;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(8,20,40,.05);
}

.reference-request h2 {
    margin: 0 0 16px;
    font-size: 34px;
}

.reference-request p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.jobs a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 900;
}

.jobs span {
    color: var(--muted);
    font-weight: 400;
}

.application-box {
    padding: 42px;
    text-align: center;
    background: var(--light);
}

.contact-section {
    padding: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr 1fr;
}

.contact-copy {
    padding: 70px 46px 70px max(46px, calc((100vw - 1380px) / 2 + 36px));
    color: white;
    background: #090d12;
}

.contact-copy p {
    color: rgba(255,255,255,.82);
}

.contact-details {
    margin-top: 28px;
    line-height: 1.9;
}

.contact-form {
    padding: 70px 36px;
}

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

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    padding: 17px;
    font: inherit;
    background: white;
}

textarea {
    min-height: 170px;
    margin-bottom: 18px;
    resize: vertical;
}

.map {
    background: url("map-placeholder.jpg") center / cover no-repeat;
}

.footer {
    padding-top: 66px;
    color: white;
    background: linear-gradient(135deg, #071018, #002b75);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .9fr 1fr;
    gap: 54px;
    padding-bottom: 44px;
}

.footer-logo {
    width: 275px;
    height: 86px;
    object-fit: contain;
    object-position: left center;
    padding: 8px;
    background: white;
}

.footer p,
.footer li {
    color: rgba(255,255,255,.75);
    line-height: 1.75;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer h4 {
    margin-top: 0;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.65);
}

@media (max-width: 1180px) {
    .nav {
        gap: 22px;
    }

    .card-grid,
    .service-strip .wrap,
    .benefit-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid,
    .about-grid,
    .career-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .map {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .wrap {
        width: min(100% - 32px, 1380px);
    }

    .topbar {
        display: none;
    }

    .header .wrap {
        height: 82px;
    }

    .logo {
        width: 210px;
        height: 62px;
    }

    .menu-toggle {
        display: block;
        border: 0;
        background: transparent;
        font-size: 28px;
    }

    .nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 32px;
        background: white;
        border-top: 1px solid var(--border);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        width: 100%;
        padding: 15px 0;
    }

    .nav a.active::after,
    .nav a:hover::after {
        bottom: 5px;
    }

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

    .card-grid,
    .service-strip .wrap,
    .benefit-grid,
    .feature-grid,
    .stats-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-copy,
    .contact-form {
        padding: 48px 24px;
    }

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


/* =========================================================
   Anpassungen Version 2
   ========================================================= */

.home-hero .hero-bg {
    object-position: center center;
}

.service-card {
    min-height: 365px;
}

.service-card .inside {
    min-height: 365px;
}

.service-card .inside > .icon {
    margin-bottom: 22px;
}

.about-grid img {
    object-position: center;
}

.contact-page {
    background: #ffffff;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-copy-box {
    padding: 50px;
    color: white;
    background: #090d12;
}

.contact-copy-box h1 {
    margin: 0 0 22px;
    font-size: 42px;
    line-height: 1.15;
}

.contact-copy-box p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.75;
}

.contact-copy-box .eyebrow {
    color: white;
}

.contact-form-box {
    padding: 50px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 20, 40, 0.05);
}

.map-small-section {
    padding: 0 0 78px;
    background: #ffffff;
}

.map-small {
    height: 340px;
    border: 1px solid var(--border);
    background: url("map-placeholder.jpg") center / cover no-repeat;
}

@media (max-width: 1180px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .contact-copy-box,
    .contact-form-box {
        padding: 32px 22px;
    }

    .map-small {
        height: 260px;
    }
}


/* =========================================
   Version 3 Anpassungen
   ========================================= */

.hero.large .hero-bg {
    object-position: center top;
}


/* =========================================
   Version 4 Anpassungen
   ========================================= */

.about-grid img {
    object-fit: cover;
    object-position: center center;
}


/* =========================================
   Version 6 Über Uns Anpassung
   ========================================= */

.about-grid ul {
    margin: 18px 0 28px;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.9;
}

.about-grid h3 {
    margin-top: 26px;
    margin-bottom: 10px;
    font-size: 22px;
}


/* =========================================
   Version 7
   Maps entfernt
   ========================================= */

.contact-page {
    padding-bottom: 78px;
}
