/* Entwurf B: Digital Frisch. Off-White, Teal, SaaS-artig. */

:root {
    --teal: #0E8074;
    --teal-hover: #0A6A60;
    --mint: #7FD6C9;
    --mint-soft: #E3F5F1;
    --dunkel: #0F2320;
    --tinte: #14332E;
    --grau: #4E6660;
    --linie: #E1EAE7;
    --bg: #FAFCFB;
    --soft: #F1F7F5;
    --weiss: #FFFFFF;

    --font-head: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Figtree', sans-serif;

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

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

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

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--tinte);
    background: var(--bg);
    -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.1; letter-spacing: -0.015em; }

a { color: inherit; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 700; font-size: 1rem;
    padding: 0.8rem 1.6rem; border-radius: 999px; text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}
.btn-lg { padding: 1rem 2.1rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-hover); }
.btn-ghost { border: 1.5px solid var(--linie); background: var(--weiss); color: var(--tinte); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-invert { background: var(--weiss); color: var(--dunkel); }
.btn-invert:hover { background: var(--mint-soft); }
.btn-outline-light { border: 1.5px solid rgba(255, 255, 255, 0.45); color: #fff; }
.btn-outline-light:hover { border-color: #fff; }

/* Header: floating pill */
.header { position: sticky; top: 14px; z-index: 50; padding: 0 24px; }
.header-pill {
    max-width: var(--shell); margin: 0 auto;
    display: flex; align-items: center; gap: 2rem;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(14px);
    border: 1px solid var(--linie); border-radius: 999px;
    padding: 0.6rem 0.7rem 0.6rem 1.3rem;
    box-shadow: 0 10px 30px rgba(15, 35, 32, 0.07);
}
.logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.logo-word { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--dunkel); }
.logo-word em { font-style: normal; color: var(--teal); }
.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a { font-size: 0.95rem; font-weight: 600; color: var(--grau); text-decoration: none; transition: color 0.2s ease; }
.nav a:hover { color: var(--teal); }
.burger { display: none; }
.mobile-menu { display: none; }

/* Hero */
.hero { position: relative; padding: 6rem 0 4.5rem; overflow: hidden; }
.hero-blob {
    position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 600px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(127, 214, 201, 0.35), rgba(127, 214, 201, 0) 72%);
    pointer-events: none;
}
.hero-inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.badge {
    font-size: 0.875rem; font-weight: 700; color: var(--teal);
    background: var(--mint-soft); border: 1px solid rgba(14, 128, 116, 0.18);
    padding: 0.45rem 1.1rem; border-radius: 999px; margin-bottom: 1.7rem;
    animation: pop 0.5s ease both;
}
.hero h1 {
    font-size: clamp(2.6rem, 5.8vw, 4.4rem); font-weight: 800; color: var(--dunkel);
    margin-bottom: 1.4rem; animation: pop 0.5s ease 0.08s both;
}
.hero h1 .hl { color: var(--teal); }
.hl-amp { width: 0.85em; height: 0.85em; vertical-align: -0.08em; }
.hero-sub {
    font-size: 1.2rem; color: var(--grau); max-width: 38rem; margin-bottom: 2.2rem;
    animation: pop 0.5s ease 0.16s both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: pop 0.5s ease 0.24s both; }
.hero-chips { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-top: 2.4rem; animation: pop 0.5s ease 0.32s both; }
.chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; font-weight: 600; color: var(--tinte);
    background: var(--weiss); border: 1px solid var(--linie);
    padding: 0.5rem 1rem; border-radius: 999px;
}
.chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

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

/* Trust */
.trust { padding: 1rem 0 0; }
.trust-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trust-card {
    background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius);
    padding: 1.5rem; text-align: center;
}
.trust-card strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--teal); }
.trust-card span { font-size: 0.875rem; color: var(--grau); }

/* Sections */
.section { padding: 5.5rem 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 42rem; margin-bottom: 3rem; }
.section-head-center { margin-inline: auto; text-align: center; }
.overline {
    font-weight: 800; font-size: 0.8rem; letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.7rem;
}
.overline-light { color: var(--mint); }
.section h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 800; color: var(--dunkel); }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; }
.card {
    grid-column: span 2;
    background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius);
    padding: 2rem; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { border-color: var(--teal); box-shadow: 0 14px 36px rgba(15, 35, 32, 0.08); }
.card-wide { grid-column: span 4; }
.card-accent { background: var(--mint-soft); border-color: rgba(14, 128, 116, 0.2); }
.card-icon {
    width: 48px; height: 48px; border-radius: 14px; background: var(--mint-soft);
    color: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.card-accent .card-icon { background: var(--weiss); }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.3rem; font-weight: 700; color: var(--dunkel); margin-bottom: 0.6rem; }
.card p { color: var(--grau); font-size: 1rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; list-style: none; }
.step { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: 2rem; }
.step-num { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--teal); display: block; margin-bottom: 1rem; }
.step h3 { font-size: 1.25rem; font-weight: 700; color: var(--dunkel); margin-bottom: 0.6rem; }
.step p { color: var(--grau); font-size: 1rem; }

/* Karriere */
.karriere-panel {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center;
    background: linear-gradient(135deg, #0C7367, #14A392);
    border-radius: 28px; padding: 3.5rem; color: #fff;
}
.karriere-panel h2 { color: #fff; margin-bottom: 1rem; }
.karriere-text { color: rgba(255, 255, 255, 0.82); margin-bottom: 2rem; max-width: 30rem; }
.karriere-panel .hero-actions { justify-content: flex-start; animation: none; }
.job-chips { list-style: none; display: grid; gap: 0.8rem; }
.job-chips li {
    background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px; padding: 0.9rem 1.4rem;
    font-weight: 600; font-size: 0.98rem; text-align: center;
    transition: background-color 0.2s ease;
}
.job-chips li:hover { background: rgba(255, 255, 255, 0.16); }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.quote { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: 2rem; }
.stars { color: var(--teal); letter-spacing: 0.15em; margin-bottom: 1rem; font-size: 0.9rem; }
.quote blockquote { color: var(--tinte); margin-bottom: 1.2rem; font-size: 1rem; }
.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; }
.kontakt address a { color: var(--teal); text-decoration: none; font-weight: 700; }
.kontakt address a:hover { color: var(--teal-hover); }
.kontakt-note { margin-top: 1.6rem; color: var(--grau); font-size: 0.95rem; }
.kontakt-panel { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: 2.2rem; }
.kontakt-panel h3 { font-size: 1.25rem; font-weight: 700; color: var(--dunkel); 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: 700; color: var(--dunkel); }

/* Footer */
.footer { border-top: 1px solid var(--linie); padding: 2.2rem 0; background: var(--weiss); }
.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(--teal); }

/* Responsive */
@media (max-width: 900px) {
    .hero { padding: 4rem 0 3.5rem; }
    .trust-cards { grid-template-columns: 1fr 1fr; }
    .bento { grid-template-columns: 1fr; }
    .card, .card-wide { grid-column: span 1; }
    .steps, .quotes { grid-template-columns: 1fr; }
    .karriere-panel { grid-template-columns: 1fr; padding: 2.2rem; }
    .kontakt { grid-template-columns: 1fr; gap: 2.5rem; }

    .nav, .header-cta { display: none; }
    .burger {
        display: flex; flex-direction: column; gap: 6px; margin-left: auto;
        background: none; border: none; cursor: pointer; padding: 10px;
    }
    .burger span { width: 24px; height: 2px; background: var(--dunkel); 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;
        margin: 0.6rem auto 0; max-width: var(--shell);
        background: var(--weiss); border: 1px solid var(--linie); border-radius: 22px;
        padding: 1.2rem 1.6rem;
        box-shadow: 0 14px 34px rgba(15, 35, 32, 0.1);
    }
    .mobile-menu a { text-decoration: none; font-weight: 700; color: var(--dunkel); padding: 0.7rem 0; }
    .mobile-menu a.btn { color: #fff; margin-top: 0.6rem; }
}
