/* Entwurf A: Klar & Seriös. Weiß, tiefes Blau, große Typografie. */

:root {
    --blau: #16407C;
    --blau-tief: #0E2A52;
    --akzent: #2F6FED;
    --akzent-hover: #1F5AD1;
    --tinte: #10203A;
    --grau: #52617A;
    --linie: #DDE4EF;
    --tint: #F4F7FC;
    --weiss: #FFFFFF;

    --font-head: 'Schibsted Grotesk', sans-serif;
    --font-body: 'Public Sans', sans-serif;

    --shell: 1160px;
    --radius: 14px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--tinte);
    background: var(--weiss);
    -webkit-font-smoothing: antialiased;
}

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; }

a { color: inherit; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 600; font-size: 1rem;
    padding: 0.8rem 1.6rem; border-radius: 10px; text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--akzent); color: #fff; }
.btn-primary:hover { background: var(--akzent-hover); }
.btn-ghost { border: 1.5px solid var(--linie); color: var(--blau); background: transparent; }
.btn-ghost:hover { border-color: var(--akzent); color: var(--akzent); }

/* Header */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--linie);
}
.header-inner { display: flex; align-items: center; gap: 2.5rem; height: 76px; }
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo-word { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; color: var(--blau-tief); }
.logo-word em { font-style: normal; color: var(--akzent); }
.nav { display: flex; gap: 1.8rem; margin-left: auto; }
.nav a {
    font-size: 0.95rem; font-weight: 500; color: var(--grau); text-decoration: none;
    transition: color 0.2s ease;
}
.nav a:hover { color: var(--blau); }
.burger { display: none; }
.mobile-menu { display: none; }

/* Hero */
.hero { padding: 5.5rem 0 5rem; overflow: hidden; }
.hero-grid {
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center;
}
.badge {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-size: 0.875rem; font-weight: 600; color: var(--blau);
    background: var(--tint); border: 1px solid var(--linie);
    padding: 0.45rem 1rem; border-radius: 999px; margin-bottom: 1.6rem;
    animation: rise 0.6s ease both;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--akzent); }
.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 800; color: var(--blau-tief);
    margin-bottom: 1.4rem; animation: rise 0.6s ease 0.08s both;
}
.hero h1 .hl { color: var(--akzent); }
.hero-sub {
    font-size: 1.2rem; color: var(--grau); max-width: 34rem; margin-bottom: 2.2rem;
    animation: rise 0.6s ease 0.16s both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: rise 0.6s ease 0.24s both; }

.hero-visual { position: relative; min-height: 380px; animation: rise 0.7s ease 0.2s both; }
.hero-ring {
    position: absolute; inset: 10% 0 0 12%; border-radius: 50%;
    border: 1.5px dashed var(--linie); z-index: 0;
}
.hero-card {
    position: relative; background: var(--weiss); border: 1px solid var(--linie);
    border-radius: var(--radius); box-shadow: 0 18px 50px rgba(14, 42, 82, 0.10);
    z-index: 1;
}
.hero-card-main { padding: 2rem; max-width: 320px; margin-left: auto; }
.hero-card-main svg { width: 44px; height: 44px; margin-bottom: 1.1rem; }
.hero-card-main p { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--blau-tief); margin-bottom: 0.4rem; }
.hero-card-main p em { font-style: normal; color: var(--akzent); }
.hero-card-main span { font-size: 0.9rem; color: var(--grau); line-height: 1.5; display: block; }
.hero-card-small {
    display: flex; gap: 0.8rem; align-items: center; padding: 1.1rem 1.4rem;
    max-width: 280px; margin-top: 1.4rem;
}
.hero-card-small .check {
    width: 30px; height: 30px; border-radius: 50%; background: var(--tint); color: var(--akzent);
    display: inline-flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0;
}
.hero-card-small p { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--blau-tief); line-height: 1.35; }
.hero-card-small p span { font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: var(--grau); }

@keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .badge, .hero h1, .hero-sub, .hero-actions, .hero-visual { animation: none; }
    html { scroll-behavior: auto; }
}

/* Trust */
.trust { border-block: 1px solid var(--linie); background: var(--tint); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.6rem 1rem; text-align: center; }
.trust-item + .trust-item { border-left: 1px solid var(--linie); }
.trust-item strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--blau-tief); }
.trust-item span { font-size: 0.875rem; color: var(--grau); }

/* Sections */
.section { padding: 5.5rem 0; }
.section-tint { background: var(--tint); border-block: 1px solid var(--linie); }
.section-head { max-width: 40rem; margin-bottom: 3rem; }
.overline {
    font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--akzent);
    margin-bottom: 0.7rem;
}
.section h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; color: var(--blau-tief); }

/* USP */
.usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.usp {
    border: 1px solid var(--linie); border-radius: var(--radius); padding: 2rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.usp:hover { border-color: var(--akzent); box-shadow: 0 12px 34px rgba(14, 42, 82, 0.08); }
.usp-icon {
    width: 48px; height: 48px; border-radius: 12px; background: var(--tint);
    color: var(--blau); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}
.usp-icon svg { width: 26px; height: 26px; }
.usp h3 { font-size: 1.25rem; font-weight: 700; color: var(--blau-tief); margin-bottom: 0.6rem; }
.usp p { color: var(--grau); font-size: 1rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; list-style: none; counter-reset: step; }
.step { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: 2rem; }
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--blau); color: #fff;
    font-family: var(--font-head); font-weight: 700; margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.2rem; font-weight: 700; color: var(--blau-tief); margin-bottom: 0.6rem; }
.step p { color: var(--grau); font-size: 1rem; }

/* Karriere */
.karriere { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.karriere-copy h2 { margin-bottom: 1rem; }
.karriere-copy > p { color: var(--grau); margin-bottom: 2rem; max-width: 32rem; }
.karriere-list { list-style: none; display: grid; gap: 0.8rem; }
.karriere-list li {
    border: 1px solid var(--linie); border-left: 4px solid var(--akzent);
    border-radius: 10px; padding: 1.1rem 1.4rem;
    font-family: var(--font-head); font-weight: 600; color: var(--blau-tief);
    background: var(--weiss);
    transition: box-shadow 0.2s ease;
}
.karriere-list li:hover { box-shadow: 0 10px 26px rgba(14, 42, 82, 0.08); }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: 2rem; }
.quote blockquote { color: var(--tinte); margin-bottom: 1.2rem; font-size: 1rem; }
.quote blockquote::before { content: "„"; font-family: var(--font-head); font-size: 2.2rem; line-height: 0; color: var(--akzent); display: block; margin-bottom: 0.9rem; }
.quote figcaption { font-size: 0.875rem; font-weight: 600; color: var(--grau); }

/* Kontakt */
.kontakt { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.kontakt address { font-style: normal; display: grid; gap: 1rem; margin-top: 1.6rem; color: var(--tinte); }
.kontakt address a { color: var(--blau); text-decoration: none; font-weight: 600; }
.kontakt address a:hover { color: var(--akzent); }
.kontakt-note { margin-top: 1.6rem; color: var(--grau); font-size: 0.95rem; }
.kontakt-panel {
    background: var(--tint); border: 1px solid var(--linie); border-radius: var(--radius);
    padding: 2.2rem;
}
.kontakt-panel h3 { font-size: 1.2rem; font-weight: 700; color: var(--blau-tief); margin-bottom: 1.2rem; }
.kontakt-panel ul { list-style: none; margin-bottom: 1.8rem; }
.kontakt-panel li { display: flex; justify-content: space-between; padding: 0.65rem 0; border-bottom: 1px solid var(--linie); font-size: 0.98rem; }
.kontakt-panel li span:first-child { color: var(--grau); }
.kontakt-panel li span:last-child { font-weight: 600; color: var(--blau-tief); }

/* Footer */
.footer { border-top: 1px solid var(--linie); padding: 2.2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer p { font-size: 0.875rem; color: var(--grau); }
.footer p a { color: var(--grau); text-decoration: none; }
.footer p a:hover { color: var(--blau); }

/* Responsive */
@media (max-width: 900px) {
    .hero-grid, .karriere, .kontakt { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero { padding: 3.5rem 0; }
    .hero-visual { min-height: 0; }
    .hero-card-main { margin-left: 0; }
    .usp-grid, .quotes, .steps { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(3) { border-left: none; }
    .trust-item:nth-child(n+3) { border-top: 1px solid var(--linie); }

    .nav, .header-cta { display: none; }
    .burger {
        display: flex; flex-direction: column; gap: 6px; margin-left: auto;
        background: none; border: none; cursor: pointer; padding: 8px;
    }
    .burger span { width: 24px; height: 2px; background: var(--blau-tief); transition: transform 0.2s ease; }
    body.menu-open .burger span:first-child { transform: translateY(4px) rotate(45deg); }
    body.menu-open .burger span:last-child { transform: translateY(-4px) rotate(-45deg); }
    body.menu-open .mobile-menu {
        display: flex; flex-direction: column; gap: 0.4rem;
        padding: 1rem 24px 1.6rem; border-top: 1px solid var(--linie); background: var(--weiss);
    }
    .mobile-menu a { text-decoration: none; font-weight: 600; color: var(--blau-tief); padding: 0.7rem 0; }
    .mobile-menu a.btn { color: #fff; margin-top: 0.6rem; }
}
