/* ===== RecruitingKlar Design System ===== */
:root {
    --rk-primary:       #d97706;
    --rk-primary-dark:  #b45309;
    --rk-primary-light: #fcd34d;
    --rk-primary-bg:    #fffbeb;
    --dark:             #0f172a;
    --slate:            #1e293b;
    --text:             #1f2937;
    --body:             #4b5563;
    --subtle:           #6b7280;
    --muted:            #9ca3af;
    --bg-light:         #f8fafc;
    --bg-orange:        #fffbeb;
    --border:           #e5e7eb;
    --white:            #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rk-primary-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rk-primary); }
ul { list-style: none; }

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

/* ===== TOP BAR ===== */
.rk-topbar {
    background: #0f172a;
    height: 36px;
    position: sticky;
    top: 0;
    z-index: 101;
    display: flex;
    align-items: center;
}
.rk-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: flex-end;
}
.rk-topbar-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.70);
    margin-right: 0.25rem;
    white-space: nowrap;
}
.rk-topbar-sites { display: flex; gap: 0.4rem; }
.rk-topbar-site {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.18rem 0.6rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.rk-topbar-site--lk {
    border: 1px solid rgba(37,99,235,0.45);
    color: #93c5fd;
}
.rk-topbar-site--lk:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
.rk-topbar-site--hk {
    border: 1px solid rgba(13,148,136,0.45);
    color: #5eead4;
}
.rk-topbar-site--hk:hover { background: #0d9488; color: #fff; border-color: #0d9488; }
.rk-topbar-site--fk {
    border: 1px solid rgba(99,102,241,0.45);
    color: #a5b4fc;
}
.rk-topbar-site--fk:hover { background: #4338ca; color: #fff; border-color: #4338ca; }
.rk-topbar-site--ak {
    border: 1px solid rgba(234,88,12,0.45);
    color: #fbbf24;
}
.rk-topbar-site--ak:hover { background: #d97706; color: #fff; border-color: #d97706; }
.rk-topbar-site--gk {
    border: 1px solid rgba(22,163,74,0.45);
    color: #86efac;
}
.rk-topbar-site--gk:hover { background: #16a34a; color: #fff; border-color: #16a34a; }
.rk-topbar-site--zk {
    border: 1px solid rgba(8,145,178,0.45);
    color: #67e8f9;
}
.rk-topbar-site--zk:hover { background: #0891b2; color: #fff; border-color: #0891b2; }

.rk-topbar-linkedin {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.70);
    margin-left: 0.5rem;
    transition: color 0.15s;
}
.rk-topbar-linkedin:hover { color: #fff; }

/* ===== NAVIGATION ===== */
.rk-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.rk-nav.rk-nav-scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.rk-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: height 0.2s;
}
.rk-nav.rk-nav-scrolled .rk-nav-container { height: 64px; }
.rk-nav.rk-nav-scrolled .rk-logo-icon { width: 32px; height: 32px; }
.rk-nav.rk-nav-scrolled .rk-logo-wordmark { font-size: 1.45rem; }
.rk-nav.rk-nav-scrolled .rk-logo { gap: 0.5rem; }

/* Logo */
.rk-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1.1;
    transition: gap 0.2s;
}
.rk-logo-icon { width: 42px; height: 42px; flex-shrink: 0; transition: width 0.2s, height 0.2s; }
.rk-logo-text { display: flex; flex-direction: column; gap: 0.05rem; }
.rk-logo-wordmark {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    transition: font-size 0.2s;
}
.rk-logo-recruiting { color: var(--rk-primary); }
.rk-logo-klar       { color: var(--rk-primary-dark); }
.rk-logo-service {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--subtle);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.rk-logo-service strong { font-weight: 600; color: var(--rk-primary-dark); }

/* Nav Menu */
.rk-nav-menu ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.rk-nav-menu a {
    display: block;
    padding: 0.5rem 0.875rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.rk-nav-menu a:hover { background: var(--bg-orange); color: var(--rk-primary); }

.rk-nav-cta {
    background: linear-gradient(135deg, var(--rk-primary), var(--rk-primary-dark)) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.25rem !important;
    font-weight: 700 !important;
}
.rk-nav-cta:hover { filter: brightness(0.9) !important; background: var(--rk-primary-dark) !important; }

/* Mega Dropdown */
.rk-has-dropdown { position: relative; }
.rk-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 200;
}
.rk-dropdown--mega {
    display: none;
    flex-direction: row;
    gap: 0;
    min-width: 480px;
}
.rk-has-dropdown:hover .rk-dropdown,
.rk-has-dropdown:focus-within .rk-dropdown,
.rk-has-dropdown.rk-dropdown-open .rk-dropdown {
    display: flex;
}
.rk-dropdown-group {
    flex: 1;
    padding: 0.5rem;
    border-right: 1px solid var(--border);
}
.rk-dropdown-group:last-child { border-right: none; }
.rk-dropdown-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    padding: 0.25rem 0.75rem 0.5rem;
}
.rk-dropdown a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 400;
}
.rk-dropdown a:hover { background: var(--bg-orange); color: var(--rk-primary); }

/* Mobile Toggle */
.rk-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.rk-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.rk-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rk-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.rk-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-rk-primary {
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--rk-primary), var(--rk-primary-dark));
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: filter 0.18s, transform 0.15s;
}
.btn-rk-primary:hover { filter: brightness(0.9); transform: translateY(-1px); color: var(--white); }

.btn-rk-outline {
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--rk-primary);
    color: var(--rk-primary);
    background: transparent;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.15s;
}
.btn-rk-outline:hover { background: var(--rk-primary); color: #fff; transform: translateY(-1px); }

.btn-rk-white {
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.btn-rk-white:hover { background: rgba(255,255,255,0.70); border-color: rgba(255,255,255,0.9); color: var(--white); transform: translateY(-1px); }

.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ===== HERO ===== */
.rk-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1e293b 0%, #431407 100%);
    position: relative;
    overflow: hidden;
}
.rk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(234,88,12,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.rk-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}
.rk-hero-eyebrow {
    display: inline-block;
    background: rgba(234,88,12,0.2);
    border: 1px solid rgba(234,88,12,0.45);
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.rk-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.rk-hero h1 .rk-highlight {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rk-hero-sub {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.rk-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.rk-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.70);
}
.rk-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}
.rk-trust-item strong { color: #e2e8f0; }

/* Light Hero Variant */
.rk-hero--light {
    background: linear-gradient(135deg, var(--bg-orange), #fcd34d);
}
.rk-hero--light::before { display: none; }
.rk-hero--light h1 { color: var(--text); }
.rk-hero--light .rk-hero-sub { color: var(--body); }
.rk-hero--light .rk-trust-item { color: var(--subtle); }
.rk-hero--light .rk-trust-item strong { color: var(--text); }
.rk-hero--light .rk-hero-trust { border-top-color: rgba(0,0,0,0.1); }

/* Hero Visual */
.rk-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.rk-hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.70);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(8px);
}
.rk-hero-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fbbf24;
    margin-bottom: 1.25rem;
}
.rk-hero-card-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rk-hero-card-item:last-child { border-bottom: none; }
.rk-hero-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(234,88,12,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fbbf24;
    font-size: 1rem;
}
.rk-hero-card-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.15rem;
}
.rk-hero-card-text span { font-size: 0.78rem; color: #64748b; }

/* ===== SECTIONS ===== */
.rk-section { padding: 80px 0; }
.rk-section--gray { background: var(--bg-light); }
.rk-section--orange { background: var(--bg-orange); }
.rk-section--dark { background: var(--slate); color: var(--white); }
.rk-section--navy { background: #1e3a5f; color: var(--white); }

.rk-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.rk-eyebrow {
    display: inline-block;
    background: var(--bg-orange);
    color: var(--rk-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.875rem;
}
.rk-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.rk-section--dark .rk-section-title,
.rk-section--navy .rk-section-title { color: var(--white); }
.rk-section-sub {
    font-size: 1.05rem;
    color: var(--subtle);
    line-height: 1.7;
}
.rk-section--dark .rk-section-sub,
.rk-section--navy .rk-section-sub { color: #94a3b8; }

/* ===== CARDS ===== */
.rk-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.rk-cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.rk-cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.rk-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.rk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.rk-card--featured { border-top: 4px solid var(--rk-primary); }
.rk-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg-orange);
    color: var(--rk-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}
.rk-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.rk-card p {
    font-size: 0.95rem;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.rk-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rk-primary);
}
.rk-card-link:hover { text-decoration: underline; }

/* ===== STATS / TRUST BAR ===== */
.rk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.rk-stat {
    background: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
}
.rk-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--rk-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.rk-stat-label {
    font-size: 0.85rem;
    color: var(--subtle);
    line-height: 1.4;
}

/* ===== PROCESS STEPS ===== */
.rk-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
.rk-steps--4 { grid-template-columns: repeat(4, 1fr); }
.rk-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--rk-primary-light), var(--rk-primary));
    z-index: 0;
}
.rk-step { text-align: center; position: relative; z-index: 1; }
.rk-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rk-primary), var(--rk-primary-dark));
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.rk-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.rk-step p { font-size: 0.9rem; color: var(--subtle); }

/* ===== FAQ ===== */
.rk-faq { max-width: 760px; margin: 0 auto; }
.rk-faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.rk-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.15s;
}
.rk-faq-question:hover { background: var(--bg-orange); }
.rk-faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-orange);
    color: var(--rk-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.2s;
}
.rk-faq-item.is-open .rk-faq-chevron { transform: rotate(180deg); }
.rk-faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--body);
    line-height: 1.75;
}
.rk-faq-item.is-open .rk-faq-answer { display: block; }

/* ===== TESTIMONIALS ===== */
.rk-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.rk-testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
}
.rk-testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.rk-testimonial-text {
    font-size: 0.95rem;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.rk-testimonial-author {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}
.rk-testimonial-role { font-size: 0.8rem; color: var(--muted); }

/* ===== TEAM ===== */
.rk-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.rk-team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
.rk-team-card .rk-team-avatar {
    width: 96px;
    height: 96px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px var(--rk-primary-bg);
}
.rk-team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0077b5;
    text-decoration: none;
    padding: 0.32rem 0.7rem;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    background: #fff;
    margin-top: 0.7rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.rk-team-linkedin:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
}
.rk-team-linkedin svg { display: inline-block; vertical-align: middle; }
.rk-team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    overflow: hidden;
}
.rk-team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rk-team-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.rk-team-role {
    font-size: 0.85rem;
    color: var(--rk-primary);
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.rk-team-bio { font-size: 0.9rem; color: var(--body); line-height: 1.65; }

/* ===== BLOG CATEGORY COLORS ===== */
.rk-cat-recruiting    { background: #fcd34d; color: #92400e; }
.rk-cat-strategie     { background: #dbeafe; color: #1d4ed8; }
.rk-cat-tools         { background: #fef3c7; color: #b45309; }
.rk-cat-arbeitsrecht  { background: #d1fae5; color: #065f46; }
.rk-cat-tipps         { background: #fde68a; color: #92400e; }

.rk-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
}

/* ===== BLOG INDEX ===== */
.rk-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.rk-blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.rk-blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.07); }
.rk-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.875rem;
    flex-wrap: wrap;
}
.rk-blog-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.rk-blog-card p {
    font-size: 0.9rem;
    color: var(--body);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}
.rk-blog-read-more {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rk-primary);
}
.rk-blog-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.rk-filter-btn {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--body);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.rk-filter-btn:hover,
.rk-filter-btn[aria-pressed="true"] {
    background: var(--rk-primary);
    color: #fff;
    border-color: var(--rk-primary);
}
.rk-blog-search {
    width: 100%;
    max-width: 400px;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    margin-bottom: 1.5rem;
    outline: none;
    transition: border-color 0.2s;
}
.rk-blog-search:focus { border-color: var(--rk-primary); }

/* ===== BLOG ARTICLE ===== */
.rk-article-header {
    background: linear-gradient(135deg, var(--bg-orange), #fcd34d);
    padding: 64px 0 48px;
}
.rk-article-header-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.rk-article-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.rk-article-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.rk-article-header .rk-article-sub {
    font-size: 1.1rem;
    color: var(--body);
    line-height: 1.75;
}
.rk-article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 24px 5rem;
}
.rk-article-body h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin: 2.5rem 0 1rem;
}
.rk-article-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 2rem 0 0.75rem;
}
.rk-article-body p { margin-bottom: 1.25rem; }
.rk-article-body ul,
.rk-article-body ol {
    margin: 0 0 1.25rem 1.5rem;
    list-style: disc;
}
.rk-article-body ol { list-style: decimal; }
.rk-article-body li { margin-bottom: 0.4rem; }

.rk-toc {
    background: var(--bg-orange);
    border-left: 4px solid var(--rk-primary);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}
.rk-toc h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--rk-primary); margin-bottom: 0.75rem; }
.rk-toc ol { margin: 0 0 0 1rem; list-style: decimal; }
.rk-toc li { margin-bottom: 0.3rem; }
.rk-toc a { color: var(--rk-primary-dark); font-size: 0.92rem; }

.rk-info-box {
    background: var(--bg-orange);
    border-left: 4px solid var(--rk-primary);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}
.rk-warn-box {
    background: #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}
.rk-cta-box {
    background: linear-gradient(135deg, #1e3a5f, var(--rk-primary-dark));
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
    margin: 3rem 0;
}
.rk-cta-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.rk-cta-box p { color: #94a3b8; margin-bottom: 1.5rem; }

.rk-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.rk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.rk-table th {
    background: var(--bg-orange);
    color: var(--rk-primary-dark);
    font-weight: 700;
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--rk-primary-light);
}
.rk-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--body);
}
.rk-table tr:last-child td { border-bottom: none; }
.rk-table tr:nth-child(even) td { background: var(--bg-light); }

.rk-author-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-light);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 3rem;
}
.rk-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rk-primary), var(--rk-primary-dark));
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rk-author-name { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.rk-author-role { font-size: 0.82rem; color: var(--subtle); margin-bottom: 0.5rem; }
.rk-author-bio { font-size: 0.88rem; color: var(--body); }

/* ===== FOOTER ===== */
.rk-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 64px 0 0;
}
.rk-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.rk-footer-brand p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 1rem 0;
    line-height: 1.65;
}
.rk-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.rk-footer-contact a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.rk-footer-contact a:hover { color: var(--rk-primary); }
.rk-footer-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--rk-primary), var(--rk-primary-dark));
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: filter 0.18s;
}
.rk-footer-cta:hover { filter: brightness(0.9); color: #fff; }
.rk-footer-col h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e2e8f0;
    margin-bottom: 1rem;
}
.rk-footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.rk-footer-col a {
    font-size: 0.88rem;
    color: #64748b;
    transition: color 0.2s;
}
.rk-footer-col a:hover { color: var(--rk-primary); }
.rk-footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 0;
}
.rk-footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #475569;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.rk-footer-bottom a { color: #475569; }
.rk-footer-bottom a:hover { color: var(--rk-primary); }

/* Footer logo overrides */
.rk-footer .rk-logo-text .rk-logo-service { color: #475569; }
.rk-footer .rk-logo-text .rk-logo-service strong { color: #94a3b8; }

/* ===== COOKIE BANNER ===== */
.rk-cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 680px;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.rk-cookie-text { font-size: 0.9rem; color: #94a3b8; margin-bottom: 0.875rem; }
.rk-cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
}
.rk-cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: filter 0.15s;
}
.rk-cookie-btn-primary {
    background: linear-gradient(135deg, var(--rk-primary), var(--rk-primary-dark));
    color: #fff;
}
.rk-cookie-btn-primary:hover { filter: brightness(0.9); }
.rk-cookie-btn-outline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.70);
}
.rk-cookie-btn-outline:hover { border-color: rgba(255,255,255,0.70); color: #e2e8f0; }
.rk-cookie-settings-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 0.3rem 0;
    margin-right: auto;
}
.rk-cookie-settings-btn:hover { color: #94a3b8; }
.rk-cookie-chevron { font-size: 0.65rem; }
.rk-cookie-details { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.rk-cookie-detail-item {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}
.rk-cookie-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}
.rk-cookie-detail-name { font-size: 0.85rem; font-weight: 600; color: #e2e8f0; }
.rk-cookie-detail-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}
.rk-cookie-badge-always { background: rgba(16,185,129,0.2); color: #34d399; }
.rk-cookie-badge-consent { background: rgba(234,88,12,0.2); color: #fbbf24; }
.rk-cookie-detail-desc { font-size: 0.8rem; color: #64748b; }

/* ===== RECRUITING CHECK ===== */
.rk-check-progress {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 2rem;
}
.rk-check-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--rk-primary), var(--rk-primary-dark));
    border-radius: 3px;
    transition: width 0.3s;
}
.rk-check-question {
    margin-bottom: 2rem;
}
.rk-check-q-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.rk-check-q-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--rk-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rk-check-q-text { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.rk-check-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.rk-check-option {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    text-align: left;
    width: 100%;
}
.rk-check-option:hover { border-color: var(--rk-primary); background: var(--bg-orange); }
.rk-check-option.is-selected { border-color: var(--rk-primary); background: var(--bg-orange); }
.rk-check-option-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s;
}
.rk-check-option.is-selected .rk-check-option-dot {
    border-color: var(--rk-primary);
    background: var(--rk-primary);
}
.rk-check-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}
.rk-check-result { display: none; }
.rk-check-result.is-visible { display: block; }
.rk-result-level {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    background: var(--bg-orange);
    color: var(--rk-primary);
    margin-bottom: 1rem;
}
.rk-result-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--rk-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.rk-result-recs { margin-top: 2rem; }
.rk-result-rec {
    display: flex;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--bg-light);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--body);
}
.rk-result-rec-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rk-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== COMPARISON TABLE ===== */
.rk-compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.rk-compare-table th {
    background: var(--bg-orange);
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rk-primary-dark);
    border-bottom: 2px solid var(--rk-primary-light);
}
.rk-compare-table th:first-child { background: var(--bg-light); color: var(--text); }
.rk-compare-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--body);
}
.rk-compare-table tr:last-child td { border-bottom: none; }
.rk-compare-check { color: #10b981; font-weight: 700; }
.rk-compare-x { color: #ef4444; font-weight: 700; }

/* ===== STICKY CTA ===== */
.rk-sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 500;
    background: linear-gradient(135deg, var(--rk-primary), var(--rk-primary-dark));
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(234,88,12,0.4);
    transition: filter 0.2s, transform 0.2s;
}
.rk-sticky-cta:hover { filter: brightness(0.9); transform: translateY(-2px); color: #fff; }

/* ===== PRINT ===== */
@media print {
    .rk-topbar, .rk-nav, .rk-footer, .rk-cookie-banner, .rk-sticky-cta { display: none !important; }
    body { color: #000; }
    a { color: #000; }
    .rk-check-result { display: block !important; }
    .rk-check-question { display: none; }
}

/* ===== RESPONSIVE 768px ===== */
@media (max-width: 768px) {
    .rk-nav-menu { display: none; }
    .rk-nav-menu.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        border-top: 1px solid var(--border);
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 150;
    }
    .rk-nav-menu.is-open ul {
        flex-direction: column;
        gap: 0.25rem;
    }
    .rk-mobile-toggle { display: flex; }
    .rk-has-dropdown:hover .rk-dropdown,
    .rk-has-dropdown:focus-within .rk-dropdown { display: none; }
    .rk-has-dropdown.rk-dropdown-open .rk-dropdown {
        display: flex;
        position: static;
        flex-direction: column;
        box-shadow: none;
        border: none;
        padding: 0;
        background: var(--bg-light);
        border-radius: 8px;
        margin-top: 0.25rem;
    }
    .rk-dropdown--mega { flex-direction: column; min-width: unset; }
    .rk-dropdown-group { border-right: none; border-bottom: 1px solid var(--border); }
    .rk-dropdown-group:last-child { border-bottom: none; }

    .rk-hero-container { grid-template-columns: 1fr; }
    .rk-hero-visual { display: none; }
    .rk-hero { padding: 60px 0 48px; }

    .rk-cards-grid { grid-template-columns: 1fr; }
    .rk-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .rk-cards-grid--2 { grid-template-columns: 1fr; }
    .rk-stats { grid-template-columns: repeat(2, 1fr); }
    .rk-steps { grid-template-columns: 1fr; }
    .rk-steps--4 { grid-template-columns: 1fr; }
    .rk-steps::before { display: none; }
    .rk-testimonials-grid { grid-template-columns: 1fr; }
    .rk-team-grid { grid-template-columns: 1fr; }
    .rk-blog-grid { grid-template-columns: 1fr; }

    .rk-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .rk-footer-brand { grid-column: 1 / -1; }

    .rk-topbar-label { display: none; }
    .rk-topbar-site--hk { display: none; }
}

/* ===== RESPONSIVE 480px ===== */
@media (max-width: 480px) {
    .rk-hero h1 { font-size: 1.75rem; }
    .rk-stats { grid-template-columns: 1fr 1fr; }
    .rk-cards-grid--4 { grid-template-columns: 1fr; }
    .rk-footer-container { grid-template-columns: 1fr; }
    .rk-hero-btns { flex-direction: column; }
    .rk-check-nav { flex-direction: column; gap: 0.75rem; }
    .rk-cookie-actions { flex-direction: column; }
    .rk-team-card { flex-direction: column; }
}

/* ===== SOURCES SECTION (blog articles) ===== */
.rk-sources { padding: 2rem 0; border-top: 1px solid #e5e7eb; margin-top: 3rem; }
.rk-sources-title { font-size: 1rem; font-weight: 600; color: #6b7280; margin-bottom: 0.75rem; }
.rk-sources-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.rk-sources-list a { font-size: 0.875rem; color: #d97706; text-decoration: none; }
.rk-sources-list a:hover { text-decoration: underline; }

/* Gruppe footer styles */
.rk-footer-gruppe-sub { font-size: 0.75rem; color: rgba(255,255,255,0.70); margin-bottom: 0.5rem; }
.rk-footer-gruppe-link { display: block; font-size: 0.8rem; color: #fca5a5; text-decoration: none; margin-top: 0.5rem; }
.rk-footer-gruppe-link:hover { color: #fecaca; }

/* ─────────────────────────────────────────────
   BFSG: Skip-Link für Tastatur-Navigation
   ───────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #1f2937;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.15s;
}
.skip-link:focus {
    top: 1rem;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* ─────────────────────────────────────────────
   BFSG: Reduced Motion Support
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* BFSG: Body-Links Underline */
.rka-article-body p a, .rka-article-body li a, .rka-article-body td a {
    text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.rka-article-body p a:hover, .rka-article-body li a:hover { text-decoration-thickness: 2px; }


/* Reading-Progress (analog HRklar/FinanceKlar) */
#rk-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #b45309, #d97706);
    z-index: 10000;
    transition: width 0.08s linear;
    pointer-events: none;
}

/* === Author-Box: Foto + Info-Spalte (2026-05-24, analog FK) === */
.rk-author-box .rk-author-photo {
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--rk-primary-light);
}
.rk-author-box .rk-author-info { display: flex; flex-direction: column; gap: 0.2rem; }
.rk-author-box .rk-author-info strong { font-size: 1rem; color: var(--text); font-weight: 700; }
.rk-author-box .rk-author-role { font-size: 0.82rem; color: var(--rk-primary-dark); font-weight: 600; margin-bottom: 0.4rem; }
.rk-author-box .rk-author-info p { font-size: 0.9rem; color: var(--body); line-height: 1.6; margin: 0; }
@media (max-width: 640px) {
    .rk-author-box { flex-direction: column; align-items: center; text-align: center; }
    .rk-author-box .rk-author-info { align-items: center; }
}
