/*
Theme Name: WEBSTEIN
Theme URI:
Author: WEBSTEIN
Description: Individuelles WordPress-Theme für die WEBSTEIN IT-Personalberatung.
Version: 1.0
Text Domain: webstein
*/

:root {
    --limestone: #E7E3D9;
    --limestone-2: #DED9CD;
    --paper: #F4F2EC;
    --basalt: #15181E;
    --basalt-2: #1E232C;
    --ink: #1D2128;
    --slate: #59616F;
    --line: #CBC5B7;
    --line-dark: #333A45;
    --blueprint: #1E45D8;
    --blueprint-ink: #12318f;
    --white: #FFFFFF;
    --wrap: 1160px;

    --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
    --body: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--limestone);
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Archivo", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .98rem;
    padding: .85rem 1.5rem;
    border: 1.5px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--blueprint);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blueprint-ink);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--limestone);
}

.btn-light {
    background: var(--limestone);
    color: var(--ink);
}

.btn-light:hover {
    background: #fff;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(247, 244, 238, .90);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(21, 35, 30, .08);
}


/* ---------- Navigation ---------- */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 78px;

    gap: 24px;
}


/* ---------- Logo ---------- */

.brand {
    flex: 0 0 auto;

    color: #15231e;

    font-family: "Archivo", sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: -.055em;
}

.brand span {
    color: #215d4b;
}


/* ---------- Desktop Links ---------- */

.nav-links {
    display: flex;
    align-items: center;

    gap: 26px;

    margin-left: auto;
}

.nav-links a {
    color: #45514d;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;

    transition: color .2s ease;
}

.nav-links a:hover {
    color: #15231e;
}


/* ---------- CTA ---------- */

.nav-cta {
    display: flex;
    align-items: center;

    gap: 16px;
}

.header-cta {
    padding: 14px 20px;

    background: #215d4b;
    border: 1px solid #215d4b;
    border-radius: 999px;

    color: #fff;

    font-size: 14px;
    font-weight: 800;

    transition:
        background .2s ease,
        transform .2s ease;
}

.header-cta:hover {
    background: #174638;
    color: #fff;

    transform: translateY(-2px);
}


/* ---------- Mobile ---------- */

.menu-toggle {
    display: none;

    width: 48px;
    height: 44px;
    padding: 0;

    background: transparent;
    border: 1px solid #15231e;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    background: #15231e;
}

.mobile-menu {
    display: none;
}

/* =========================
   MAIN HERO
========================= */

.career-hero {
    padding: 84px 0 50px;
}

.career-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.career-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #215d4b;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.career-hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #215d4b;
}

.career-hero h1 {
    max-width: 860px;
    margin: 24px 0 28px;

    color: #15231e;

    font-size: clamp(46px, 5.2vw, 74px);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -.075em;
}

.career-hero-lead {
    max-width: 690px;
    margin: 0;

    color: #54615d;

    font-size: 18px;
    line-height: 1.55;
}

.career-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 32px;
}

.career-btn-primary,
.career-btn-soft {
    justify-content: center;

    padding: 14px 20px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;

    transition: transform .2s ease;
}

.career-btn-primary {
    background: #215d4b;
    border-color: #215d4b;
    color: #fff;
}

.career-btn-primary:hover {
    background: #174638;
    border-color: #174638;
    color: #fff;

    transform: translateY(-2px);
}

.career-btn-soft {
    background: #fffdf9;
    border-color: #d9ded9;
    color: #15231e;
}

.career-btn-soft:hover {
    transform: translateY(-2px);
}

.career-hero-micro {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;

    margin-top: 34px;

    color: #59635f;
    font-size: 13px;
}

.career-hero-micro strong {
    color: #15231e;
}


/* ---------- Hero Bildkarte ---------- */

.career-hero-card {
    position: relative;

    padding: 24px;

    background: #fffdf9;
    border: 1px solid #d9ded9;
    border-radius: 34px;

    box-shadow: 0 24px 70px rgba(32, 53, 45, .10);
}

.career-hero-portrait {
    position: relative;

    height: 470px;

    background-image:
        linear-gradient(
            180deg,
            rgba(13, 46, 37, .02),
            rgba(13, 46, 37, .16)
        ),
        url("assets/img/hero-karriere.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 24px;
    overflow: hidden;
}

.career-hero-badge {
    position: absolute;
    top: 46px;
    right: 8px;

    padding: 12px 15px;

    background: #e8a95a;
    color: #15231e;

    border-radius: 15px;

    font-size: 12px;
    font-weight: 900;

    transform: rotate(3deg);
}

.career-hero-quote {
    position: absolute;
    left: -34px;
    bottom: 52px;

    width: 230px;
    padding: 18px;

    background: #174638;
    color: #fff;

    border-radius: 18px;

    box-shadow: 0 24px 70px rgba(32, 53, 45, .10);

    font-size: 14px;
    line-height: 1.45;
}

.career-hero-quote strong {
    display: block;

    margin-bottom: 8px;

    font-size: 20px;
    line-height: 1.1;
}

/* =========================
   TRUSTBAR
========================= */

.trustbar {
    padding: 18px 0;

    background: #174638;
    color: #fff;
}

.trustbar .wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 18px 36px;

    font-size: 13px;
}

.trustbar strong {
    color: #f2c581;
}

/* =========================
   PROOF
========================= */

.proof {
    padding: 10px 0 76px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.proof-item {
    padding: 22px;
    min-height: 120px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255, 253, 249, .75);
    border: 1px solid #d9ded9;
    border-radius: 18px;
}

.proof-item strong {
    display: block;

    color: #15231e;

    font-family: "Archivo", sans-serif;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.proof-item span {
    color: #66706c;

    font-family: "Inter", sans-serif;
    font-size: 13px;
}

/* =========================
   WEBSTEIN UNTERSCHIED
========================= */

.candidate-difference {
    padding: 92px 0;
}

.section-kicker {
    margin-bottom: 14px;

    color: #215d4b;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.candidate-difference h2 {
    max-width: 930px;
    margin: 0 0 22px;

    color: #15231e;

    font-size: clamp(39px, 4.6vw, 63px);
    line-height: 1.01;
    letter-spacing: -.06em;
}

.section-sub {
    max-width: 720px;
    margin: 0;

    color: #66706c;

    font-size: 18px;
    line-height: 1.55;
}


/* ---------- Karten ---------- */

.difference-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    margin-top: 42px;
}

.difference-card {
    min-height: 280px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background: #fffdf9;

    border: 1px solid #d9ded9;
    border-radius: 26px;
}

.difference-card.highlight {
    background: #dfece5;
    border-color: #c9dbd1;
}

.difference-no {
    color: #215d4b;

    font-size: 12px;
    font-weight: 900;
}

.difference-card h3 {
    margin: 52px 0 12px;

    color: #15231e;

    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.difference-card p {
    margin: 0;

    color: #66706c;

    font-size: 15px;
    line-height: 1.55;
}

/* =========================
   UNSER PRINZIP
========================= */

.career-statement {
    padding: 92px 0;

    background: #215d4b;
    color: #fff;
}

.career-statement-kicker {
    margin-bottom: 14px;

    color: #bfddd0;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.career-statement h2 {
    max-width: 1100px;
    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(40px, 4.6vw, 63px);
    line-height: 1.01;
    letter-spacing: -.06em;
}

.career-statement h2 span {
    color: #b9d7ca;
}

.career-statement p {
    max-width: 720px;
    margin: 0;

    color: #d8e6df;

    font-size: 18px;
    line-height: 1.55;
}

/* =========================
   WAS DU BEKOMMST
========================= */

.career-benefits {
    padding: 96px 0;
}

.career-benefits-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: start;
}


/* ---------- Linke Seite ---------- */

.career-benefits-intro h2 {
    max-width: 560px;
    margin: 0 0 22px;

    color: #15231e;

    font-size: clamp(39px, 4.6vw, 63px);
    line-height: 1.01;
    letter-spacing: -.06em;
}

.career-benefits-intro > p {
    max-width: 520px;
    margin: 0;

    color: #66706c;

    font-size: 18px;
    line-height: 1.55;
}


/* ---------- Rechte Seite ---------- */

.career-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.career-benefit-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;

    padding: 24px;

    background: #fffdf9;
    border: 1px solid #d9ded9;
    border-radius: 18px;
}

.career-benefit-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F6D9AA;
    color: #8A5A16;

    border-radius: 14px;

    font-size: 18px;
    font-weight: 800;
}

.career-benefit-item h3 {
    margin: 0 0 7px;

    color: #15231e;

    font-size: 20px;
    line-height: 1.2;
}

.career-benefit-item p {
    max-width: 620px;
    margin: 0;

    color: #66706c;

    font-size: 15px;
    line-height: 1.55;
}

/* =========================
   ABLAUF
========================= */

.career-process {
    padding: 92px 0;
    background: #edf1ed;
}

.career-process h2 {
    max-width: 930px;
    margin: 0 0 22px;

    color: #15231e;

    font-size: clamp(39px, 4.6vw, 63px);
    line-height: 1.01;
    letter-spacing: -.06em;
}


/* ---------- Schritte ---------- */

.career-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;

    margin-top: 42px;
}

.career-process-step {
    min-height: 235px;
    padding: 24px;

    background: #fffdf9;
    border: 1px solid #d9ded9;
    border-radius: 20px;
}

.career-process-number {
    color: #215d4b;

    font-size: 12px;
    font-weight: 900;
}

.career-process-step h3 {
    margin: 42px 0 10px;

    color: #15231e;

    font-size: 22px;
    line-height: 1.15;
}

.career-process-step p {
    margin: 0;

    color: #66706c;

    font-size: 14px;
    line-height: 1.55;
}

/* =========================
   ÜBER WEBSTEIN
========================= */

.about {
    padding: 92px 0;
    background: #f6f4ee;
}

.about-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 64px;
    align-items: center;
}


/* ---------- Grafik links ---------- */

.about-visual {
    width: 100%;

    align-self: start;
    margin-top: 30px;
}

.about-visual img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 28px;
}


/* ---------- Inhalt rechts ---------- */

.about-content {
    max-width: 600px;
}

.about-content h2 {
    margin: 0 0 26px;

    color: #15231e;

    font-size: clamp(39px, 4.6vw, 63px);
    line-height: 1.01;
    letter-spacing: -.06em;
}

.about-content p {
    margin: 0 0 18px;

    color: #66706c;

    font-size: 16px;
    line-height: 1.65;
}


/* ---------- Signatur ---------- */

.about-signature {
    display: flex;
    flex-direction: column;

    margin-top: 34px;
}

.about-signature strong {
    color: #15231e;

    font-size: 16px;
    font-weight: 900;
}

.about-signature span {
    margin-top: 2px;

    color: #66706c;

    font-size: 14px;
}

/* =========================
   WEBSTEIN NETZWERK
========================= */

.referral {
    padding: 92px 0;
    background: #eee6d8;
}

.referral-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.referral h2 {
    max-width: 930px;
    margin: 0 0 22px;

    color: #15231e;

    font-size: clamp(39px, 4.6vw, 63px);
    line-height: 1.01;
    letter-spacing: -.06em;
}

.referral-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    overflow: visible;
}

.referral-visual img {
    display: block;

    width: 120%;
    max-width: none;
    height: auto;

    margin-right: -80px;
}

/* =========================
   FÜR UNTERNEHMEN
========================= */

.company {
    padding: 92px 0;

    background: #f5ddbc;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 50px;
    align-items: center;
}


/* ---------- Linke Seite ---------- */

.company h2 {
    max-width: 760px;
    margin: 0 0 22px;

    color: #15231e;

    font-size: clamp(39px, 4.6vw, 63px);
    line-height: 1.01;
    letter-spacing: -.06em;
}

.company .section-sub {
    max-width: 680px;
}

.company-actions {
    margin-top: 28px;
}


/* ---------- Rechte Box ---------- */

.company-box {
    padding: 34px;

    background: #215d4b;
    color: #ffffff;

    border-radius: 26px;
}

.company-box h3 {
    margin: 0 0 28px;

    color: #ffffff;

    font-size: 26px;
    line-height: 1.15;
}

.company-check {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 14px;
    align-items: start;

    padding: 17px 0;

    border-top: 1px solid rgba(255, 255, 255, .18);

    font-size: 15px;
    line-height: 1.5;
}

.company-dot {
    width: 7px;
    height: 7px;
    margin-top: 7px;

    background: #e8b04b;
    border-radius: 50%;
}

/* =========================
   FAQ
========================= */

.faq {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 58px;
}

.faq-item {
    border-top: 1px solid var(--line);
    padding: 21px 0;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    font-weight: 850;
    cursor: pointer;
}

.faq-a {
    max-height: 0;
    overflow: hidden;

    padding-right: 45px;

    color: var(--muted);

    transition: .25s;
}

.faq-item.open .faq-a {
    max-height: 180px;
    padding-top: 10px;
}

.plus {
    flex-shrink: 0;
    font-size: 22px;
    transition: .2s;
}

.faq > div:last-child {
    padding-right: 28px;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

.faq .kicker {
    margin-bottom: 14px;

    color: #215d4b;

    font-size: 12px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.faq h2 {
    max-width: 450px;
    margin: 0 0 22px;

    color: #15231e;

    font-size: clamp(39px, 4.6vw, 63px);
    line-height: 1.01;
    letter-spacing: -.06em;
}

.faq .sub {
    max-width: 420px;
    margin: 0;

    color: #66706c;

    font-size: 18px;
    line-height: 1.55;
}

/* ---------- section scaffolding ---------- */

section {
    padding: 92px 0;
}

.sec-head {
    max-width: 60ch;
    margin-bottom: 52px;
}

.sec-kicker {
    font-family: var(--display);
    font-weight: 600;
    color: var(--blueprint);
    font-size: .92rem;
    margin-bottom: 14px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.sec-kicker::before {
    content: "";
    width: 26px;
    height: 3px;
    background: var(--blueprint);
    display: inline-block;
}

.sec-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.sec-head p {
    color: var(--slate);
    font-size: 1.15rem;
    margin-top: 18px;
}


/* =========================
   KONTAKT / MARKTCHECK
========================= */

.contact-cta {
    padding: 92px 0;

    background: #174638;
    color: #fff;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 64px;
    align-items: start;
}


/* ---------- Linke Seite ---------- */

.contact-cta-kicker {
    margin-bottom: 14px;

    color: #bcd8cb;

    font-size: 12px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-cta-content h2 {
    max-width: 720px;
    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(39px, 4.6vw, 63px);
    line-height: 1.01;
    letter-spacing: -.06em;
}

.contact-cta-content > p {
    max-width: 680px;
    margin: 0;

    color: #d3dfda;

    font-size: 18px;
    line-height: 1.55;
}

.contact-cta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;

    margin-top: 34px;

    color: #c8d9d1;

    font-size: 13px;
}

.contact-cta-info strong {
    color: #fff;
}

.contact-cta-info a:hover {
    text-decoration: underline;
}


/* ---------- Formular ---------- */

.contact-cta-form form {
    display: grid;
    gap: 10px;
}

.contact-cta-form input,
.contact-cta-form textarea {
    width: 100%;
    margin: 0;
    padding: 18px 16px;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;

    background: #235444;
    color: #fff;

    font-family: "Inter", sans-serif;
    font-size: 15px;

    outline: none;
}

.contact-cta-form input::placeholder,
.contact-cta-form textarea::placeholder {
    color: #bdd1c8;
}

.contact-cta-form input:focus,
.contact-cta-form textarea:focus {
    border-color: #e8a95a;
}

.contact-cta-form textarea {
    min-height: 135px;
    resize: vertical;
}


/* ---------- Upload ---------- */

.contact-upload {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 4px;
}

.contact-upload input[type="file"] {
    display: none;
}

.contact-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 10px 14px;

    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 12px;

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
}

.contact-upload-btn:hover {
    background: rgba(255, 255, 255, .08);
}

.contact-cta .file-name,
.contact-cta .file-hint {
    color: #bdd1c8;
}

.contact-cta .file-name {
    font-size: 13px;
}

.contact-cta .file-hint {
    margin-bottom: 8px;
    font-size: 11px;
}


/* ---------- Submit ---------- */

.contact-submit {
    width: 100%;

    padding: 14px 20px;

    border: 1px solid #e8a95a;
    border-radius: 999px;

    background: #e8a95a;
    color: #2f2415;

    font-family: "Archivo", sans-serif;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition: transform .2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
}


/* ---------- Datenschutz / Meldungen ---------- */

.contact-cta .form-note {
    margin-top: 6px;

    color: #9fb7ad;

    font-size: 11px;
    line-height: 1.45;
}

.contact-cta-info {
    margin-top: 36px;
}

.contact-cta .form-note a {
    text-decoration: underline;
}

.form-ok {
    display: none;

    margin-top: 4px;

    color: #f2c581;

    font-size: 13px;
    font-weight: 800;
}

.contact-cta .form-ok,
.contact-cta .form-error {
    font-size: 13px;
    font-weight: 800;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 34px 0;

    background: #10271f;
    color: #b8c8c1;
}

.footer-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 42px;
}


/* ---------- Logo ---------- */

.footer-brand {
    color: #fff;

    font-family: "Archivo", sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: -.055em;
}

.footer-brand span {
    color: #6f9b89;
}


/* ---------- Claim ---------- */

.footer-claim {
    font-size: 13px;
    line-height: 1.5;

    margin-left: 32px;
}


/* ---------- Links ---------- */

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
}

.footer-links a {
    color: #b8c8c1;

    transition: color .2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links span {
    opacity: .55;
}


/* ---------- Copyright ---------- */

.footer-copy {
    color: #82988f;

    font-size: 12px;

    white-space: nowrap;
}

/* =========================
   RESPONSIVE
========================= */


/* ---------- bis 1142px ---------- */

@media (max-width: 1142px) {

    .career-hero-micro {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 28px;
    }

}


/* ---------- bis 1100px ---------- */

@media (max-width: 1100px) {

    .desktop-break {
        display: none;
    }

}


/* ---------- bis 1000px ---------- */

@media (max-width: 1000px) {

    .nav-links,
    .nav-cta .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;

        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        padding: 16px 28px;

        border-top: 1px solid var(--line);

        font-family: var(--display);
        font-weight: 600;
    }

    .mobile-menu .mobile-cta {
        margin: 16px 28px;
        padding: 14px 20px;

        background: #215d4b;
        color: #fff;

        border: 1px solid #215d4b;
        border-radius: 999px;

        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 800;
        text-align: center;
    }

    .mobile-menu .mobile-cta:hover {
        background: #174638;
        color: #fff;
    }

    .referral-visual img {
        width: 100%;
        margin-right: 0;
    }

}


/* ---------- bis 980px ---------- */

@media (max-width: 980px) {

    .trustbar .wrap {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

}


/* ---------- bis 900px ---------- */

@media (max-width: 900px) {

    .career-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-benefits-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .career-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .difference-cards {
        grid-template-columns: 1fr;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .faq {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .stats .row {
        grid-template-columns: 1fr;
    }

    .stat {
        border-left: none;
        border-top: 1px solid var(--line-dark);
    }

    .stat:first-child {
        border-top: none;
    }

    .diff {
        grid-template-columns: 1fr;
    }

    .diff .cell {
        border-right: none;
    }

    .diff .cell:nth-last-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .step:nth-child(2n) {
        border-right: none;
    }

    .about-grid,
    .contact-cta-grid,
    .foot-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    section {
        padding: 64px 0;
    }

    .vcards {
        grid-template-columns: 1fr;
    }

    .emp {
        grid-template-columns: 1fr;
    }

    .emp .emp-l {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

}


/* ---------- bis 740px ---------- */

@media (max-width: 740px) {

    .footer-row {
        grid-template-columns: 1fr;
    }

    .footer-claim {
        margin-left: 0;
    }

    .referral-grid {
        grid-template-columns: 1fr;
    }

}


/* ---------- bis 630px ---------- */

@media (max-width: 630px) {

    .career-process-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

}


/* ---------- bis 560px ---------- */

@media (max-width: 560px) {

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

}


/* ---------- Barrierefreiheit ---------- */

@media (prefers-reduced-motion: reduce) {

    * {
        transition: none !important;
        scroll-behavior: auto !important;
    }

}
