/* Global Job Service — shared stylesheet */
:root {
    --primary: #175b85;
    --primary-dark: #0f4265;
    --accent: #2ea3f2;
    --accent-soft: #e6f3fc;
    --navy: #0b2436;
    --navy-2: #0e2c42;
    --text: #223140;
    --text-muted: #5b6b7a;
    --bg-alt: #f3f4f9;
    --line: #e4e9ef;
    --radius: 12px;
    --shadow-sm: 0 2px 10px rgba(11, 36, 54, .07);
    --shadow-md: 0 10px 34px rgba(11, 36, 54, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    overflow-x: clip;
    overscroll-behavior-x: none;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: #fff;
    font-size: 16.5px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--navy);
    line-height: 1.22;
    font-weight: 800;
}

img { max-width: 100%; height: auto; }
a { color: var(--primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top bar ---------- */
.topbar {
    background: var(--navy);
    color: #c8d6e2;
    font-size: .85rem;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.topbar a:hover { color: var(--accent); }
.topbar svg { width: 14px; height: 14px; flex: none; }
.topbar-right { display: flex; gap: 22px; }

/* ---------- Navigation ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}
.nav-logo-img { height: 51px; max-width: 228px; object-fit: contain; display: block; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: .97rem;
    transition: color .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 8px;
    transition: background .18s, transform .18s;
}
.nav-cta:hover { background: var(--primary-dark); color: #fff !important; transform: translateY(-1px); }

.nav-burger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav-burger svg { width: 26px; height: 26px; display: block; }

/* ---------- Hero (Home) ---------- */
.hero {
    position: relative;
    background: var(--navy);
    color: #fff;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    filter: brightness(.5);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11, 36, 54, .94) 20%, rgba(15, 66, 101, .55) 62%, rgba(15, 66, 101, .18) 100%);
}
.hero-inner {
    position: relative;
    padding: 110px 0 150px;
    max-width: 720px;
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    margin-bottom: 22px;
}
.hero p {
    font-size: 1.13rem;
    color: #dbe7f0;
    margin-bottom: 34px;
    max-width: 620px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: background .18s, transform .18s, box-shadow .18s;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #1b8fe0; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(46, 163, 242, .35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .55); }
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Hero info chips */
.hero-chips {
    position: relative;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: -66px;
    padding-bottom: 0;
    z-index: 5;
}
.chip {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 260px;
    flex: 1;
    max-width: 380px;
}
.chip-icon {
    width: 52px;
    height: 52px;
    flex: none;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.chip-icon svg { width: 26px; height: 26px; }
.chip h4 { font-size: 1.05rem; margin-bottom: 2px; }
.chip p, .chip a { font-size: .92rem; color: var(--text-muted); margin: 0; text-decoration: none; }
.chip a { color: var(--primary); font-weight: 700; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
    position: relative;
    background: var(--navy);
    color: #fff;
    overflow: hidden;
}
.page-hero .hero-bg { background-position: center; }
.page-hero-inner {
    position: relative;
    padding: 78px 0;
    text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.page-hero p { color: #d4e2ee; margin-top: 10px; font-size: 1.08rem; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: #d9e5ef; }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }

/* Sektion mit sanftem Foto-Hintergrund (Navy-Overlay hält Text lesbar) */
.section-photo { position: relative; overflow: hidden; }
.section-photo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.section-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(11, 36, 54, .96) 30%, rgba(15, 66, 101, .86));
}
.section-photo .container { position: relative; }
.section-photo .stat { background: rgba(255, 255, 255, .07); backdrop-filter: blur(3px); }

.section-head { max-width: 780px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section-navy .section-head p { color: #b9cbda; }

/* ---------- Split layout ---------- */
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}
.split h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); margin-bottom: 20px; }
.split p { color: var(--text-muted); margin-bottom: 16px; }
.split-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.split-img img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Check list */
.check-list { list-style: none; margin: 26px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 26px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--navy); font-size: .97rem; }
.check-list svg { width: 20px; height: 20px; flex: none; color: var(--accent); margin-top: 3px; }

/* ---------- Service cards ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}
.card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: transform .22s, box-shadow .22s;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img { height: 190px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.045); }
.card-body { padding: 26px 26px 30px; flex: 1; }
.card-body h3 { font-size: 1.18rem; margin-bottom: 11px; }
.card-body p { color: var(--text-muted); font-size: .96rem; }

/* Icon cards (expertise) */
.icon-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .22s, box-shadow .22s;
}
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icon-card .chip-icon { margin-bottom: 18px; }
.icon-card h3 { font-size: 1.13rem; margin-bottom: 10px; }
.icon-card p { color: var(--text-muted); font-size: .95rem; }

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.step {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    position: relative;
}
.step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background .4s, box-shadow .4s;
}

/* Scroll-Glow: Schritte leuchten nacheinander auf, wenn sie ins Bild scrollen */
.step.lit {
    animation: stepGlow 1.5s cubic-bezier(.22, 1, .36, 1) both;
    animation-delay: var(--glow-delay, 0s);
}
.step.lit .step-num {
    animation: stepNumGlow 1.5s cubic-bezier(.22, 1, .36, 1) both;
    animation-delay: var(--glow-delay, 0s);
}
@keyframes stepGlow {
    0%   { box-shadow: var(--shadow-sm); border-color: var(--line); }
    35%  { box-shadow: 0 10px 38px rgba(46, 163, 242, .38), 0 0 0 1px rgba(46, 163, 242, .55) inset; border-color: var(--accent); transform: translateY(-5px); }
    100% { box-shadow: 0 6px 22px rgba(46, 163, 242, .14); border-color: rgba(46, 163, 242, .45); transform: translateY(0); }
}
@keyframes stepNumGlow {
    0%   { background: var(--primary); box-shadow: none; }
    35%  { background: var(--accent); box-shadow: 0 0 26px rgba(46, 163, 242, .75); }
    100% { background: var(--primary); box-shadow: 0 0 12px rgba(46, 163, 242, .30); }
}
@media (prefers-reduced-motion: reduce) {
    .step.lit, .step.lit .step-num { animation: none; }
    .step.lit { border-color: rgba(46, 163, 242, .45); box-shadow: 0 6px 22px rgba(46, 163, 242, .14); }
}
.step h3 { font-size: 1.16rem; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: .95rem; }

/* ---------- Stats ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.stat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 38px 30px;
    text-align: center;
}
.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}
.stat h4 { color: #fff; font-size: 1.08rem; margin-bottom: 9px; }
.stat p { color: #b9cbda; font-size: .93rem; margin: 0; }

/* ---------- Alternating feature rows (About) ---------- */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
    padding: 34px 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row h3 { font-size: 1.45rem; margin-bottom: 14px; }
.feature-row p, .feature-row li { color: var(--text-muted); }
.feature-row ul { margin: 12px 0 0 2px; list-style: none; display: grid; gap: 10px; }
.feature-row ul li { display: flex; gap: 10px; align-items: flex-start; }
.feature-row ul svg { width: 19px; height: 19px; flex: none; color: var(--accent); margin-top: 5px; }
.feature-row .split-img img { aspect-ratio: 3 / 2; }
.feature-row.flipped .split-img { order: -1; }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    background: linear-gradient(115deg, var(--primary-dark), var(--primary) 55%, #1d76ad);
    border-radius: 18px;
    color: #fff;
    padding: 62px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 44px;
    align-items: center;
    overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-band p { color: #d5e6f2; max-width: 640px; }
.cta-band .cta-art { width: 190px; flex: none; }
.cta-band .btn { margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 21px 56px 21px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--navy);
    position: relative;
    line-height: 1.4;
}
.faq-q svg {
    position: absolute;
    right: 20px;
    top: 50%;
    translate: 0 -50%;
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: transform .25s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .32s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; min-height: 0; padding: 0 24px; color: var(--text-muted); font-size: .97rem; }
.faq-item.open .faq-a-inner { padding-bottom: 22px; }
.faq-a-inner ul { margin: 10px 0 0 20px; }
.faq-a-inner li { margin-bottom: 6px; }

/* ---------- Contact / forms ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 34px;
    align-items: start;
}
.info-panel {
    background: var(--navy);
    color: #c9d8e4;
    border-radius: var(--radius);
    padding: 38px 34px;
}
.info-panel h3 { color: #fff; font-size: 1.35rem; margin-bottom: 10px; }
.info-panel > p { font-size: .95rem; margin-bottom: 26px; }
.info-item { display: flex; gap: 15px; align-items: flex-start; padding: 15px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.info-item .chip-icon { width: 44px; height: 44px; background: rgba(46, 163, 242, .16); color: var(--accent); }
.info-item .chip-icon svg { width: 21px; height: 21px; }
.info-item h4 { color: #fff; font-size: .98rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: #c9d8e4; font-size: .93rem; text-decoration: none; margin: 0; }
.info-item a:hover { color: var(--accent); }

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 40px;
}
.form-card h2 { font-size: 1.55rem; margin-bottom: 8px; }
.form-card > p { color: var(--text-muted); font-size: .96rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .92rem; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
    padding: 13px 15px;
    border: 1px solid #cfd9e2;
    border-radius: 8px;
    font-family: inherit;
    font-size: .98rem;
    color: var(--text);
    background: #fbfcfe;
    transition: border-color .18s, box-shadow .18s;
    width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(46, 163, 242, .15);
    background: #fff;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 24px; }
.form-note { font-size: .84rem; color: var(--text-muted); margin-top: 14px; text-align: center; }

/* ---------- Danke page ---------- */
.thanks-wrap { min-height: 55vh; display: flex; align-items: center; }
.thanks-card { max-width: 620px; margin: 0 auto; text-align: center; padding: 60px 24px; }
.thanks-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #e7f6ec;
    color: #1e9e50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
}
.thanks-icon svg { width: 42px; height: 42px; }
.thanks-card h1 { font-size: 2rem; margin-bottom: 14px; }
.thanks-card p { color: var(--text-muted); margin-bottom: 30px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b7c8d6; padding: 70px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 44px;
    padding-bottom: 50px;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 18px; }
.footer p { font-size: .93rem; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: #b7c8d6; text-decoration: none; font-size: .93rem; transition: color .16s; }
.footer a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; color: var(--accent); margin-top: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    font-size: .85rem;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.footer-bottom a { font-size: .85rem; }
.footer-credit { color: #7d92a3; }
.footer-credit a { color: #9fb2c1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .split, .feature-row, .contact-grid { grid-template-columns: 1fr; }
    .feature-row.flipped .split-img { order: 0; }
    .steps, .stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-band { grid-template-columns: 1fr; padding: 44px 32px; }
    .cta-band .cta-art { display: none; }
    .hero-inner { padding: 80px 0 120px; }
}

@media (max-width: 820px) {
    .nav-burger { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 18px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-links li { padding: 0 24px; }
    .nav-links a { display: block; padding: 12px 0; }
    .nav-cta { text-align: center; margin-top: 8px; }
    .topbar .container { justify-content: center; }
    .topbar-left { display: none; }
}

@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .check-list { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-card { padding: 28px 22px; }
    .hero-chips { margin-top: -46px; }
    .chip { min-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { justify-content: center; text-align: center; }
}
