/* ============================================================
   /employer-of-record-brauchst-du-das  (Prefix: eor-)
   Hero Navy flat nach CI (Entscheidungsthema). Die Hero-Figur
   nutzt die globale .lk-figure, hier liegt nur das Diagramm:
   ein Stapel aus zwoelf Monatsbloecken gegen einen flachen Block.
   ============================================================ */

.eor-hero {
    background: #1e3a5f;
    padding: 4.5rem 0 4rem;
    color: #fff;
}
.eor-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
/* Die globale Regel nav{position:fixed} trifft JEDES nav-Element, auch diesen
   Breadcrumb. Ohne den Reset klebt er oben in der Navigationsleiste.
   Gleiche Loesung wie bei .ba-breadcrumb und .ba-toc. */
nav.eor-crumb {
    position: static !important;
    top: auto !important;
    z-index: auto !important;
    height: auto;
    margin-bottom: .9rem;
    padding: 0;
    background: none;
    box-shadow: none;
    font-size: .84rem;
}
.eor-crumb a {
    color: #93c5fd;
    text-decoration-color: #6ee7b7;
    text-decoration-thickness: 2px;
}
.eor-crumb a:hover { color: #fff; }
.eor-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}
.eor-hero-sub {
    margin: 0 0 1.8rem;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #dbeafe;
    max-width: 34em;
}
.eor-hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; }

/* --- Diagramm: der Stapel --- */
.eor-stapel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    align-items: end;
    width: 100%;
    margin: .6rem 0 1.4rem;
    min-height: 190px;
}
.eor-stapel-spalte { text-align: center; }
.eor-stapel-turm {
    display: flex;
    flex-direction: column-reverse;
    gap: 3px;
    justify-content: flex-start;
    margin-bottom: .7rem;
}
.eor-stapel-turm span {
    display: block;
    height: 11px;
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    border-radius: 2px;
    transform-origin: left center;
    animation: eor-block-ein .34s ease-out backwards;
    animation-delay: calc(.25s + var(--i) * .055s);
}
.eor-stapel-turm--klein span {
    height: 11px;
    background: linear-gradient(90deg, #34d399, #6ee7b7);
}
@keyframes eor-block-ein {
    from { opacity: 0; transform: scaleX(.2); }
    to   { opacity: 1; transform: scaleX(1); }
}
.eor-stapel-wert {
    font-size: 1.02rem;
    font-weight: 800;
    color: #fff;
}
.eor-stapel-wert--gut { color: #6ee7b7; }
.eor-stapel-label {
    margin-top: .2rem;
    font-size: .76rem;
    line-height: 1.35;
    color: #93c5fd;
}

/* --- Fliesstext --- */
.eor-section { padding: 4rem 0; background: #fff; }
.eor-narrow { max-width: 820px; }
.eor-narrow h2 {
    margin: 3rem 0 1rem;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.25;
    color: #1f2937;
}
.eor-narrow h2:first-of-type { margin-top: 2.4rem; }
.eor-narrow p {
    margin: 0 0 1.1rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #4b5563;
}
.eor-narrow a { color: #2563eb; }

.eor-tldr {
    padding: 1.4rem 1.6rem;
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    border-radius: 0 10px 10px 0;
}
.eor-tldr-label {
    margin-bottom: .5rem;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #2563eb;
}
.eor-tldr p { margin: 0; color: #1f2937; }

/* --- Preistabelle --- */
.eor-tabelle-wrap { overflow-x: auto; margin: 1.4rem 0 .8rem; }
.eor-tabelle {
    width: 100%;
    border-collapse: collapse;
    font-size: .96rem;
}
.eor-tabelle th,
.eor-tabelle td {
    padding: .8rem .9rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.eor-tabelle th {
    font-size: .82rem;
    font-weight: 700;
    color: #1e3a5f;
    background: #f8fafc;
    border-bottom: 2px solid #dbeafe;
}
.eor-tabelle td { color: #4b5563; }
.eor-tabelle td:first-child { font-weight: 700; color: #1f2937; }
.eor-tabelle td span {
    display: block;
    font-size: .82rem;
    color: #6b7280;
}
.eor-quelle {
    font-size: .88rem !important;
    color: #6b7280 !important;
}

/* --- Alternativen --- */
.eor-alt { margin: 1.6rem 0 2.4rem; }
.eor-alt-item {
    padding: 1.5rem 1.6rem;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #2563eb;
    border-radius: 0 12px 12px 0;
}
.eor-alt-kopf {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: .6rem;
    margin-bottom: .4rem;
}
.eor-alt-kopf h3 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
    color: #1f2937;
}
.eor-alt-preis {
    padding: .24rem .7rem;
    font-size: .74rem;
    font-weight: 700;
    color: #4b5563;
    background: #f3f4f6;
    border-radius: 50px;
}
.eor-alt-preis--gut { color: #047857; background: #d1fae5; }
.eor-alt-wann {
    margin: 0 0 .6rem !important;
    font-size: .9rem !important;
    font-style: italic;
    color: #6b7280 !important;
}
.eor-alt-item p:last-child { margin-bottom: 0 !important; }

/* --- Zitat --- */
.eor-zitat {
    margin: 1.4rem 0 1.6rem;
    padding: 1.3rem 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #1f2937;
    background: #f8fafc;
    border-left: 4px solid #1e3a5f;
    border-radius: 0 10px 10px 0;
}
.eor-zitat cite {
    display: block;
    margin-top: .7rem;
    font-size: .82rem;
    font-style: normal;
    color: #6b7280;
}

/* --- FAQ --- */
.eor-faq { margin: 1.6rem 0 2.4rem; }
.eor-faq-item { padding: 1.2rem 0; border-bottom: 1px solid #e5e7eb; }
.eor-faq-item:first-child { border-top: 1px solid #e5e7eb; }
.eor-faq-q {
    margin: 0 0 .5rem !important;
    font-size: 1.02rem !important;
    font-weight: 700;
    color: #1f2937 !important;
}
.eor-faq-a { margin: 0 !important; font-size: .96rem !important; }

@media (max-width: 900px) {
    .eor-hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
@media (max-width: 560px) {
    .eor-hero { padding: 3rem 0 2.5rem; }
    .eor-stapel { gap: 1rem; min-height: 160px; }
    .eor-stapel-wert { font-size: .92rem; }
    .eor-stapel-label { font-size: .7rem; }
    .eor-alt-kopf { flex-direction: column; align-items: flex-start; }
    .eor-hero-cta .btn,
    .eor-hero-cta .btn-outline-white { width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
    .eor-stapel-turm span { animation: none; opacity: 1; transform: none; }
}
