*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --petrol: #005a6f;
    --petrol-dark: #003f4f;
    --petrol-light: #e6f0f3;
    --petrol-mid: #cce0e5;
    --orange: #ff8f1c;
    --orange-dark: #e07510;
    --white: #ffffff;
    --text: #1a2e35;
    --text-light: #5a7880;
    --radius: 14px;
    --radius-lg: 22px;
    --sh-bordeaux: #7a1835;
    --sh-bordeaux-light: #f9f0f2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
    height: 60px;
    background: rgba(0, 90, 111, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo {
    font-size: 1.35rem;
    line-height: 1;
    text-decoration: none;
}
.nav-logo .doc {
    color: var(--white);
    font-weight: 900;
}
.nav-logo .sh {
    color: var(--orange);
    font-weight: 900;
}

.nav-cta {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.15s;
}
.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100svh;
    background: var(--petrol);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px clamp(1.25rem, 7vw, 5rem) 80px;
}

/* Chevron SVG pattern — mimics the PDF cover */
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 L15 10 L30 30 L45 10 L60 30' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M0 50 L15 30 L30 50 L45 30 L60 50' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero-logos-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    animation: fadeUp 0.6s 0.1s both;
}

.hero-logo-docsh {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1;
}
.hero-logo-docsh .doc {
    color: var(--white);
}
.hero-logo-docsh .sh {
    color: var(--orange);
}

.hero-logo-sh {
    height: clamp(60px, 9vw, 96px);
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.82;
}

.hero-text-col {
    min-width: 0;
}

@media (max-width: 720px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-logos-col {
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
    }
    .hero-logo-docsh {
        font-size: 1.8rem;
    }
    .hero-logo-sh {
        height: 48px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s both;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    animation: fadeUp 0.6s 0.2s both;
}

.hero h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 580px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.35s both;
}
.hero-sub strong {
    color: var(--white);
    font-weight: 700;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.45s both;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 400;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-tag svg {
    flex-shrink: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 143, 28, 0.4);
    transition:
        background 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
    animation: fadeUp 0.6s 0.55s both;
}
.hero-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 143, 28, 0.5);
}
.hero-cta svg {
    transition: transform 0.2s;
}
.hero-cta:hover svg {
    transform: translateX(3px);
}

/* ─── SECTIONS ─── */
.section {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 7vw, 5rem);
}

.section-inner {
    max-width: 960px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--petrol);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section-body {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 680px;
}

.section-link {
    color: var(--petrol);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--petrol-mid);
    transition:
        color 0.2s,
        border-color 0.2s;
}
.section-link:hover {
    color: var(--orange);
    border-color: var(--orange);
}

/* ─── ÜBER DIE STELLE ─── */
.ueber {
    background: var(--white);
}

.ueber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
@media (max-width: 640px) {
    .ueber-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--petrol-light);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    border-left: 3px solid var(--petrol);
}
.stat-card .stat-val {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--petrol);
    margin-bottom: 0.2rem;
}
.stat-card .stat-label {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ─── NAV CO-BRAND ─── */
.nav-cobrand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}
.nav-cobrand-sep {
    font-size: 0.9rem;
    opacity: 0.4;
}
.nav-cobrand-sh-img {
    height: 26px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.65;
    transition: opacity 0.2s;
}
.nav-cobrand-sh-img:hover {
    opacity: 0.9;
}
@media (max-width: 520px) {
    .nav-cobrand {
        display: none;
    }
}

/* ─── GETRAGEN VON ─── */
.getragen-von {
    background: var(--petrol-light);
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (max-width: 640px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--petrol-mid);
    border-top: 4px solid var(--petrol);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 90, 111, 0.1);
}
.partner-card--sh {
    border-top-color: var(--sh-bordeaux);
}

.partner-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 0.25rem 0.7rem;
    margin-bottom: 1rem;
    color: var(--petrol);
    background: var(--petrol-light);
    border: 1px solid var(--petrol-mid);
}
.partner-card--sh .partner-badge {
    color: var(--sh-bordeaux);
    background: var(--sh-bordeaux-light);
    border-color: rgba(122, 24, 53, 0.2);
}

.partner-logo-docsh {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.85rem;
    display: block;
}
.partner-logo-docsh .doc {
    color: var(--petrol);
}
.partner-logo-docsh .sh {
    color: var(--orange);
}

.partner-logo-img {
    height: 38px;
    width: auto;
    display: block;
    margin-bottom: 0.85rem;
}

.partner-desc {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
}

/* ─── FÖRDERINSTRUMENTE ─── */
.foerder {
    background: var(--white);
}

.foerder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.1rem;
    margin-top: 2.5rem;
}

.foerder-card {
    background: var(--petrol-light);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    border: 1px solid var(--petrol-mid);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    position: relative;
}
.foerder-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 90, 111, 0.1);
}

.foerder-card--active {
    background: var(--white);
    border: 2px solid var(--orange);
}
.foerder-card--active::after {
    content: "Diese Stelle";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--orange);
    border-radius: 100px;
    padding: 0.2rem 0.6rem;
}

.foerder-num {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.foerder-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--petrol);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    padding-right: 4rem;
}
.foerder-card--active .foerder-title {
    color: var(--petrol);
}

.foerder-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-light);
}

.foerder-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 0.85rem;
}
.foerder-meta .foerder-status,
.foerder-meta .foerder-link {
    margin-top: 0;
}

.foerder-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.85rem;
    color: var(--petrol);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--petrol-mid);
    padding-bottom: 1px;
    transition:
        color 0.2s,
        border-color 0.2s;
}
.foerder-link:hover {
    color: var(--orange);
    border-color: var(--orange);
}
.foerder-link svg {
    transition: transform 0.2s;
}
.foerder-link:hover svg {
    transform: translateX(2px);
}

.foerder-status {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--petrol);
    background: var(--petrol-mid);
    border-radius: 100px;
    padding: 0.22rem 0.7rem;
}

/* ─── AUFGABEN ─── */
.aufgaben {
    background: var(--petrol-light);
}

.aufgaben-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.task-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--petrol-mid);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.task-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.task-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 90, 111, 0.1);
}
.task-card:hover::before {
    transform: scaleX(1);
}

.task-icon {
    width: 44px;
    height: 44px;
    background: var(--petrol-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.task-icon svg {
    width: 22px;
    height: 22px;
    color: var(--petrol);
}

.task-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--petrol);
    margin-bottom: 0.5rem;
}

.task-desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-light);
}

/* ─── ANFORDERUNGEN ─── */
.anforderungen {
    background: var(--white);
}

.req-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (max-width: 700px) {
    .req-blocks {
        grid-template-columns: 1fr;
    }
}

.req-block {
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.req-block--must {
    background: var(--petrol);
    border: 2px solid var(--petrol);
}

.req-block--ideal {
    background: var(--petrol-light);
    border: 1px solid var(--petrol-mid);
}

.req-block-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.req-block--must .req-block-label {
    color: var(--orange);
}
.req-block--ideal .req-block-label {
    color: var(--petrol);
}

.req-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}
.req-block--must .req-list li {
    color: rgba(255, 255, 255, 0.88);
}
.req-block--must .req-list li strong {
    color: var(--white);
}
.req-block--ideal .req-list li {
    color: var(--text);
}
.req-block--ideal .req-list li strong {
    color: var(--petrol);
}

.req-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.req-block--must .req-check {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.req-block--ideal .req-check {
    background: var(--petrol-mid);
    border: 1px solid var(--petrol);
}
.req-check svg {
    width: 10px;
    height: 10px;
}
.req-block--must .req-check svg {
    color: var(--orange);
}
.req-block--ideal .req-check svg {
    color: var(--petrol);
}

/* ─── KONTAKT ─── */
.kontakt {
    background: var(--white);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 460px;
}

.kontakt-card {
    background: var(--petrol-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--petrol-mid);
}

.kontakt-card-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--petrol);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--petrol-mid);
}

.kontakt-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--petrol);
    margin-bottom: 0.25rem;
}
.kontakt-org {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.kontakt-link {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 0.4rem;
    color: var(--petrol);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--petrol-mid);
    padding-bottom: 1px;
    transition:
        color 0.2s,
        border-color 0.2s;
}
.kontakt-link + .kontakt-link {
    margin-top: 0.6rem;
}
.kontakt-link:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.kontakt-note {
    margin-top: 2rem;
    background: var(--petrol);
    border-radius: var(--radius);
    padding: 1.4rem 1.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.65;
}
.kontakt-note strong {
    color: var(--white);
    font-weight: 700;
}

.kontakt-cta-wrap {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.kontakt-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--orange);
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(255, 143, 28, 0.35);
    transition:
        background 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
}
.kontakt-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255, 143, 28, 0.45);
}

/* ─── FOOTER ─── */
footer {
    background: var(--petrol-dark);
    padding: 2rem clamp(1.25rem, 7vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo-docsh {
    font-size: 1.2rem;
    line-height: 1;
}
.footer-logo-docsh .doc {
    color: var(--white);
    font-weight: 900;
}
.footer-logo-docsh .sh {
    color: var(--orange);
    font-weight: 900;
}

.footer-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.2rem;
    font-weight: 300;
}

.footer-logo-sh-img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.2s;
}
.footer-logo-sh-img:hover {
    opacity: 0.85;
}

.footer-copy {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── DIVIDER WAVE ─── */
.wave-divider {
    display: block;
    width: 100%;
    line-height: 0;
}
.wave-divider svg {
    display: block;
    width: 100%;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
    .hero {
        padding-bottom: 60px;
    }
    .aufgaben-grid {
        grid-template-columns: 1fr;
    }
}
