/* Extracted from hr-aufbau.php. Edit here, not in PHP. */

/* ===== HR-AUFBAU PAGE, MODERN STARTUP ROADMAP ===== */
/* Prefix: hra- */

/* ---- HERO (weißer Hintergrund, luftig) ---- */
.hra-hero {
    background: #ffffff;
    padding: 80px 0 60px;
    border-bottom: 1px solid #dbeafe;
}

.hra-hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.hra-hero-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hra-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1f2937;
    margin: 0 0 22px;
    max-width: 820px;
}

.hra-hero-subtext {
    font-size: 1.08rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 0 32px;
}

/* Progress-Chips (Prozess-Schritte) */
.hra-progress-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

.hra-progress-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hra-progress-chip-arrow {
    color: #2563eb;
    font-weight: 400;
}

/* Hero Split */
.hra-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hra-hero-left {
    /* left column */
}

.hra-hero-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(37,99,235,0.28);
    margin-bottom: 28px;
}

.hra-hero-cta-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a5f);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,99,235,0.35);
}

.hra-hero-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hra-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.5;
}

.hra-bullet-sq {
    width: 22px;
    height: 22px;
    background: #059669;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.hra-bullet-sq::before {
    content: '';
    display: block;
    width: 11px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-2px);
}

/* HR-Reifegrad-Visual */
.hra-reifegrad {
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 28px 28px 24px;
    position: relative;
}

.hra-reifegrad-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    text-align: center;
}

.hra-reifegrad-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hra-rg-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.hra-rg-step.rg-inactive {
    background: #f1f5f9;
    border-color: #e5e7eb;
}

.hra-rg-step.rg-yellow {
    background: #fffbeb;
    border-color: #fde68a;
}

.hra-rg-step.rg-light {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.hra-rg-step.rg-active {
    background: #eff6ff;
    border-color: #2563eb;
    box-shadow: 0 2px 12px rgba(37,99,235,0.15);
}

.hra-rg-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.rg-inactive .hra-rg-dot  { background: #d1d5db; color: #6b7280; }
.rg-yellow .hra-rg-dot    { background: #fbbf24; color: #92400e; }
.rg-light .hra-rg-dot     { background: #93c5fd; color: #1e3a5f; }
.rg-active .hra-rg-dot    { background: #2563eb; color: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,0.18); }

.hra-rg-label {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.35;
}

.rg-inactive .hra-rg-label { color: #9ca3af; }
.rg-yellow .hra-rg-label   { color: #92400e; }
.rg-light .hra-rg-label    { color: #1e3a5f; }
.rg-active .hra-rg-label   { color: #1e40af; font-weight: 700; }

.hra-rg-arrow {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
}

.hra-rg-arrow-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb);
}

.hra-rg-arrow-text {
    font-size: 0.78rem;
    color: #2563eb;
    font-weight: 700;
    white-space: nowrap;
}

/* ---- IMPACT NUMBERS (weiß, 3 Cards) ---- */
.hra-impact {
    background: #ffffff;
    padding: 70px 0;
}

.hra-impact-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hra-impact-card {
    background: #fff;
    border: 1px solid #dbeafe;
    border-top: 4px solid #2563eb;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(37,99,235,0.07);
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hra-impact-card:hover {
    box-shadow: 0 8px 36px rgba(37,99,235,0.14);
    transform: translateY(-3px);
}

.hra-impact-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 10px;
}

.hra-impact-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.hra-impact-sub {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ---- WER BRAUCHT DAS? (Babyblau-Hintergrund, Persona-Panels) ---- */
.hra-personas {
    background: #f0f9ff;
    padding: 80px 0;
}

.hra-personas-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.hra-section-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 12px;
}

.hra-section-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin: 0 0 14px;
}

.hra-section-sub {
    text-align: center;
    color: #4b5563;
    font-size: 1.05rem;
    margin: 0 0 52px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hra-persona-panels {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hra-persona-panel {
    background: #fff;
    border-radius: 12px;
    border-left: 5px solid #2563eb;
    box-shadow: 0 4px 20px rgba(37,99,235,0.08);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: start;
    gap: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hra-persona-panel:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.15);
    transform: translateX(4px);
}

.hra-persona-icon {
    font-size: 2.4rem;
    line-height: 1;
    padding-top: 2px;
}

.hra-persona-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.hra-persona-body p {
    font-size: 0.96rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

.hra-persona-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---- ROADMAP (weiß, horizontale Timeline Desktop) ---- */
.hra-roadmap {
    background: #ffffff;
    padding: 80px 0;
}

.hra-roadmap-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Horizontale Timeline auf Desktop */
.hra-timeline-h {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

/* Verbindungs-Linie zwischen den Steps */
.hra-timeline-h::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #bfdbfe 100%);
    z-index: 0;
}

.hra-roadmap-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
}

.hra-roadmap-circle {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,99,235,0.3);
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hra-roadmap-step:hover .hra-roadmap-circle {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,99,235,0.45);
}

/* Pfeil zwischen Steps */
.hra-roadmap-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 20px;
    right: -14px;
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 700;
    z-index: 2;
}

.hra-roadmap-week {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.hra-roadmap-step-title {
    font-size: 0.93rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    line-height: 1.3;
}

.hra-roadmap-step-desc {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
}

.hra-roadmap-step-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hra-roadmap-step-bullets li {
    font-size: 0.78rem;
    color: #4b5563;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.hra-roadmap-step-bullets li::before {
    content: '·';
    color: #2563eb;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

/* ---- DELIVERABLES (Babyblau-Hintergrund) ---- */
.hra-deliverables {
    background: #f0f9ff;
    padding: 80px 0;
}

.hra-deliverables-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.hra-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 48px;
}

.hra-checklist-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 16px 20px;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: default;
}

.hra-checklist-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.1);
}

/* Quadratische Checkbox mit grünem Haken (CSS-only) */
.hra-sq-check {
    width: 24px;
    height: 24px;
    background: #059669;
    border-radius: 5px;
    flex-shrink: 0;
    position: relative;
    margin-top: 1px;
}

.hra-sq-check::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 6px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: translate(-50%, -60%) rotate(-45deg);
}

.hra-checklist-row span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.45;
}

/* ---- WARUM JETZT? (weiß, Warn-Boxen) ---- */
.hra-urgency {
    background: #ffffff;
    padding: 80px 0;
}

.hra-urgency-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.hra-urgency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.hra-urgency-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #2563eb;
    border-radius: 10px;
    padding: 24px 22px;
}

.hra-urgency-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: block;
}

.hra-urgency-box p {
    font-size: 0.93rem;
    color: #1e40af;
    line-height: 1.6;
    margin: 0;
}

/* ---- FAQ (Babyblau, Blau-Akzente) ---- */
.hra-faq {
    background: #f0f9ff;
    padding: 80px 0;
}

.hra-faq-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hra-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.hra-faq-list details {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.hra-faq-list details[open] {
    box-shadow: 0 4px 24px rgba(37,99,235,0.12);
    border-color: #2563eb;
}

.hra-faq-list summary {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.hra-faq-list summary::-webkit-details-marker {
    display: none;
}

.hra-faq-list summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
}

.hra-faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.hra-faq-list details[open] summary {
    color: #2563eb;
}

.hra-faq-answer {
    padding: 0 24px 22px;
    color: #4b5563;
    font-size: 0.97rem;
    line-height: 1.75;
}

/* ---- CTA (Blau-Gradient) ---- */
.hra-cta {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    padding: 80px 0;
    text-align: center;
}

.hra-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.hra-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.hra-cta p {
    color: rgba(255,255,255,0.88);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0 0 36px;
}

.hra-cta-btn {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    padding: 16px 42px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hra-cta-btn:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ---- INTERNE LINKS ---- */
.hra-related {
    background: #fff;
    padding: 48px 0;
    border-top: 1px solid #dbeafe;
}

.hra-related-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hra-related-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}

.hra-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hra-related-link {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.hra-related-link:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hra-hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hra-reifegrad {
        max-width: 480px;
    }

    .hra-timeline-h {
        grid-template-columns: repeat(3, 1fr);
    }

    .hra-timeline-h::before {
        display: none;
    }

    .hra-roadmap-step:not(:last-child)::after {
        display: none;
    }

    .hra-roadmap-step:nth-child(3)::after,
    .hra-roadmap-step:nth-child(6)::after {
        display: none;
    }

    .hra-urgency-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .hra-hero {
        padding: 60px 0 48px;
    }

    .hra-impact-inner {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .hra-persona-panel {
        grid-template-columns: 48px 1fr;
    }

    .hra-persona-tag {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .hra-timeline-h {
        grid-template-columns: 1fr 1fr;
    }

    .hra-checklist-grid {
        grid-template-columns: 1fr;
    }

    .hra-related-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hra-hero h1 {
        font-size: 1.85rem;
    }

    .hra-timeline-h {
        grid-template-columns: 1fr;
    }

    .hra-persona-panel {
        grid-template-columns: 1fr;
    }

    .hra-persona-icon {
        font-size: 2rem;
    }
}
