/* ===================================================
   Financeklar – Finance Precision Design System
   Prefix: fk-
   =================================================== */

:root {
    --primary:       #4338ca;
    --primary-dark:  #3730a3;
    --primary-light: #e0e7ff;
    --violet:       #818cf8;
    --dark:          #0c1a2e;
    --slate:         #0f2030;
    --text:          #0c1a2e;
    --body:          #4b5563;
    --subtle:        #6b7280;
    --muted:         #9ca3af;
    --bg-light:      #f8fafc;
    --bg-violet:    #eef2ff;
    --border:        #e5e7eb;
    --white:         #ffffff;
    --gold:          #d97706;
}

*, *::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(--primary-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }
ul { list-style: none; }

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

/* ===================================================
   TOP BAR
   =================================================== */
.fk-topbar {
    background: #1e3a5f;
    height: 36px;
    position: sticky;
    top: 0;
    z-index: 101;
    display: flex;
    align-items: center;
}
.fk-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;
}
.fk-topbar-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-right: 0.25rem;
    white-space: nowrap;
}
.fk-topbar-sites { display: flex; gap: 0.4rem; }
.fk-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;
}
.fk-topbar-site--lk {
    border: 1px solid rgba(37,99,235,0.45);
    color: #93c5fd;
}
.fk-topbar-site--lk:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
.fk-topbar-site--hr {
    border: 1px solid rgba(13,148,136,0.45);
    color: #6ee7b7;
}
.fk-topbar-site--hr:hover { background: #0d9488; color: #fff; border-color: #0d9488; }
.fk-topbar-site--rk {
    border: 1px solid rgba(234,88,12,0.45);
    color: #fdba74;
}
.fk-topbar-site--rk:hover { background: #ea580c; color: #fff; border-color: #ea580c; }
.fk-topbar-site--ak {
    border: 1px solid rgba(124,58,237,0.45);
    color: #c4b5fd;
}
.fk-topbar-site--ak:hover { background: #7c3aed; color: #fff; border-color: #7c3aed; }

/* ===================================================
   NAVIGATION
   =================================================== */
.fk-nav {
    position: sticky;
    top: 36px;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.fk-nav.fk-nav-scrolled {
    border-color: var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.fk-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.fk-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1.1;
}
.fk-logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.fk-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}
.fk-logo-wordmark {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}
.fk-logo-finance { color: var(--dark); }
.fk-logo-klar    { color: var(--primary); }
.fk-logo-service {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--subtle);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.fk-logo-service strong {
    font-weight: 600;
    color: var(--primary-dark);
}

.fk-nav-menu ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.fk-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;
}
.fk-nav-menu a:hover { background: var(--bg-violet); color: var(--primary); }

.fk-nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.25rem !important;
    font-weight: 700 !important;
}
.fk-nav-cta:hover { background: var(--primary-dark) !important; color: var(--white) !important; }
.fk-nav-sister {
    font-size: 0.82rem !important;
    color: var(--subtle) !important;
    border: 1px solid var(--border) !important;
    border-radius: 50px !important;
    padding: 0.35rem 0.9rem !important;
    font-weight: 500 !important;
}
.fk-nav-sister:hover { color: var(--primary) !important; border-color: var(--primary) !important; background: transparent !important; }

/* Mega-Dropdown */
.fk-has-dropdown { position: relative; }
.fk-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: 260px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    z-index: 200;
}
.fk-dropdown--mega {
    min-width: 560px;
    flex-direction: row;
    gap: 0;
}
.fk-has-dropdown:hover .fk-dropdown,
.fk-has-dropdown.fk-dropdown-open .fk-dropdown { display: flex; }
.fk-dropdown-group {
    flex: 1;
    padding: 0.5rem 1rem;
    border-right: 1px solid var(--border);
}
.fk-dropdown-group:last-child { border-right: none; }
.fk-dropdown-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
}
.fk-dropdown a {
    display: block;
    padding: 0.5rem 0.5rem;
    border-radius: 6px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}
.fk-dropdown a:hover { background: var(--bg-violet); color: var(--primary); }

/* Mobile toggle */
.fk-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.fk-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, filter 0.18s, border-color 0.18s, transform 0.15s;
    cursor: pointer;
    border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}
.btn-primary:hover { filter: brightness(0.88); }
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 700;
}
.btn-white:hover { background: #ede9fe; color: var(--primary-dark); }
.btn-white-outline {
    border: 2px solid rgba(255,255,255,0.65);
    color: var(--white);
    background: transparent;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.9); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--full { width: 100%; text-align: center; display: block; }

/* ===================================================
   HERO – SPLIT DIAGONAL (index.php)
   Right panel = dark with diagonal clip-path
   Left panel = white/light with headline
   =================================================== */
.fk-hero {
    min-height: 580px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

/* Left content panel */
.fk-hero-left {
    background: var(--white);
    padding: 80px 48px 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.fk-hero-left-inner {
    max-width: 540px;
    margin-left: auto;
    padding-right: 3rem;
}

/* Right dark panel with diagonal edge */
.fk-hero-right {
    background: var(--dark);
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 64px 48px 64px 64px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.fk-hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(3,105,161,0.18) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(56,189,248,0.08) 0%, transparent 45%);
    pointer-events: none;
}

/* Hero eyebrow */
.fk-hero-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 1rem;
    border-top: 2px solid var(--primary);
    padding-top: 0.5rem;
    width: fit-content;
}

/* Hero H1 */
.fk-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: 1.25rem;
}
.fk-hero h1 .fk-highlight {
    color: var(--primary);
}

/* Hero subtext */
.fk-hero-sub {
    font-size: 1.05rem;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Hero CTAs */
.fk-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero trust row */
.fk-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.fk-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--subtle);
}
.fk-trust-item strong { color: var(--text); }
.fk-trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ===================================================
   HERO – CONTAINER/CONTENT/VISUAL VARIANT
   (used by jahresabschluss.php, cfo-auf-zeit.php etc.)
   =================================================== */
.fk-hero-container {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
}
.fk-hero-content {
    background: var(--white);
    padding: 80px 3rem 80px 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fk-hero-content > * {
    max-width: 520px;
    margin-left: auto;
    margin-right: 0;
}
.fk-hero-visual {
    background: var(--dark);
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 64px 3rem 64px 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.fk-hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(67,56,202,0.18) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(99,102,241,0.08) 0%, transparent 45%);
    pointer-events: none;
}
/* Card inside hero visual */
.fk-hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1.75rem;
    width: 100%;
    max-width: 340px;
    position: relative;
    z-index: 1;
}
.fk-hero-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.25rem;
}
.fk-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);
}
.fk-hero-card-item:last-child { border-bottom: none; }
.fk-hero-card-icon {
    width: 32px;
    height: 32px;
    background: rgba(99,102,241,0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5b4fc;
    flex-shrink: 0;
}
.fk-hero-card-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.15rem;
}
.fk-hero-card-text span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}
@media (max-width: 900px) {
    .fk-hero-container { grid-template-columns: 1fr; }
    .fk-hero-content { padding: 3.5rem 1.5rem 2.5rem; }
    .fk-hero-content > * { max-width: 100%; margin-left: 0; }
    .fk-hero-visual { clip-path: none; padding: 2.5rem 1.5rem; min-height: auto; }
}

/* ===== MOCK FINANCIAL REPORT (hero right panel) ===== */
.fk-hero-report {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}
.fk-report-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}
.fk-report-header {
    background: rgba(3,105,161,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fk-report-header-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6ee7b7;
}
.fk-report-header-date {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    font-variant-numeric: tabular-nums;
}

/* Ledger rows inside report */
.fk-report-table {
    width: 100%;
}
.fk-report-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}
.fk-report-row:last-child { border-bottom: none; }
.fk-report-row--head {
    background: rgba(255,255,255,0.03);
    padding: 0.4rem 1.25rem;
}
.fk-report-col-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3);
}
.fk-report-date {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-variant-numeric: tabular-nums;
}
.fk-report-account {
    font-size: 0.78rem;
    color: #94a3b8;
}
.fk-report-amount {
    font-size: 0.82rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: right;
}
.fk-report-amount--pos { color: #4ade80; }
.fk-report-amount--neg { color: #f87171; }
.fk-report-amount--neu { color: #94a3b8; }

.fk-report-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.fk-report-kpi {
    padding: 0.875rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.fk-report-kpi:last-child { border-right: none; }
.fk-report-kpi-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 0.25rem;
}
.fk-report-kpi-value {
    font-size: 1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #e2e8f0;
}
.fk-report-kpi-value--gold { color: var(--gold); }

/* Hero rating */
.fk-hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: var(--subtle);
}
.fk-stars { color: var(--gold); letter-spacing: 0.04em; }
.fk-hero-rating strong { color: var(--text); }

/* ===================================================
   LEDGER NUMBERS BAR (stats section)
   =================================================== */
.fk-ledger-bar {
    background: var(--bg-violet);
    border-top: 1px solid #e0e7ff;
    border-bottom: 1px solid #e0e7ff;
    padding: 0;
}
.fk-ledger-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.fk-ledger-item {
    padding: 1.75rem 2rem;
    text-align: center;
    border-right: 1px solid #e0e7ff;
    position: relative;
}
.fk-ledger-item:last-child { border-right: none; }
.fk-ledger-value {
    font-size: 2rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}
.fk-ledger-label {
    font-size: 0.8rem;
    color: var(--subtle);
    letter-spacing: 0.01em;
}

/* ===================================================
   SECTION FRAMEWORK
   =================================================== */
.fk-section { padding: 88px 0; }
.fk-section--gray { background: var(--bg-light); }
.fk-section--violet  { background: var(--bg-violet); }
.fk-section--dark {
    background: var(--dark);
    color: var(--white);
}
.fk-section--accent {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.fk-section--accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Section header */
.fk-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.fk-section-header--narrow { max-width: 580px; }
.fk-section-header--left { text-align: left; margin-left: 0; }

/* Section eyebrow – plain text with top border line, no pill */
.fk-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.875rem;
    border-top: 2px solid var(--primary);
    padding-top: 0.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.fk-section-header--left .fk-eyebrow { margin-left: 0; margin-right: 0; }
.fk-eyebrow--white {
    color: #6ee7b7;
    border-top-color: #6ee7b7;
}
.fk-eyebrow--center { margin-left: auto; margin-right: auto; }

/* Section titles */
.fk-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}
.fk-section--dark .fk-section-title,
.fk-section--accent .fk-section-title { color: var(--white); }
.fk-section-sub {
    font-size: 1.05rem;
    color: var(--subtle);
    line-height: 1.7;
}
.fk-section--dark .fk-section-sub,
.fk-section--accent .fk-section-sub { color: #94a3b8; }

/* ===================================================
   SERVICES SECTION
   1 wide featured card + 2 narrow secondary cards
   =================================================== */
.fk-services-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

/* Featured card – dark, wide */
.fk-service-featured {
    background: var(--dark);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.fk-service-featured::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(3,105,161,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.fk-service-featured-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    color: var(--white);
}
.fk-service-featured-icon svg { width: 26px; height: 26px; }
.fk-service-featured h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.fk-service-featured p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.fk-service-featured-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}
.fk-service-featured-list li {
    font-size: 0.88rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.fk-service-featured-list li::before {
    content: '→';
    color: var(--violet);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05em;
}
.fk-service-featured-link {
    display: inline-block;
    padding: 0.7rem 1.75rem;
    background: rgba(3,105,161,0.3);
    border: 1px solid rgba(3,105,161,0.5);
    color: #6ee7b7;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 50px;
    transition: background 0.2s;
    align-self: flex-start;
}
.fk-service-featured-link:hover {
    background: rgba(3,105,161,0.5);
    color: #6ee7b7;
}

/* Secondary service cards */
.fk-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.fk-service-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(3,105,161,0.08);
}
.fk-service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-violet);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.fk-service-card-icon svg { width: 22px; height: 22px; }
.fk-service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.65rem;
}
.fk-service-card p {
    font-size: 0.88rem;
    color: var(--body);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
}
.fk-service-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    align-self: flex-start;
}
.fk-service-card-link:hover { text-decoration: underline; }

/* ===================================================
   PROCESS TIMELINE (vertical, numbered)
   =================================================== */
.fk-timeline {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.fk-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    z-index: 0;
}
.fk-timeline-step {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}
.fk-timeline-step:last-child { margin-bottom: 0; }
.fk-timeline-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px var(--bg-violet), 0 0 0 6px var(--primary-light);
}
.fk-timeline-body { padding-top: 0.6rem; }
.fk-timeline-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
}
.fk-timeline-body p {
    font-size: 0.92rem;
    color: var(--body);
    line-height: 1.65;
    margin: 0;
}

/* ===================================================
   SITUATIONS SECTION
   2-col grid of diagnostic panels
   =================================================== */
.fk-situations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.fk-situation-panel {
    border-left: 3px solid var(--primary);
    background: var(--white);
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
    transition: border-left-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.fk-situation-panel:hover {
    border-left-color: var(--violet);
    box-shadow: 0 4px 16px rgba(3,105,161,0.1);
}
.fk-situation-pain {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
    line-height: 1.4;
}
.fk-situation-solution {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 500;
}

/* ===================================================
   WHY FINANCEKLAR (dark accent section)
   4 trust points in 2-col grid
   =================================================== */
.fk-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.fk-why-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.fk-why-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(3,105,161,0.3);
    line-height: 1;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    min-width: 2.5rem;
    text-align: right;
}
.fk-why-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}
.fk-why-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0;
}

/* ===================================================
   TEAM SECTION
   =================================================== */
.fk-team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 0 auto 2rem;
}
.fk-team-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.fk-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}
.fk-team-card picture {
    display: block;
    width: 100%;
}
.fk-team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.fk-team-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
}
.fk-team-info {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
}
.fk-team-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.fk-team-info span {
    font-size: 0.82rem;
    color: var(--subtle);
    display: block;
}
.fk-team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.65rem;
    padding: 0.28rem 0.7rem;
    background: #f0f9ff;
    border: 1px solid #dbeafe;
    border-radius: 50px;
    color: #0a66c2;
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.fk-team-linkedin:hover {
    background: #dbeafe;
    border-color: #93c5fd;
}
.fk-team-badge {
    display: inline-block;
    background: #eef2ff;
    color: #4338ca;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 50px;
    border: 1px solid #e0e7ff;
}

/* ===================================================
   PARTNER BAND (Lohnklar)
   =================================================== */
.fk-partner-band {
    background: var(--bg-violet);
    border-top: 1px solid #e0e7ff;
    border-bottom: 1px solid #e0e7ff;
    padding: 2.5rem 24px;
}
.fk-partner-band-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.fk-partner-band-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fk-partner-band-text { flex: 1; min-width: 240px; }
.fk-partner-band-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}
.fk-partner-band-text p { font-size: 0.88rem; color: var(--body); margin: 0; }
.fk-partner-band-text a { color: var(--primary); font-weight: 600; }
.fk-partner-band a.btn { flex-shrink: 0; white-space: nowrap; }

/* ===================================================
   FAQ – border-left accordion style
   =================================================== */
.fk-faq-list { max-width: 760px; margin: 0 auto; }
.fk-faq-item {
    border-left: 3px solid var(--border);
    margin-bottom: 0;
    border-bottom: 1px solid var(--border);
    transition: border-left-color 0.2s;
}
.fk-faq-item:first-child { border-top: 1px solid var(--border); }
.fk-faq-item.active { border-left-color: var(--primary); }
.fk-faq-q {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 1.25rem;
    background: transparent;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    text-align: left;
    gap: 1rem;
    line-height: 1.4;
}
.fk-faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
}
.fk-faq-a {
    display: none;
    padding: 0 1.5rem 1.25rem 1.25rem;
    color: var(--body);
    line-height: 1.8;
    font-size: 0.93rem;
}
.fk-faq-item.active .fk-faq-a { display: block; }
.fk-faq-item.active .fk-faq-q::after { content: '−'; }

/* ===================================================
   CTA BAND – two-column, diagonal gradient + grid overlay
   =================================================== */
.fk-cta-band {
    background: linear-gradient(135deg, var(--dark) 0%, #4338ca 100%);
    padding: 88px 24px;
    position: relative;
    overflow: hidden;
}
.fk-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.fk-cta-band-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.fk-cta-band-left h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.875rem;
    line-height: 1.2;
}
.fk-cta-band-left p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
}
.fk-cta-band-right {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: flex-start;
    flex-shrink: 0;
}
/* CTA band: centered / simple variant (direct h2 + p + fk-cta-band-btns) */
.fk-cta-band > .container > h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.875rem;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 1;
}
.fk-cta-band > .container > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.fk-cta-band-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* ===================================================
   BREADCRUMB
   =================================================== */
/* Standalone breadcrumb (landing pages/articles, transparent over any background) */
.fk-breadcrumb { background: transparent; padding: 0; margin-bottom: 0; }
.fk-breadcrumb-inner {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(31,41,55,0.45);
    margin-bottom: 0.6rem;
}
.fk-breadcrumb a { color: rgba(67,56,202,0.7); text-decoration: none; }
.fk-breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
/* Breadcrumb on dark hero backgrounds */
.fk-hero-dark .fk-breadcrumb-inner,
.fk-hero .fk-breadcrumb-inner { color: rgba(255,255,255,0.5); }
.fk-hero-dark .fk-breadcrumb a,
.fk-hero .fk-breadcrumb a { color: rgba(255,255,255,0.75); }
.fk-hero-dark .fk-breadcrumb a:hover,
.fk-hero .fk-breadcrumb a:hover { color: #fff; }

/* ===================================================
   FOOTER
   =================================================== */
.fk-footer {
    background: var(--dark);
    color: #94a3b8;
}
.fk-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 24px 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.fk-footer-brand .fk-logo {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
.fk-footer-brand .fk-logo-icon { width: 28px; height: 28px; flex-shrink: 0; opacity: 0.9; }
.fk-footer-brand .fk-logo-text { display: flex; flex-direction: column; gap: 0.05rem; }
.fk-footer-brand .fk-logo-wordmark { display: block; }
.fk-footer-brand .fk-logo-finance { color: #fff; }
.fk-footer-brand .fk-logo-klar { color: var(--primary); }
.fk-footer-brand .fk-logo-service {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    color: #94a3b8;
    letter-spacing: 0.02em;
}
.fk-footer-brand .fk-logo-service strong { color: #cbd5e1; font-weight: 600; }
.fk-footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.75rem; }
.fk-footer-contact { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; margin-bottom: 1.25rem; }
.fk-footer-contact a { font-size: 0.85rem; color: #94a3b8; transition: color 0.15s; text-decoration: none; }
.fk-footer-contact a:hover { color: #6ee7b7; }
.fk-footer-cta {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.fk-footer-cta:hover { opacity: 0.88; color: #fff; }
.fk-footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e2e8f0;
    margin-bottom: 1rem;
}
.fk-footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.fk-footer-col a { font-size: 0.88rem; color: #94a3b8; transition: color 0.15s; text-decoration: none; }
.fk-footer-col a:hover { color: #6ee7b7; }

/* ===================================================
   REVEAL ANIMATION
   =================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===================================================
   LEGAL PAGES
   =================================================== */
.fk-legal {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.fk-legal h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
}
.fk-legal h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2rem 0 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.fk-legal h2:first-of-type { border-top: none; padding-top: 0; }
.fk-legal h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 1.5rem 0 0.5rem; }
.fk-legal p { color: var(--body); line-height: 1.8; margin-bottom: 1rem; }
.fk-legal ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.fk-legal li { color: var(--body); line-height: 1.8; margin-bottom: 0.4rem; }
.fk-legal a { color: var(--primary); }
.fk-legal address { font-style: normal; line-height: 1.8; color: var(--body); margin-bottom: 1rem; }
.fk-notice-box {
    background: var(--bg-violet);
    border: 1px solid #e0e7ff;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-size: 0.92rem;
}

/* ===================================================
   DATENSCHUTZ PAGE
   =================================================== */
.dse-hero {
    background: linear-gradient(135deg, var(--dark), #0c2a4a);
    padding: 3rem 1.5rem 2.5rem;
    text-align: center;
}
.dse-hero h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.dse-hero p { color: #94a3b8; font-size: 1rem; max-width: 640px; margin: 0 auto; }
.dse-wrap { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.dse-toc {
    background: var(--bg-violet);
    border: 1px solid #e0e7ff;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}
.dse-toc h2 { font-size: 0.9rem; font-weight: 700; color: var(--primary-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; padding: 0; border: none; }
.dse-toc ol { margin-left: 1.25rem; padding: 0; }
.dse-toc li { margin-bottom: 0.3rem; font-size: 0.9rem; }
.dse-toc a { color: var(--primary); }
.dse-section { margin-bottom: 2rem; }
.dse-section h2 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin: 2rem 0 0.75rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.dse-section h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 1.25rem 0 0.5rem; }
.dse-section p, .dse-section ul { color: var(--body); line-height: 1.8; margin-bottom: 0.875rem; }
.dse-section ul { padding-left: 1.5rem; list-style: disc; }
.dse-section a { color: var(--primary); }
.dse-widerspruch {
    background: #fefce8;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: #92400e;
}
.dse-info {
    background: var(--bg-violet);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
}
.dse-info p { margin: 0; color: var(--body); }
.dse-stand { font-size: 0.82rem; color: var(--muted); font-style: italic; margin-top: 1.5rem; }

/* ===================================================
   BLOG INDEX
   =================================================== */
.fk-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fk-blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.fk-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.fk-blog-card-body { padding: 1.5rem; }
.fk-blog-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.fk-blog-cat--buchhaltung   { background: #dbeafe; color: #1d4ed8; }
.fk-blog-cat--finance       { background: #eef2ff; color: #4338ca; }
.fk-blog-cat--steuern       { background: #fef3c7; color: #92400e; }
.fk-blog-cat--tools         { background: #e0e7ff; color: #5b21b6; }
.fk-blog-cat--recht         { background: #fee2e2; color: #991b1b; }
.fk-blog-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.fk-blog-card p { font-size: 0.88rem; color: var(--body); margin-bottom: 1rem; }
.fk-blog-card-meta { font-size: 0.78rem; color: var(--subtle); }
.fk-blog-card-link {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    transition: background 0.15s;
}
.fk-blog-card-link:hover { background: var(--bg-violet); }
.fk-blog-empty { display: none; text-align: center; color: var(--subtle); padding: 2rem; font-size: 0.95rem; }
.fk-blog-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 2rem auto 2rem;
    padding: 0 24px;
}
.fk-blog-filter-btn {
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--subtle);
    cursor: pointer;
    transition: all 0.15s;
}
.fk-blog-filter-btn:hover,
.fk-blog-filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-violet);
}
.fk-blog-hero {
    background: linear-gradient(135deg, var(--dark), #0c2a4a);
    padding: 3.5rem 24px 2.5rem;
    text-align: center;
}
.fk-blog-hero .fk-eyebrow { color: #6ee7b7; border-top-color: #6ee7b7; margin-left: auto; margin-right: auto; }
.fk-blog-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0.75rem 0 0.5rem;
}
.fk-blog-hero p { color: #94a3b8; font-size: 1rem; }
.fk-blog-section { padding: 3rem 0 4rem; }

/* ===================================================
   BLOG ARTICLE (prefix: fk-art-)
   =================================================== */
.fk-art-header {
    padding: 3.5rem 0 2rem;
    background: linear-gradient(135deg, var(--bg-violet), #eef2ff);
}
.fk-art-header-inner { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.fk-art-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.fk-art-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--subtle);
    font-size: 0.88rem;
}
.fk-art-meta strong { color: var(--dark); }
.fk-art-body { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.fk-art-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}
.fk-art-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.75rem 0 0.75rem;
}
.fk-art-body p { color: var(--body); line-height: 1.8; margin-bottom: 1.25rem; }
.fk-art-body ul, .fk-art-body ol {
    color: var(--body);
    line-height: 1.8;
    margin: 1rem 0 1.25rem 1.5rem;
}
.fk-art-body li { margin-bottom: 0.5rem; }
.fk-art-body strong { color: var(--dark); }
.fk-art-body a { color: var(--primary); }

.fk-info-box {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}
.fk-info-box p { margin: 0; color: #1e40af; }
.fk-warn-box {
    background: #fefce8;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}
.fk-warn-box p { margin: 0; color: #92400e; }
.fk-violet-box {
    background: var(--bg-violet);
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}
.fk-violet-box p { margin: 0; color: var(--primary-dark); }

.fk-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.fk-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.fk-table th { background: var(--dark); color: #fff; padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
.fk-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); color: var(--body); }
.fk-table tr:nth-child(even) td { background: var(--bg-light); }

.fk-toc {
    background: var(--bg-violet);
    border: 1px solid #e0e7ff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}
.fk-toc h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}
.fk-toc ol { margin: 0 0 0 1.25rem; padding: 0; }
.fk-toc li { margin-bottom: 0.3rem; font-size: 0.9rem; }
.fk-toc a { color: var(--primary); text-decoration: none; }
.fk-toc a:hover { text-decoration: underline; }

.fk-art-cta {
    background: linear-gradient(135deg, var(--dark), #0c2a4a);
    color: #fff;
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    text-align: center;
}
.fk-art-cta h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    border: none;
    padding: 0;
    margin-top: 0;
}
.fk-art-cta p { color: #94a3b8; margin-bottom: 1.5rem; line-height: 1.7; }

.fk-author-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 3rem 0 2rem;
    border: 1px solid var(--border);
}
.fk-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
}
.fk-author-info strong { display: block; color: var(--dark); font-size: 1rem; margin-bottom: 0.2rem; }
.fk-author-info span { color: var(--subtle); font-size: 0.85rem; display: block; margin-bottom: 0.5rem; }
.fk-author-info p { color: var(--body); font-size: 0.9rem; line-height: 1.6; margin: 0; }

.fk-related { background: var(--bg-light); padding: 2rem; border-radius: 12px; margin: 2rem 0; }
.fk-related h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; border: none; padding: 0; margin-top: 0; }
.fk-related ul { list-style: none; padding: 0; margin: 0; }
.fk-related li { margin-bottom: 0.5rem; }
.fk-related a { color: var(--primary); text-decoration: none; font-size: 0.95rem; }
.fk-related a:hover { text-decoration: underline; }

/* ===================================================
   SERVICE PAGE COMMON
   =================================================== */

/* Dark hero variant for service pages */
.fk-page-hero {
    background: var(--dark);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.fk-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(3,105,161,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.fk-page-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;
}
.fk-page-hero-eyebrow {
    display: inline-block;
    background: rgba(3,105,161,0.25);
    border: 1px solid rgba(3,105,161,0.5);
    color: #6ee7b7;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.fk-page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.fk-page-hero h1 .fk-highlight { color: #6ee7b7; }
.fk-page-hero-sub {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.fk-page-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.fk-page-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.fk-page-hero-trust .fk-trust-item { color: #94a3b8; }
.fk-page-hero-trust .fk-trust-item strong { color: #e2e8f0; }
.fk-page-hero-trust .fk-trust-item svg { color: #6ee7b7; }

/* Light hero variant */
.fk-page-hero--light {
    background: linear-gradient(135deg, var(--bg-violet), #eef2ff);
}
.fk-page-hero--light::before { display: none; }
.fk-page-hero--light h1 { color: var(--dark); }
.fk-page-hero--light h1 .fk-highlight { color: var(--primary); -webkit-text-fill-color: unset; background: none; }
.fk-page-hero--light .fk-page-hero-sub { color: var(--body); }
.fk-page-hero--light .fk-page-hero-trust { border-top-color: rgba(0,0,0,0.1); }
.fk-page-hero--light .fk-page-hero-trust .fk-trust-item { color: var(--subtle); }
.fk-page-hero--light .fk-page-hero-trust .fk-trust-item strong { color: var(--dark); }
.fk-page-hero--light .fk-page-hero-trust .fk-trust-item svg { color: var(--primary); }
.fk-page-hero--light .fk-page-hero-eyebrow {
    background: rgba(3,105,161,0.1);
    border-color: rgba(3,105,161,0.25);
    color: var(--primary-dark);
}

/* Hero visual (right side of service pages) */
.fk-page-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mock "Buchungszeilen" code block for buchhaltung hero */
.fk-buchungs-mock {
    background: #0d1b2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', Menlo, monospace;
}
.fk-buchungs-bar {
    background: rgba(3,105,161,0.2);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fk-buchungs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.fk-buchungs-dot:nth-child(1) { background: #ef4444; opacity: 0.6; }
.fk-buchungs-dot:nth-child(2) { background: #f59e0b; opacity: 0.6; }
.fk-buchungs-dot:nth-child(3) { background: #22c55e; opacity: 0.6; }
.fk-buchungs-filename {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    margin-left: 0.5rem;
}
.fk-buchungs-table {
    padding: 1rem;
}
.fk-buchungs-thead {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1rem;
    padding: 0 0.5rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0.5rem;
}
.fk-buchungs-th {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.25);
}
.fk-buchungs-row {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1rem;
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
    align-items: center;
}
.fk-buchungs-row:hover { background: rgba(255,255,255,0.03); }
.fk-buchungs-cell {
    font-size: 0.75rem;
    color: #94a3b8;
    font-variant-numeric: tabular-nums;
}
.fk-buchungs-cell--date { color: rgba(255,255,255,0.3); }
.fk-buchungs-cell--account { color: #6ee7b7; }
.fk-buchungs-cell--amount { text-align: right; font-weight: 600; }
.fk-buchungs-cell--pos { color: #4ade80; }
.fk-buchungs-cell--neg { color: #f87171; }

/* Timeline visual for finance-manager hero */
.fk-fm-timeline {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
}
.fk-fm-timeline-title {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6ee7b7;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.fk-fm-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    position: relative;
}
.fk-fm-step:last-child { margin-bottom: 0; }
.fk-fm-step::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: -1.25rem;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.fk-fm-step:last-child::before { display: none; }
.fk-fm-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(3,105,161,0.3);
    border: 1px solid rgba(3,105,161,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    color: #6ee7b7;
}
.fk-fm-step-body strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.1rem;
}
.fk-fm-step-body span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}

/* CSS-only bar chart for controlling hero */
.fk-ct-bars {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 380px;
}
.fk-ct-bars-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.fk-ct-chart-area {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 140px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}
.fk-ct-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    justify-content: flex-end;
}
.fk-ct-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    transition: opacity 0.2s;
}
.fk-ct-bar:hover { opacity: 0.8; }
.fk-ct-bar--1 { height: 55%; background: #e0e7ff; }
.fk-ct-bar--2 { height: 72%; background: #6ee7b7; }
.fk-ct-bar--3 { height: 64%; background: #818cf8; }
.fk-ct-bar--4 { height: 88%; background: var(--primary); }
.fk-ct-bar-label {
    font-size: 0.68rem;
    color: var(--subtle);
    font-variant-numeric: tabular-nums;
}
.fk-ct-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.fk-ct-kpi {
    background: var(--bg-violet);
    border-radius: 6px;
    padding: 0.5rem 0.6rem;
    text-align: center;
}
.fk-ct-kpi-val {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
    display: block;
}
.fk-ct-kpi-lbl {
    font-size: 0.6rem;
    color: var(--subtle);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
}

/* Scope items (service detail pages) */
.fk-service-scope {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.fk-scope-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: var(--bg-violet);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}
.fk-scope-check {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}
.fk-scope-text strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 0.15rem; }
.fk-scope-text span { font-size: 0.82rem; color: var(--body); }

/* Cards (used in service pages problem/solution sections) */
.fk-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fk-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.fk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.fk-card--featured { border-top: 4px solid var(--primary); }
.fk-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg-violet);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.fk-card-icon svg { width: 26px; height: 26px; }
.fk-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.fk-card p {
    font-size: 0.95rem;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.fk-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}
.fk-card-link:hover { text-decoration: underline; }

/* Process steps – horizontal (service pages) */
.fk-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
.fk-steps--4 { grid-template-columns: repeat(4, 1fr); }
.fk-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    z-index: 0;
}
.fk-step { text-align: center; position: relative; z-index: 1; }
.fk-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(3,105,161,0.35);
}
.fk-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.fk-step p { font-size: 0.88rem; color: var(--body); }

/* ===================================================
   KONTAKT PAGE
   =================================================== */
.fk-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.fk-contact-info h2 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.fk-contact-info p { color: var(--body); line-height: 1.8; margin-bottom: 1.5rem; }
.fk-contact-detail { display: flex; flex-direction: column; gap: 0.875rem; }
.fk-contact-item { display: flex; gap: 0.875rem; align-items: flex-start; }
.fk-contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-violet);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fk-contact-item-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 0.1rem; }
.fk-contact-item-text span, .fk-contact-item-text a { font-size: 0.9rem; color: var(--body); }
.fk-contact-item-text a:hover { color: var(--primary); }
.fk-calendly-box {
    background: var(--bg-violet);
    border: 1px solid #e0e7ff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}
.fk-calendly-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.fk-calendly-box p { font-size: 0.9rem; color: var(--subtle); margin-bottom: 1.5rem; }
.fk-calendly-hint { margin-top: 1rem; font-size: 0.82rem; color: var(--muted); }

/* ===================================================
   ÜBER UNS
   =================================================== */
.fk-about-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}
.fk-about-intro p { font-size: 1.1rem; color: var(--body); line-height: 1.8; }
.fk-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fk-value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
}
.fk-value-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.fk-value-card p { font-size: 0.9rem; color: var(--body); margin: 0; line-height: 1.7; }
.fk-value-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ===================================================
   UTILITY
   =================================================== */
.fk-text-center-mt { text-align: center; margin-top: 2rem; }
.fk-relative { position: relative; }
.fk-link-primary { color: var(--primary); font-weight: 600; }
.fk-blog-empty--visible { display: block; }

/* ===================================================
   RELATED SERVICES GRID
   =================================================== */
.fk-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.fk-related-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.fk-related-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
    color: inherit;
}
.fk-related-card strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.fk-related-card span {
    font-size: 0.875rem;
    color: var(--body);
    line-height: 1.5;
}

/* ===================================================
   FINANZPLANUNG PAGE (fkfp-)
   =================================================== */
.fkfp-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.fkfp-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.fkfp-service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}
.fkfp-service-card p {
    font-size: 0.9375rem;
    color: var(--body);
    line-height: 1.65;
}
.fkfp-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}
.fkfp-icon svg { width: 20px; height: 20px; }

/* ===================================================
   UMSATZSTEUER PAGE (fkust-)
   =================================================== */
.fkust-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.fkust-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.fkust-service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}
.fkust-service-card p {
    font-size: 0.9375rem;
    color: var(--body);
    line-height: 1.65;
}
.fkust-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}
.fkust-icon svg { width: 20px; height: 20px; }
.fkust-ablauf {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
}
.fkust-ablauf::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.666% + 1rem);
    right: calc(16.666% + 1rem);
    height: 2px;
    background: var(--primary-light);
    z-index: 0;
}
.fkust-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}
.fkust-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fkust-step h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.fkust-step p { font-size: 0.875rem; color: var(--body); line-height: 1.55; }

/* ===================================================
   LIQUIDITAET PAGE (fkliq-)
   =================================================== */
.fkliq-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.fkliq-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.fkliq-service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}
.fkliq-service-card p {
    font-size: 0.9375rem;
    color: var(--body);
    line-height: 1.65;
}
.fkliq-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}
.fkliq-icon svg { width: 20px; height: 20px; }
/* Cashflow visual */
.fkliq-cashflow-visual {
    background: #0c1a2e;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2.5rem;
}
.fkliq-cashflow-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #818cf8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.fkliq-cashflow-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
}
.fkliq-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}
.fkliq-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: var(--primary);
    transition: background 0.2s;
}
.fkliq-bar--warn { background: #f59e0b; }
.fkliq-bar--danger { background: #ef4444; }
.fkliq-bar-label {
    font-size: 0.625rem;
    color: #9ca3af;
    text-align: center;
    line-height: 1.2;
}
.fkliq-cashflow-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.fkliq-legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #9ca3af;
}
.fkliq-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}
.fkliq-warn-box {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-left: 4px solid #ef4444;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.fkliq-warn-icon {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}
.fkliq-warn-text strong { display: block; color: #b91c1c; font-weight: 700; margin-bottom: 0.25rem; }
.fkliq-warn-text p { font-size: 0.9375rem; color: var(--body); margin: 0; }

/* ===================================================
   RESPONSIVE – new pages
   =================================================== */
@media (max-width: 1024px) {
    .fk-related-grid { grid-template-columns: repeat(2, 1fr); }
    .fkust-ablauf { grid-template-columns: 1fr; }
    .fkust-ablauf::before { display: none; }
}
@media (max-width: 768px) {
    .fk-related-grid { grid-template-columns: 1fr 1fr; }
    .fkfp-services-grid { grid-template-columns: 1fr; }
    .fkust-services-grid { grid-template-columns: 1fr; }
    .fkliq-services-grid { grid-template-columns: 1fr; }
    .fkliq-cashflow-bars { gap: 0.25rem; }
}
@media (max-width: 480px) {
    .fk-related-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .fk-hero { grid-template-columns: 1fr; }
    .fk-hero-left { padding: 64px 24px; }
    .fk-hero-left-inner { max-width: 100%; margin: 0; padding: 0; }
    .fk-hero-right { display: none; }
    .fk-services-layout { grid-template-columns: 1fr 1fr; }
    .fk-service-featured { grid-column: 1 / -1; }
    .fk-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .fk-footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .fk-team-grid { grid-template-columns: repeat(3, 1fr); }
    .fk-dropdown--mega { min-width: 440px; }
    .fk-ledger-inner { padding: 0 24px; }
    .fk-page-hero-container { grid-template-columns: 1fr; }
    .fk-page-hero-visual { display: none; }
    .fk-why-grid { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 768px) {
    .fk-topbar { display: none; }
    .fk-nav { top: 0; }

    .fk-hero { grid-template-columns: 1fr; min-height: auto; }
    .fk-hero-left { padding: 56px 24px 48px; }
    .fk-section { padding: 60px 0; }
    .fk-cards-grid { grid-template-columns: 1fr; }
    .fk-steps { grid-template-columns: 1fr 1fr; }
    .fk-steps--4 { grid-template-columns: repeat(2, 1fr); }
    .fk-steps::before { display: none; }
    .fk-services-layout { grid-template-columns: 1fr; }
    .fk-service-featured { grid-column: auto; }
    .fk-situations-grid { grid-template-columns: 1fr; }
    .fk-blog-grid { grid-template-columns: 1fr; }
    .fk-footer-container { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 1.5rem; }
    .fk-mobile-toggle { display: flex; }
    .fk-nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .fk-nav-menu.fk-nav-open { display: block; }
    .fk-nav-menu ul { flex-direction: column; gap: 0.25rem; }
    .fk-dropdown--mega {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        display: none;
        flex-direction: column;
        min-width: auto;
    }
    .fk-has-dropdown.fk-dropdown-open .fk-dropdown { display: flex; }
    .fk-dropdown-group { border-right: none; border-bottom: 1px solid var(--border); }
    .fk-dropdown-group:last-child { border-bottom: none; }
    .fk-author-box { flex-direction: column; }
    .fk-partner-band-inner { flex-direction: column; }
    .fk-ledger-inner { grid-template-columns: repeat(2, 1fr); }
    .fk-ledger-item:nth-child(2) { border-right: none; }
    .fk-ledger-item:nth-child(3) { border-top: 1px solid #e0e7ff; }
    .fk-timeline { padding: 0 1rem; }
    .fk-cta-band-inner { grid-template-columns: 1fr; gap: 2rem; }
    .fk-cta-band-right { align-items: stretch; }
    .fk-cta-band-right .btn { text-align: center; }
    .fk-service-scope { grid-template-columns: 1fr; }
    .fk-contact-grid { grid-template-columns: 1fr; }
    .fk-values-grid { grid-template-columns: 1fr; }
    .fk-why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .fk-steps { grid-template-columns: 1fr; }
    .fk-ledger-inner { grid-template-columns: repeat(2, 1fr); }
    .fk-hero-btns { flex-direction: column; }
    .fk-page-hero-btns { flex-direction: column; }
    .fk-blog-filter { gap: 0.35rem; }
    .fk-team-grid { grid-template-columns: repeat(2, 1fr); }
    .fk-ct-bars { max-width: 100%; }
}
@media (max-width: 360px) {
    .fk-team-grid { grid-template-columns: 1fr; }
}

/* === ÜBER UNS PAGE fk-uu- === */

.fk-uu-breadcrumb-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
}
.fk-uu-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--subtle);
}
.fk-uu-breadcrumb a {
    color: var(--subtle);
    text-decoration: none;
}
.fk-uu-breadcrumb a:hover { color: var(--primary); }

.fk-uu-hero {
    background: var(--dark);
    background-image: linear-gradient(135deg, rgba(67, 56, 202, 0.18) 0%, transparent 60%);
    padding: 5rem 0 4.5rem;
}
.fk-uu-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.fk-uu-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #818cf8;
    margin-bottom: 1rem;
}
.fk-uu-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.25rem;
}
.fk-uu-hero h1 span {
    color: #818cf8;
}
.fk-uu-hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #c7d2fe;
    margin-bottom: 2rem;
    max-width: 520px;
}
.fk-uu-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.fk-uu-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ffffff;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.fk-uu-btn-white:hover {
    background: #e0e7ff;
    color: var(--primary-dark);
    transform: translateY(-1px);
}
.fk-uu-btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.fk-uu-btn-white-outline:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Stats card on the right */
.fk-uu-stats-card {
    background: #0c1a2e;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(129, 140, 248, 0.08);
}
.fk-uu-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.fk-uu-stat-num {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.fk-uu-stat-label {
    font-size: 0.88rem;
    color: #93c5fd;
    font-weight: 500;
}

@media (max-width: 900px) {
    .fk-uu-hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .fk-uu-hero-sub { max-width: 100%; }
    .fk-uu-stats-card { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .fk-uu-hero { padding: 3rem 0 2.5rem; }
    .fk-uu-hero-btns { flex-direction: column; }
    .fk-uu-stats-card { padding: 1.75rem 1.25rem; gap: 1.5rem 1rem; }
}

/* ===== BLOG ARTICLE (fk-ba-) ===== */
.fk-ba-header {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    padding: 3rem 0 2.5rem;
}
.fk-ba-header-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.fk-ba-breadcrumb {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(31,41,55,0.4);
    margin-bottom: 0.75rem;
}
.fk-ba-breadcrumb a { color: rgba(67,56,202,0.7); text-decoration: none; }
.fk-ba-breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.fk-ba-breadcrumb span { color: rgba(31,41,55,0.3); }
.fk-ba-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: #e0e7ff;
    color: #4338ca;
    margin-bottom: 1rem;
}
.fk-ba-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 1rem;
    line-height: 1.25;
}
.fk-ba-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--subtle);
    font-size: 0.88rem;
}
.fk-ba-meta strong { color: var(--text); }
.fk-tldr { background: #eef2ff; border-left: 4px solid #4338ca; border-radius: 0 12px 12px 0; padding: 1.1rem 1.4rem; margin: 0 0 2rem; box-shadow: 0 2px 8px rgba(67,56,202,.08); }
.fk-tldr-label { font-size: .7rem; font-weight: 800; letter-spacing: .1em; color: #4338ca; text-transform: uppercase; margin-bottom: .35rem; }
.fk-tldr p { font-size: .975rem; line-height: 1.65; color: #312e81; margin: 0; font-weight: 500; }

.fk-ba-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}
.fk-ba-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}
.fk-ba-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.75rem 0 0.75rem;
}
.fk-ba-body p { color: var(--body); line-height: 1.8; margin-bottom: 1.25rem; }
.fk-ba-body ul, .fk-ba-body ol {
    color: var(--body);
    line-height: 1.8;
    margin: 1rem 0 1.25rem 1.5rem;
}
.fk-ba-body ol { list-style: decimal; }
.fk-ba-body li { margin-bottom: 0.5rem; }
.fk-ba-body strong { color: var(--text); }
.fk-ba-body a { color: var(--primary); }

.fk-ba-toc {
    background: var(--bg-violet);
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}
.fk-ba-toc h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}
.fk-ba-toc ol { margin: 0 0 0 1.25rem; padding: 0; }
.fk-ba-toc li { margin-bottom: 0.3rem; font-size: 0.9rem; }
.fk-ba-toc a { color: var(--primary); text-decoration: none; }
.fk-ba-toc a:hover { text-decoration: underline; }

.fk-ba-info-box {
    background: #eef2ff;
    border-left: 4px solid #4338ca;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}
.fk-ba-info-box p { margin: 0; color: #3730a3; }
.fk-ba-warn-box {
    background: #fefce8;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}
.fk-ba-warn-box p { margin: 0; color: #92400e; }

.fk-ba-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.fk-ba-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.fk-ba-table th { background: #3730a3; color: #fff; padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
.fk-ba-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); color: var(--body); }
.fk-ba-table tr:nth-child(even) td { background: #f8fafc; }

.fk-ba-cta-box {
    background: linear-gradient(135deg, #4338ca, #3730a3);
    color: #fff;
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    text-align: center;
}
.fk-ba-cta-box h3 { color: #fff; margin: 0 0 0.75rem; font-size: 1.25rem; font-weight: 700; }
.fk-ba-cta-box p { color: #e0e7ff; margin: 0 0 1.25rem; }
.fk-ba-cta-box a {
    display: inline-block;
    background: #fff;
    color: #4338ca;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}
.fk-ba-cta-box a:hover { background: #eef2ff; }

.fk-ba-author-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 3rem 0 2rem;
    border: 1px solid var(--border);
}
.fk-ba-author-info { flex: 1; }
.fk-ba-author-info strong { display: block; color: var(--text); font-size: 1rem; margin-bottom: 0.2rem; }
.fk-ba-author-info span { font-size: 0.85rem; color: var(--subtle); display: block; margin-bottom: 0.5rem; }
.fk-ba-author-info p { margin: 0; font-size: 0.9rem; color: var(--body); line-height: 1.6; }

.fk-ba-related {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 2.5rem;
}
.fk-ba-related h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 1rem; font-weight: 700; }
.fk-ba-related ul { margin: 0; list-style: none; padding: 0; }
.fk-ba-related li { margin-bottom: 0.5rem; }
.fk-ba-related a { color: var(--primary); font-size: 0.95rem; text-decoration: none; }
.fk-ba-related a:hover { text-decoration: underline; }

/* === BLOG SEARCH fk-blog-search- === */

.fk-blog-search-bar {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1.5rem 0;
}
.fk-blog-search-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
}
.fk-blog-search-icon {
    position: absolute;
    left: 1rem;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.fk-blog-search-input {
    width: 100%;
    padding: 0.7rem 3rem 0.7rem 2.75rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.fk-blog-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.12);
}
.fk-blog-search-input::placeholder { color: var(--muted); }
/* hide the native clear button in search inputs */
.fk-blog-search-input::-webkit-search-cancel-button { display: none; }

.fk-blog-search-clear {
    position: absolute;
    right: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--subtle);
    line-height: 1;
    padding: 0 0.25rem;
    display: flex;
    align-items: center;
    transition: color 0.15s;
}
.fk-blog-search-clear:hover { color: var(--primary); }

@media (max-width: 600px) {
    .fk-blog-search-bar { padding: 1.25rem 1rem 0; }
    .fk-blog-search-input { font-size: 1rem; }
}

/* ============================================================
   Cookie Consent Banner (fk-cookie-)
   ============================================================ */
.fk-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 1rem 1rem;
    pointer-events: none;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.fk-cookie-banner.fk-cookie-visible {
    transform: translateY(0);
    pointer-events: auto;
}
.fk-cookie-inner {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 1.25rem 1.5rem;
}
.fk-cookie-text {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}
.fk-cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.fk-cookie-settings-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.875rem;
    color: #4338ca;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: auto;
    transition: color 0.2s;
}
.fk-cookie-settings-btn:hover {
    color: #3730a3;
}
.fk-cookie-chevron {
    font-size: 0.7rem;
    display: inline-block;
    transition: transform 0.2s;
}
.fk-cookie-settings-btn[aria-expanded="true"] .fk-cookie-chevron {
    transform: rotate(180deg);
}
.fk-cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.fk-cookie-btn-primary {
    background: #4338ca;
    color: #ffffff;
    border-color: #4338ca;
}
.fk-cookie-btn-primary:hover {
    background: #3730a3;
    border-color: #3730a3;
}
.fk-cookie-btn-outline {
    background: transparent;
    color: #4338ca;
    border-color: #4338ca;
}
.fk-cookie-btn-outline:hover {
    background: #eef2ff;
}
.fk-cookie-details {
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.fk-cookie-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.fk-cookie-detail-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.fk-cookie-detail-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}
.fk-cookie-detail-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
}
.fk-cookie-badge-always {
    background: #d1fae5;
    color: #065f46;
}
.fk-cookie-badge-consent {
    background: #e0e7ff;
    color: #3730a3;
}
.fk-cookie-detail-desc {
    margin: 0;
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
}
@media (max-width: 600px) {
    .fk-cookie-inner {
        padding: 1rem 1rem;
    }
    .fk-cookie-actions {
        gap: 0.5rem;
    }
    .fk-cookie-settings-btn {
        margin-right: 0;
        width: 100%;
    }
    .fk-cookie-btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }
}

/* ===================================================
   READING PROGRESS BAR
   =================================================== */
#fk-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #4338ca, #818cf8);
    z-index: 10000;
    transition: width 0.08s linear;
    pointer-events: none;
}

/* ===== BLOG AUTHOR PHOTO ===== */
.fk-ba-author-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
    border: 2px solid #e0e7ff;
}

/* ===== SHARE BAR ===== */
.fk-share-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 2rem 0 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #eef2ff;
    border-radius: 12px;
    border: 1px solid #c7d2fe;
}
.fk-share-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    margin-right: 0.25rem;
}
.fk-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    background: transparent;
    border: 1.5px solid #4338ca;
    color: #4338ca;
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s;
}
.fk-share-btn:hover { background: #4338ca; color: #fff; border-color: #4338ca; transform: translateY(-1px); filter: none; }

/* ===== AUTHOR BOX – picture wrapper fix ===== */
.fk-ba-author-box picture {
    display: block;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}
.fk-ba-author-photo {
    display: block;
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 2px solid #e0e7ff;
    overflow: hidden;
}
.fk-share-privacy {
    margin-left: auto;
    font-size: 0.7rem;
    color: #9ca3af;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .fk-share-bar { flex-wrap: wrap; }
    .fk-share-privacy { width: 100%; margin-left: 0; margin-top: 0.25rem; }
}

/* ===== PARTNER BAND (ueber-uns.php) ===== */
.fk-index-partner {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 2rem 1.5rem;
}
.fk-index-partner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.fk-index-partner-icon {
    color: var(--primary);
    flex-shrink: 0;
}
.fk-index-partner-text {
    flex: 1;
    min-width: 200px;
}
.fk-index-partner-text strong {
    display: block;
    font-weight: 700;
    color: #1f2937;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.fk-index-partner-text p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}
@media (max-width: 640px) {
    .fk-index-partner-inner { flex-direction: column; text-align: center; }
}

/* === Pricing-Hint-Band (fk-pricing-hint) === */
.fk-pricing-hint { background: #f5f3ff; border-bottom: 1px solid #ddd6fe; padding: 0.6rem 0; }
.fk-pricing-hint-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; color: #4338ca; }
.fk-pricing-hint-label { font-weight: 700; }
.fk-pricing-hint-sep { color: #a5b4fc; }
.fk-pricing-hint-link { color: #4338ca; font-weight: 600; text-decoration: none; }
.fk-pricing-hint-link:hover { text-decoration: underline; }
@media (max-width: 640px) { .fk-pricing-hint-inner { gap: 0.5rem; justify-content: center; } }

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

/* Exit-Intent-CTA vor fk-sources */
.fk-pre-sources-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.5rem;
}
.fk-pre-sources-cta p {
    margin: 0;
    font-size: 0.95rem;
    color: #3730a3;
    font-weight: 500;
}
.fk-pre-sources-cta a {
    color: #4338ca;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
}
.fk-pre-sources-cta a:hover { text-decoration: underline; }
@media (max-width: 600px) {
    .fk-pre-sources-cta { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
