:root {
    --red: #c74e27;
    --red-dark: #9c3a1a;
    --red-on-dark: #d15a30; /* hellere Rot-Variante: erreicht 4,5:1 auf --ink */
    --red-light: rgba(199, 78, 39, 0.07);
    --red-glow: rgba(199, 78, 39, 0.18);
    --white: #ffffff;
    --cream: #ffffff;
    --cream2: #f4f4f5;
    --warm-gray: #e4e4e7;
    --border: #e4e4e7;
    --border2: #a1a1aa;
    --ink: #09090b;
    --ink2: #18181b;
    --body: #3f3f46;
    --muted: #6d6d76; /* min. 4,5:1 auch auf --cream2 (WCAG AA) */
    --light-text: #a1a1aa;
    --sans: "Plus Jakarta Sans", sans-serif;
    --serif: "Barlow", sans-serif;
    --section-v: 120px;
    --section-v-sm: 80px;
    --shadow-sm: 0 2px 8px rgba(26, 23, 20, 0.06);
    --shadow-md: 0 6px 24px rgba(26, 23, 20, 0.09);
    --shadow-lg: 0 16px 56px rgba(26, 23, 20, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}
body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    line-height: 1.6;
}
a,
button {
    touch-action: manipulation;
}
body.menu-open {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section[id],
[id="hero"],
[id="intro-strip"] {
    scroll-margin-top: 110px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 4px;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 48px;
}

/* TYPE */
.eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red-dark); /* --red erreicht auf --cream2 nur 4,2:1 */
    margin-bottom: 20px;
}
.eyebrow--muted {
    color: var(--muted);
}
.eyebrow--white {
    color: rgba(255, 255, 255, 0.6);
}

.display {
    font-family: var(--serif);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: -0.01em;
}
.section-h {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800 !important;
    font-style: normal !important;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 24px;
}
.lead {
    font-size: 18px;
    line-height: 1.82;
    color: var(--body);
    font-weight: 400;
}
.body-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
    font-weight: 400;
}

.section-h + .lead,
.section-h + .body-text,
.section-h + p {
    margin-top: 20px;
}
.eyebrow + .section-h,
.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3 {
    margin-top: 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 34px;
    border: none;
    cursor: pointer;
    transition: all 0.22s;
    white-space: nowrap;
    border-radius: 0;
}
.btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.hero-actions,
.stoerer-btns,
.urgency-btns,
.cta-options {
    margin-top: 40px;
}
.btn--red {
    background: var(--red);
    color: var(--white);
}
.btn--red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px var(--red-glow);
}
.btn--outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border2);
}
.btn--outline:hover {
    border-color: var(--ink);
    background: var(--cream);
}
.btn--outline-w {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn--outline-w:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}
.btn--cream {
    background: var(--cream2);
    color: var(--ink);
    border: 1.5px solid var(--border);
}
.btn--cream:hover {
    background: var(--warm-gray);
    border-color: var(--border2);
}

/* PLACEHOLDERS */
.ph {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background: var(--warm-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 24px;
}
.ph svg {
    width: 24px;
    height: 24px;
    opacity: 0.35;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.d1 {
    transition-delay: 0.12s;
}
.d2 {
    transition-delay: 0.22s;
}
.d3 {
    transition-delay: 0.32s;
}

/* ============================================================ SCROLL BAR */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--red);
    z-index: 999;
    width: 0;
}

/* ============================================================ NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: all 0.3s ease;
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: height 0.3s ease;
}
nav.scrolled .nav-inner {
    height: 72px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nav-logo-svg {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}
#nav.scrolled .nav-logo-svg {
    height: 40px;
    filter: none;
}

.nav-tagline {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}
#nav.scrolled .nav-tagline {
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

nav.scrolled .nav-links a {
    color: var(--body);
}
nav.scrolled .nav-links a:hover {
    color: var(--red);
}
/* Der rote Nav-CTA behält weißen Text — .nav-links a würde ihn sonst
   auf 0.85-Weiß (4,5:1 verfehlt) bzw. gescrollt auf Dunkelgrau setzen */
.nav-links a.btn--red,
nav.scrolled .nav-links a.btn--red,
.nav-links a.btn--red:hover,
nav.scrolled .nav-links a.btn--red:hover {
    color: var(--white);
}

.nav-badge {
    background: var(--red);
    color: var(--white);
    font-size: 8px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(199, 78, 39, 0.2);
}
.nav-cta {
    padding: 12px 26px;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 4px;
}
.nav-socials a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease, transform 0.25s ease;
}
.nav-socials a:hover {
    color: var(--white);
    transform: translateY(-1px);
}
.nav-socials svg {
    width: 20px;
    height: 20px;
}
nav.scrolled .nav-socials a {
    color: var(--body);
}
nav.scrolled .nav-socials a:hover {
    color: var(--red);
}
body.legal-page .nav-socials a {
    color: var(--body) !important;
}
body.legal-page .nav-socials a:hover {
    color: var(--red) !important;
}

/* ============================================================ HERO */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* BG image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg .ph {
    min-height: 100vh;
    font-size: 13px;
    background: var(--warm-gray);
}
.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* dark overlay — bottom-heavy so text is readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(26, 23, 20, 0.02) 0%,
        rgba(26, 23, 20, 0.01) 35%,
        rgba(26, 23, 20, 0.18) 65%,
        rgba(26, 23, 20, 0.32) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 80px;
    align-items: flex-end;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    opacity: 0;
    animation: up 0.8s ease forwards;
}
.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}
.hero-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.hero-h {
    font-family: var(--serif);
    font-size: clamp(52px, 6.5vw, 86px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    opacity: 0;
    animation: up 0.8s ease 0.2s forwards;
}
.hero-h em {
    font-style: normal;
    color: var(--red);
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 44px;
    opacity: 0;
    animation: up 0.8s ease 0.4s forwards;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: up 0.8s ease 0.55s forwards;
}

/* right side: trust stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero-stat {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.hero-stat:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-unit {
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-left: auto;
    text-align: right;
    max-width: 120px;
    line-height: 1.4;
}

/* ============================================================ TRUST BAR (HERO) */
.trust-bar-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(9, 9, 11, 0.4);
    backdrop-filter: blur(8px);
    z-index: 3;
    overflow: hidden;
}
.trust-bar-marquee {
    display: flex;
    width: 100%;
}
.trust-bar-content {
    display: flex;
    justify-content: space-between;
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.trust-item-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    font-family: var(--serif);
}
.trust-item-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}
.trust-bar-clone {
    display: none;
}

/* ============================================================ INTRO STRIP (TICKER) */
#intro-strip {
    background: var(--red);
    padding: 22px 0;
    overflow: hidden;
    display: flex;
    width: 100%;
    border-top: none;
    border-bottom: none;
}
.strip-marquee {
    display: flex;
    width: max-content;
    animation: strip-scroll 35s linear infinite;
}
.strip-marquee:hover {
    animation-play-state: paused;
}
.strip-content {
    display: flex;
    align-items: center;
    gap: 0;
    padding-right: 0;
}
.strip-item {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white); /* 0.95-Weiß auf --red = 4,3:1 — knapp unter WCAG AA */
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.strip-item:first-child {
    padding-left: 0;
}
.strip-item:last-child {
    border-right: none;
}
.strip-sep {
    display: none;
}
@keyframes strip-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================ PROBLEM */
#problem {
    padding: var(--section-v) 0;
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
}

.problem-left .section-h {
    color: var(--ink);
    margin-bottom: 24px;
}
.problem-left .lead {
    margin-bottom: 36px;
}

.prob-quote {
    padding: 28px 32px;
    background: var(--cream);
    border-left: 3px solid var(--red);
}
.prob-quote blockquote {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 20px;
    color: var(--ink);
    text-transform: uppercase;
    line-height: 1.7;
    margin-bottom: 12px;
}
.prob-quote cite {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-style: normal;
}

/* pain cards */
.pain-cards {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.pain-card {
    background: var(--cream);
    padding: 28px 32px;
    border-left: 3px solid transparent;
    transition:
        border-left-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.pain-card:hover {
    border-left-color: var(--red);
    transform: translateX(6px);
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.05);
}
.pain-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.pain-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.pain-card p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.65;
}
.pain-bridge {
    background: var(--ink);
    padding: 26px 30px;
}
.pain-bridge p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
}
.pain-bridge strong {
    color: var(--white);
    font-weight: 700;
}

/* ============================================================ ÜBER UNS */
#about {
    padding: var(--section-v) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* image collage */
.about-collage {
    position: relative;
    height: 600px;
}
.ab-img {
    position: absolute;
    overflow: hidden;
}
.ab-img img,
.ab-img .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-1 {
    top: 0;
    left: 0;
    width: 60%;
    height: 55%;
}
.ab-2 {
    top: 0;
    right: 0;
    width: calc(40% - 24px);
    height: 42%;
}
.ab-3 {
    bottom: 0;
    left: 0;
    width: 46%;
    height: calc(45% - 24px);
}
.ab-4 {
    bottom: 0;
    right: 0;
    width: calc(54% - 24px);
    height: calc(58% - 24px);
}

.ab-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: var(--red);
    color: var(--white);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.ab-badge-num {
    font-family: var(--serif);
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
}
.ab-badge-txt {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 2px;
}

.about-content .section-h {
    margin-bottom: 24px;
}
.about-content .lead {
    margin-bottom: 20px;
}
.about-content .body-text {
    margin-bottom: 36px;
}

.about-pillars {
    border-top: 1px solid var(--border);
}
.pillar {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}
.pillar-icon {
    width: 36px;
    height: 36px;
    background: var(--red-light);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pillar-icon svg {
    width: 16px;
    height: 16px;
    color: var(--red);
}
.pillar-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}
.pillar-body p {
    font-size: 13px;
    color: var(--body);
    line-height: 1.6;
}

/* ============================================================ LEISTUNGEN */
#leistungen {
    padding: var(--section-v) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.leistungen-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
}
.leistungen-header .section-h {
    margin-bottom: 0;
}
.leistungen-header .lead {
    margin-bottom: 0;
}

.leistung-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.lk {
    background: var(--white);
    overflow: hidden;
    transition: all 0.25s;
    cursor: default;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.lk:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.lk-photo {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
}
.lk-photo img,
.lk-photo .ph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lk-body {
    padding: 36px 40px 40px;
    background: var(--cream2);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border: 1px solid var(--border);
    border-top: none;
}
.lk-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red-dark); /* --red erreicht auf --cream2 nur 4,2:1 */
    margin-bottom: 10px;
}
.lk-body h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.lk-body p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.65;
    margin-bottom: 24px;
}

.lk-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}
.lk-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    background: var(--red);
    padding: 6px 12px;
    border-radius: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================================ REFERENZEN / PROOF */
#proof {
    padding: var(--section-v) 0;
    background: var(--cream2);
}

.proof-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}
.proof-header .section-h {
    margin-bottom: 16px;
}

/* full-width image banner */
.proof-banner {
    width: 100%;
    aspect-ratio: 21/8;
    overflow: hidden;
    position: relative;
    margin-bottom: 64px;
}
.proof-banner-frame {
    width: 100%;
    height: 100%;
    position: relative;
}
.proof-banner img,
.proof-banner .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.proof-banner .ph {
    min-height: 300px;
    font-size: 13px;
}
.proof-banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 23, 20, 0.7));
    padding: 40px 48px 28px;
    display: flex;
    align-items: flex-end;
    gap: 24px;
}
.proof-banner-caption p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* reference cards */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.ref-grid--featured {
    gap: 40px;
}

.ref-card {
    background: var(--white);
    overflow: hidden;
}
.ref-card--featured {
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ref-photo {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
}
.ref-photo img,
.ref-photo .ph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ref-body {
    padding: 26px 28px 30px;
}
.ref-body--featured {
    padding: 36px 40px 40px;
    background: var(--cream2);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.ref-sector {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.ref-sector--featured {
    font-size: 11px;
    background: var(--red);
    color: var(--white);
    padding: 6px 12px;
    align-self: flex-start;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.ref-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.ref-body p {
    font-size: 13px;
    color: var(--body);
    line-height: 1.65;
}

.ref-variant-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 48px;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #fff5f0;
    border: 1px dashed var(--red);
}
.ref-variant-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-right: 8px;
}
.ref-variant-btn {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 14px;
    background: var(--white);
    color: var(--body);
    border: 1px solid var(--border2);
    cursor: pointer;
    transition: all 0.2s ease;
}
.ref-variant-btn:hover {
    border-color: var(--ink);
    color: var(--ink);
}
.ref-variant-btn.is-active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.ref-variant[hidden] {
    display: none !important;
}

.ref-placeholder {
    margin-top: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    padding: 48px clamp(24px, 4vw, 64px);
}
.ref-placeholder-inner {
    max-width: 720px;
}
.ref-placeholder-h {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 12px 0 16px;
}
.ref-placeholder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.ref-placeholder-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================ PROZESS */
#prozess {
    padding: var(--section-v) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.prozess-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
}

.prozess-left .section-h {
    margin-bottom: 20px;
}
.prozess-left .lead {
    margin-bottom: 36px;
}
.prozess-left .btn {
    margin-top: 8px;
}

/* big photo */
.prozess-photo {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}
.prozess-photo img,
.prozess-photo .ph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    position: relative;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.step-n {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.step:not(:last-child) .step-n::after {
    content: "";
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% + 24px);
    background: var(--border);
    z-index: 0;
}
.step-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.step-body p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.65;
}

/* ============================================================ FAQ */
#faq {
    padding: var(--section-v) 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
}
.faq-left .section-h {
    margin-bottom: 16px;
}
.faq-left .lead {
    margin-bottom: 36px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: color 0.15s;
}
.faq-q:hover {
    color: var(--red);
}
.faq-q:focus-visible {
    color: var(--red);
}
.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: var(--muted);
    transition: all 0.2s;
    margin-left: auto;
    line-height: 1;
}
.faq-q.open .faq-icon {
    color: var(--red);
    transform: rotate(45deg);
}
.faq-a {
    display: none;
    padding: 0 0 22px;
    font-size: 15px;
    color: var(--body);
    line-height: 1.78;
}
.faq-a.open {
    display: block;
}

/* ============================================================ RECRUITING STÖRER */
#stoerer {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--ink);
}
#stoerer > .container {
    width: 100%;
}
.stoerer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.stoerer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stoerer-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(9, 9, 11, 0.95) 0%,
        rgba(9, 9, 11, 0.6) 50%,
        transparent 100%
    );
}

/* CAREER SPECIFIC STYLES */
/* ============================================================ HERO */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 108px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg .ph {
    min-height: 100vh;
    font-size: 13px;
    background: #d8d2cb;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to right,
            rgba(26, 23, 20, 0.92) 0%,
            rgba(26, 23, 20, 0.7) 45%,
            rgba(26, 23, 20, 0.15) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(26, 23, 20, 0.45) 0%,
            transparent 20%,
            rgba(26, 23, 20, 0.65) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    opacity: 0;
    animation: up 0.8s ease forwards;
}
.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--red);
}
.hero-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.hero-h {
    font-family: var(--serif);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(56px, 7vw, 92px);
    color: var(--white);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    opacity: 0;
    animation: up 0.8s ease 0.2s forwards;
}
.hero-h em {
    font-style: normal;
    color: var(--red);
    position: relative;
    display: inline-block;
}
/* (Roter Unterstrich der Hero-Subzeile auf Kundenwunsch entfernt) */

.hero-sub {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 48px;
    font-weight: 400;
    opacity: 0;
    animation: up 0.8s ease 0.4s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: up 0.8s ease 0.55s forwards;
}

/* right: job tags */
.hero-right {
    position: relative;
}
.hero-right-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-right-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.job-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.job-tag {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 28px;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.job-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--red);
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.job-tag-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}
.job-tag-badge {
    margin-left: auto;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    padding: 5px 12px;
}

/* ============================================================ PROBLEM */
#problem {
    padding: var(--section-v) 0;
    background: var(--white);
}
.problem-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.problem-header .section-h {
    margin-bottom: 20px;
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pain-card {
    background: var(--cream2);
    border: 1px solid var(--border);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border2);
}
.pain-card-img {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.pain-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}
.pain-card:hover .pain-card-img img {
    transform: scale(1.04);
}
.pain-card-body {
    padding: 28px 30px 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pain-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.pain-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
}
.pain-icon {
    width: 38px;
    height: 38px;
    background: var(--red-light);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pain-icon svg {
    width: 18px;
    height: 18px;
}
.pain-card h3 {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-transform: uppercase;
}
.pain-card p {
    font-size: 14.5px;
    color: var(--body);
    line-height: 1.72;
}

.problem-quote-wrap {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}
.prob-quote {
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 56px 64px;
    background: var(--cream2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    position: relative;
}
.prob-quote::before {
    content: "„";
    font-family: var(--serif);
    font-size: 200px;
    font-weight: 800;
    color: rgba(199, 78, 39, 0.06);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}
.prob-quote blockquote {
    font-family: var(--serif);
    font-weight: 800;
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--ink);
    text-transform: uppercase;
    line-height: 1.35;
    margin: 0;
    z-index: 1;
    letter-spacing: -0.015em;
}
.prob-quote-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}
.prob-quote-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.prob-quote-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prob-quote-cite {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: left;
}
.prob-quote-cite span {
    display: block;
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.1em;
}

/* ============================================================ DAILY REALITY */
#daily {
    padding: var(--section-v) 0;
    background: var(--cream2);
}

.daily-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.daily-header .section-h {
    margin-bottom: 16px;
}

.daily-banner {
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    position: relative;
    margin-bottom: 48px;
}
.daily-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 36px 36px 40px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}
.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border2);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--red-light);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.2;
}
.benefit p {
    font-size: 14.5px;
    color: var(--body);
    line-height: 1.72;
}

/* ============================================================ TEAM */
#team {
    padding: var(--section-v) 0;
    background: var(--white);
}

.team-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 64px;
}
.team-header .section-h {
    margin-bottom: 14px;
}
.team-header .body-text {
    font-size: 17px;
    color: var(--body);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border2);
}
.team-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover .team-img img {
    transform: scale(1.04);
}
.team-img .ph {
    min-height: 260px;
    position: absolute;
    inset: 0;
}
.team-info {
    padding: 20px 22px 26px;
    border-top: 1px solid var(--border);
}
.team-info h3 {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.team-role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.team-quote {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.6;
}

/* full-width team photo */
.team-panorama {
    margin-bottom: 48px;
    width: 100%;
    aspect-ratio: 16/7;
    overflow: hidden;
    position: relative;
}
.team-panorama .ph {
    min-height: 280px;
    font-size: 13px;
}
.team-panorama-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 48px 28px;
    background: linear-gradient(transparent, rgba(26, 23, 20, 0.65));
}
.team-panorama-caption p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================ KARRIERE / BEWERBEN */
#karriere {
    padding: var(--section-v) 0;
    background: var(--cream2);
}
.karriere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.karriere-left .section-h {
    margin-bottom: 20px;
}
.karriere-left > .lead {
    margin-bottom: 0;
}

/* Requirements checklist */
.req-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 40px;
}
.req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--body);
}
.req-item svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex-shrink: 0;
}
.req-item--key {
    color: var(--ink);
    font-weight: 700;
}

/* Process steps — horizontal below grid */
.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    border-top: 2px solid var(--red);
    position: relative;
}
.steps-row .step {
    display: flex;
    flex-direction: column;
    padding: 28px 32px 32px;
    border-right: 1px solid var(--border);
    position: relative;
}
.steps-row .step:last-child {
    border-right: none;
}
.step-n {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 16px;
}
.step-body h4 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.step-body p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.7;
}
.steps-row .step:not(:last-child) .step-n::after {
    display: none;
}

/* CTA box */
.cta-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    padding: 48px 48px 52px;
    position: sticky;
    top: 96px;
}
.cta-box .eyebrow {
    color: var(--red);
    margin-bottom: 16px;
}
.cta-box-title {
    font-family: var(--serif);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(30px, 2.8vw, 42px);
    color: var(--ink);
    line-height: 1.08;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-box .body-text {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.78;
    color: var(--body);
}
.cta-box .btn--outline {
    color: var(--ink);
    border-color: var(--border2);
}
.cta-box .btn--outline:hover {
    border-color: var(--ink);
    background: var(--cream2);
}

.cta-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-options .btn {
    justify-content: center;
    width: 100%;
}

.cta-or {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.cta-or::before,
.cta-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.cta-tel {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: var(--body);
}
.cta-tel strong {
    color: var(--ink);
    font-weight: 700;
}

/* ============================================================ FAQ */
#faq {
    padding: var(--section-v) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
}
.faq-left .section-h {
    margin-bottom: 16px;
}
.faq-left .lead {
    margin-bottom: 36px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: color 0.15s;
}
.faq-q:hover {
    color: var(--red);
}
.faq-icon {
    flex-shrink: 0;
    font-size: 26px;
    line-height: 1;
    color: var(--muted);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-q.open .faq-icon {
    color: var(--red);
    transform: rotate(45deg);
}
.faq-q:hover .faq-icon {
    color: var(--red);
}
.faq-a {
    display: none;
    padding: 0 0 22px;
    font-size: 15px;
    color: var(--body);
    line-height: 1.78;
}
.faq-a.open {
    display: block;
}

/* ============================================================ URGENCY */
#urgency {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    padding: var(--section-v) 0;
    text-align: center;
    min-height: 560px;
    display: flex;
    align-items: center;
}
#urgency .stoerer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
#urgency .stoerer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}
#urgency .stoerer-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
#urgency .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.urgency-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 0;
    margin-bottom: 32px;
}
.urgency-dot {
    border-radius: 0;
    background: var(--red);
    width: 6px;
    height: 6px;
    animation: blink 1.8s ease infinite;
}

.urgency-h {
    font-family: var(--serif);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(42px, 5.5vw, 72px);
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

#urgency > .container > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 500px;
    margin: 0 auto 44px;
    line-height: 1.65;
}

.urgency-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn--white {
    background: var(--white);
    color: var(--red);
    font-weight: 700;
}
.btn--white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.btn--outline-w {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn--outline-w:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Ansprechpartner in CTA Box */
.hr-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 16px;
    background: var(--cream2);
    border-radius: 0;
    border: 1px solid var(--border);
}
.hr-contact-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.hr-contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hr-contact-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}
.hr-contact-info p {
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* MEDIA QUERIES (INDEX) */
@media (max-width: 1024px) {
    .stoerer-overlay {
        background: rgba(9, 9, 11, 0.85);
    }
}

.stoerer-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}
.stoerer-title {
    font-family: var(--serif);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(34px, 4vw, 52px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.stoerer-content .body-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.stoerer-benefits {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.stoerer-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}
.stoerer-benefits svg {
    width: 22px;
    height: 22px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 1px;
}

.stoerer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}
.stoerer-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    background: var(--red);
    color: var(--white);
    border-radius: 0;
}

.stoerer-btns {
    display: flex;
    gap: 16px;
}

/* ============================================================ FOOTER */
footer {
    background: var(--red);
    padding: 80px 0 48px;
    color: var(--white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand-word {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}
.footer-brand-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white); /* auf --red besteht nur Vollweiß WCAG AA (4,6:1) */
    margin-bottom: 24px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    max-width: 320px;
}
.footer-brand .nav-logo-svg {
    height: 56px;
    
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 24px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col ul li a {
    font-size: 14px;
    color: var(--white); /* auf --red besteht nur Vollweiß WCAG AA (4,6:1) */
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--white); /* auf --red besteht nur Vollweiß WCAG AA (4,6:1) */
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 12px;
    color: var(--white);
    transition: color 0.2s;
}
.footer-legal a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--white);
}
::-webkit-scrollbar-thumb {
    background: var(--border2);
    border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}

/* Text-Selection */
::selection {
    background: var(--red);
    color: var(--white);
}

/* ============================================================ ANIMATIONS */
@keyframes up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================ ZERTIFIKATE */
#zertifikate {
    padding: 40px 0;
    background: var(--cream2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: center;
}
.cert-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 16px 20px;
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.cert-card span {
    color: var(--red);
    margin-right: 6px;
}

/* ============================================================ WARUM ROLAND */
#warum {
    padding: var(--section-v) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.warum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.warum-card {
    background: var(--cream);
    padding: 32px 36px;
    border-top: 3px solid transparent;
    transition: all 0.2s;
}
.warum-card:hover {
    border-top-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: var(--white);
}
.warum-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: block;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}
.warum-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.warum-card p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.65;
}

.warum-quote {
    max-width: 900px;
    margin: 64px auto 0;
    text-align: center;
    padding: 48px;
    background: var(--cream);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
}
.warum-quote::before {
    content: "„";
    font-family: var(--serif);
    font-size: 120px;
    color: var(--red-light);
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}
.warum-quote-text {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--ink);
    line-height: 1.6;
    z-index: 1;
}
.warum-quote-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}
.warum-quote-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}
.warum-quote-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.warum-quote-cite {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: left;
}
.warum-quote-cite span {
    display: block;
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 4px;
}

/* Ansprechpartner im Prozess */
.prozess-photo {
    position: relative;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    bottom: 32px;
    left: -40px;
}
.contact-card {
    background: var(--white);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    min-width: 260px;
}
.contact-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}
.contact-info p {
    font-size: 10px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ============================================================ MOBILE OPTIMIZATION */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--white);
    z-index: 201;
    margin-left: auto;
}
#nav.scrolled .mobile-menu-toggle {
    color: var(--ink);
}
.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 1024px) {
    :root {
        --section-v: 80px;
    }
    .container {
        padding: 0 32px;
    }

    .nav-cta {
        display: none;
    }
    .nav-socials {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
        margin-right: -8px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 200;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        color: var(--white) !important;
        font-size: 20px;
    }
    .nav-links .active {
        color: var(--red) !important;
    }
    .mobile-only-cta {
        display: block !important;
        margin-top: 24px;
    }
    .mobile-only-cta a {
        font-size: 14px !important;
        padding: 16px 32px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-h {
        font-size: clamp(40px, 8vw, 64px);
        opacity: 0;
        animation: up 0.8s ease 0.2s forwards;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .warum-grid {
        grid-template-columns: 1fr;
    }
    .contact-cards {
        position: static;
        margin-top: 24px;
        align-items: flex-start;
    }
    .prozess-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leistungen-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .leistung-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-collage {
        height: 400px;
    }
    .stoerer-overlay {
        background: rgba(9, 9, 11, 0.85);
    }
    .stoerer-title {
        font-size: clamp(32px, 6vw, 48px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-v: 60px;
    }
    .container {
        padding: 0 20px;
    }
    .section-h {
        font-family: var(--serif);
        font-size: clamp(28px, 8vw, 36px);
    }
    .hero-h {
        font-size: clamp(34px, 10vw, 48px);
        opacity: 0;
        animation: up 0.8s ease 0.2s forwards;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        opacity: 0;
        animation: up 0.8s ease 0.55s forwards;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .ref-grid {
        grid-template-columns: 1fr;
    }
    .cert-grid {
        grid-template-columns: 1fr !important;
    }
    .leistung-grid {
        grid-template-columns: 1fr;
    }
    .lk-body {
        padding: 28px 24px 32px;
    }
    .lk-body h3 {
        font-size: 18px;
    }
    .lk-body p {
        font-size: 14px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-collage {
        height: 300px;
    }
    .ab-badge {
        padding: 16px 20px;
    }
    .ab-badge-num {
        font-size: 36px;
    }

    .warum-quote {
        padding: 32px 24px;
    }
    .warum-quote-text {
        font-size: clamp(16px, 5vw, 20px);
    }

    .stoerer-btns {
        flex-direction: column;
        width: 100%;
    }
    .stoerer-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .strip-item {
        font-size: 10px;
        padding: 0 20px;
    }

    .trust-bar-wrapper .container {
        padding: 0;
        max-width: 100%;
    }
    .trust-bar-marquee {
        width: max-content;
        animation: strip-scroll 25s linear infinite;
    }
    .trust-bar-marquee:hover {
        animation-play-state: paused;
    }
    .trust-bar-content {
        flex-wrap: nowrap;
        width: auto;
        padding: 24px 0;
        gap: 0;
    }
    .trust-item {
        padding: 0 24px;
        flex-shrink: 0;
    }
    .trust-bar-clone {
        display: flex;
    }
}

.cert-card-new:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border2);
    background: var(--white);
}
@media (max-width: 1024px) {
    #zertifikate .cert-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    #zertifikate .cert-grid {
        grid-template-columns: 1fr !important;
    }
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
    align-items: center;
}
.vs-card {
    padding: 56px 48px;
    border: 1px solid var(--border);
}
.vs-others {
    background: var(--cream2);
}
.vs-roland {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 24px 64px rgba(199, 78, 39, 0.28);
    transform: scale(1.04);
    position: relative;
    z-index: 2;
}
.vs-header {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.vs-logo {
    height: 72px;
    width: auto;
    opacity: 0.95;
    margin-left: auto;
    
}
.vs-roland .vs-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.vs-header h3 {
    font-family: var(--serif);
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.vs-roland .vs-header h3 {
    color: var(--white);
}
.vs-header p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
}
.vs-roland .vs-header p {
    color: var(--white); /* 0.7-Weiß auf --red = 3,0:1 — unter WCAG AA */
}

.vs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.vs-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.vs-others .vs-list svg {
    width: 24px;
    height: 24px;
    color: var(--muted);
    flex-shrink: 0;
    margin-top: 2px;
}
.vs-others .vs-list span {
    font-size: 16px;
    color: var(--body);
    line-height: 1.6;
}

.vs-roland .vs-list svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
}
.vs-roland .vs-list span {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .vs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: stretch;
        margin-top: 48px;
    }
    .vs-roland {
        transform: scale(1);
    }
    .vs-card {
        padding: 40px 32px;
    }
}

/* MEDIA QUERIES (CAREER) */
@media (max-width: 1024px) {
    :root {
        --section-v: 80px;
    }
    .container {
        padding: 0 32px;
    }

    .nav-cta {
        display: none;
    }
    .nav-socials {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
        margin-right: -8px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 200;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        color: var(--white) !important;
        font-size: 20px;
    }
    .nav-links .active {
        color: var(--red) !important;
    }
    .mobile-only-cta {
        display: block !important;
        margin-top: 24px;
    }
    .mobile-only-cta a {
        font-size: 14px !important;
        padding: 16px 32px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-right {
        order: 2;
        margin-top: 24px;
    }
    .hero-h {
        font-size: clamp(40px, 8vw, 64px);
        opacity: 0;
        animation: up 0.8s ease 0.2s forwards;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pain-cards {
        grid-template-columns: 1fr;
    }
    .prob-quote {
        padding: 40px 32px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-panorama-caption {
        padding: 24px 32px;
    }
    .karriere-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .steps-row {
        grid-template-columns: 1fr;
        border-top: none;
        margin-top: 32px;
    }
    .steps-row .step {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 24px 0;
    }
    .steps-row .step:first-child {
        border-top: 2px solid var(--red);
    }
    .steps-row .step:last-child {
        border-bottom: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .cta-box {
        position: static;
        padding: 40px 32px;
    }
    .urgency-h {
        font-size: clamp(32px, 6vw, 48px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-v: 60px;
    }
    .container {
        padding: 0 20px;
    }
    .section-h {
        font-family: var(--serif);
        font-size: clamp(28px, 8vw, 36px);
    }
    .hero-h {
        font-size: clamp(34px, 10vw, 48px);
        opacity: 0;
        animation: up 0.8s ease 0.2s forwards;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        opacity: 0;
        animation: up 0.8s ease 0.55s forwards;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .prob-quote blockquote {
        font-size: clamp(18px, 6vw, 22px);
    }
    .job-tag {
        padding: 16px 20px;
    }
    .urgency-btns {
        flex-direction: column;
        width: 100%;
    }
    .urgency-btns .btn {
        width: 100%;
        justify-content: center;
    }
    .proof-banner-caption {
        padding: 24px 20px;
    }
    .ref-grid--featured {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .ref-body--featured {
        padding: 28px 24px 32px;
    }
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.footer-socials a {
    color: var(--white); /* Icon-Kontrast (UI-Komponenten: min. 3:1) */
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
}
.footer-socials a:hover {
    opacity: 0.8;
}

body.home-page .hero-bg img {
    object-position: center 22%;
    transform: scale(1.04);
    transform-origin: center 25%;
}

/* Horizontalen Overflow auf Mobile verhindern (kein Verschieben / weißer Rand) */
html,
body {
    overflow-x: clip;
}

/* Home hero — zentriertes Redesign, Verlauf von unten */
body.home-page #hero {
    align-items: flex-end;
    text-align: center;
}
body.home-page .hero-content {
    padding-top: 120px;
    padding-bottom: 144px;
}
body.home-page .hero-eyebrow {
    justify-content: center;
}
/* breiterer Hero-Textblock */
body.home-page .hero-sub {
    max-width: 860px;
}
/* Schatten: oben fürs Menü, Mitte zart (Gesichter frei), unten kräftig für den Text */
body.home-page .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(9, 9, 11, 0.58) 0%,
        rgba(9, 9, 11, 0.24) 12%,
        rgba(9, 9, 11, 0.08) 26%,
        rgba(9, 9, 11, 0.34) 52%,
        rgba(9, 9, 11, 0.78) 78%,
        rgba(9, 9, 11, 0.95) 100%
    );
}
@media (max-width: 768px) {
    body.home-page .hero-content {
        padding-top: 96px;
        padding-bottom: 124px;
    }
    /* auf schmalen Screens darf die Subzeile wieder umbrechen */
    body.home-page .hero-h em {
        white-space: normal !important;
    }
    /* Home-Hero Subzeile: max-width auf Mobile aufheben */
    body.home-page .hero-sub {
        max-width: 100%;
    }
    /* Mobile nutzt hero.jpg (Portrait) — mittig, ohne Zoom */
    body.home-page .hero-bg img {
        object-position: center center;
        transform: none;
    }
    /* Mobile: kräftigerer Schwarz-Verlauf, damit der Text über dem Bild lesbar bleibt */
    body.home-page .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(9, 9, 11, 0.55) 0%,
            rgba(9, 9, 11, 0.5) 38%,
            rgba(9, 9, 11, 0.62) 66%,
            rgba(9, 9, 11, 0.92) 100%
        );
    }
    /* Karriere-Hero vertikales Padding reduzieren */
    body.career-page #hero {
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

/* LEGAL PAGE HEADER */
body.legal-page #nav {
    background: rgba(255, 255, 255, 0.97) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
}
body.legal-page .nav-inner {
    height: 72px !important;
}
body.legal-page .nav-brand .nav-logo-svg {
    height: 40px !important;
    filter: none !important;
}
body.legal-page .nav-links a:not(.btn) {
    color: var(--body) !important;
}
body.legal-page .nav-links a:not(.btn):hover {
    color: var(--red) !important;
}
body.legal-page .nav-links .active {
    color: var(--red) !important;
}
body.legal-page .mobile-menu-toggle {
    color: var(--ink) !important;
}

body.home-page .proof-header,
body.home-page .proof-cta {
    text-align: center;
}

body.home-page .proof-cta {
    margin-top: 64px;
}

body.home-page .proof-banner img,
body.home-page .ref-photo img,
body.career-page .team-panorama img,
body.career-page #hero .hero-bg img {
    height: 100%;
}

body.career-page .hero-content,
body.career-page .hero-actions {
    width: 100%;
}

body.career-page .job-tag-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.cert-card-new {
    background: var(--cream2);
    border: 1px solid var(--border);
    padding: 40px 32px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cert-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
}

.cert-card-new h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-card-new p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
}

/* ============================================================ ACCESSIBILITY */
.skip-link {
    position: absolute;
    top: -999px;
    left: -999px;
    z-index: 1000;
    background: var(--red);
    color: var(--white);
    padding: 12px 20px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 0;
    white-space: nowrap;
}
.skip-link:focus {
    top: 8px;
    left: 8px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================================ ≤480px MOBILE REFINEMENTS */
@media (max-width: 480px) {
    /* Container side padding etwas großzügiger als die 20px aus ≤768px */
    .container {
        padding: 0 16px;
    }

    /* Hero — Subzeile schlanker */
    .hero-sub {
        font-size: 16px;
        margin-bottom: 32px;
    }

    /* Hero-Statistiken im Karriere-Hero kompakter */
    .hero-h {
        font-size: clamp(30px, 9vw, 42px);
    }

    /* Trust-Bar Kennzahl-Schrift etwas kleiner damit 4 Items in den Marquee passen */
    .trust-item-num {
        font-size: 28px;
    }
    .trust-item-text {
        font-size: 10px;
    }

    /* prob-quote (Karriere) — seitliches Padding war 64px → overflow bei 360px */
    .prob-quote {
        padding: 32px 20px;
    }

    /* VS-Vergleich: Padding bei sehr kleinen Screens reduzieren */
    .vs-card {
        padding: 32px 20px;
    }

    /* Buttons: white-space nowrap macht lange Labels ("Jetzt Kontakt aufnehmen")
       bei ≤340px breiter als den Viewport — Umbruch hier erlauben */
    .btn {
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    /* Grid-Tracks dürfen nicht durch min-content der Karten (vs-header,
       cta-box) über die Containerbreite hinauswachsen */
    .vs-grid,
    .karriere-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .vs-header {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    /* Kontaktkarten: min-width 260px kann bei 360px (Container ~328px) passen,
       aber der absolute Offset left: -40px ist schon bei ≤1024px statisch —
       hier sicherstellen, dass keine feste Mindestbreite überläuft */
    .contact-card {
        min-width: 0;
        width: 100%;
    }

    /* CTA-Box (Karriere) Padding nochmals reduzieren */
    .cta-box {
        padding: 28px 20px 32px;
    }

    /* Bewerbungs-Steps-Row: seitliches Padding */
    .steps-row .step {
        padding: 20px 0;
    }

    /* Footer Bottom: Stack auf sehr kleinen Screens */
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        text-align: left;
    }
    .footer-legal {
        gap: 16px;
    }

    /* Warum-Quote Padding */
    .warum-quote {
        padding: 24px 16px;
    }

    /* Leistungs-Karten Body Padding */
    .lk-body {
        padding: 22px 18px 26px;
    }

    /* Ref-Placeholder Padding */
    .ref-placeholder {
        padding: 32px 20px;
    }

    /* Proof-Banner-Caption */
    .proof-banner-caption {
        padding: 16px 16px;
    }

    /* Pain-Card Body (Karriere) */
    .pain-card-body {
        padding: 20px 20px 28px;
    }

    /* Benefit-Card Padding */
    .benefit {
        padding: 28px 24px 32px;
    }

    /* Stoerer-Content Padding innen */
    .stoerer-title {
        font-size: clamp(26px, 8vw, 36px);
    }

    /* Urgency Headline */
    .urgency-h {
        font-size: clamp(28px, 9vw, 40px);
    }

    /* ── NEU: Karriere-Hero vertikales Padding bei 360px reduzieren */
    body.career-page #hero,
    #hero {
        padding-top: 90px;
        padding-bottom: 72px;
    }

    /* ── NEU: Home-Hero bottom-Padding bei 360px kompakter */
    body.home-page .hero-content {
        padding-top: 88px;
        padding-bottom: 100px;
    }

    /* ── NEU: section-h Minimum für sehr kleine Screens */
    .section-h {
        font-size: clamp(24px, 8vw, 32px);
    }

    /* ── NEU: Job-Tags kompakter */
    .job-tag {
        padding: 14px 16px;
        gap: 12px;
    }
    .job-tag-name {
        font-size: 15px;
    }

    /* ── NEU: Team-Panorama Caption Padding */
    .team-panorama-caption {
        padding: 16px 16px;
    }

    /* ── NEU: warum-grid und pain-cards auf 480px bereits 1 Spalte (redundant-safe) */
    .warum-grid,
    .pain-cards,
    .benefits-grid,
    .team-grid,
    .ref-grid {
        grid-template-columns: 1fr !important;
    }
}
