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

/* ============================================
   HRS, HR Software Einführung (CI-konform)
   Prefix: hrs-
   ============================================ */

/* ---- Box Sizing Reset ---- */
.hrs-hero,
.hrs-tools,
.hrs-risiken,
.hrs-leistungen,
.hrs-prozess,
.hrs-personas,
.hrs-faq,
.hrs-cta-section,
.hrs-internal-links {
    box-sizing: border-box;
}

/* ==============================
   1. HERO (Light Blue BG)
   ============================== */
.hrs-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 6rem 2rem 5rem;
}
.hrs-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hrs-badge {
    display: inline-block;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.hrs-hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.25rem 0;
    color: #1f2937;
}
.hrs-hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1.75rem;
    max-width: 560px;
}
.hrs-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.hrs-chip {
    background: #ffffff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.08);
}
.hrs-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.hrs-hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem 2.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    cursor: pointer;
    border: none;
}
.hrs-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}
.hrs-hero-tel {
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hrs-hero-tel:hover {
    text-decoration: underline;
}

/* Hero SVG Visual */
.hrs-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hrs-hero-visual svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(37, 99, 235, 0.15));
}

/* ==============================
   2. TOOLS (4 Tool-Karten, Light Blue BG)
   ============================== */
.hrs-tools {
    background: #f0f9ff;
    padding: 5.5rem 2rem;
}
.hrs-tools-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hrs-section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.hrs-section-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}
.hrs-section-header p {
    color: #4b5563;
    font-size: 0.97rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}
.hrs-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.hrs-tool-card {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.hrs-tool-card:hover {
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}
.hrs-tool-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.hrs-tool-logo.personio { background: linear-gradient(135deg, #2563eb, #1e40af); }
.hrs-tool-logo.heavenhr { background: linear-gradient(135deg, #10b981, #059669); }
.hrs-tool-logo.sage { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.hrs-tool-logo.agenda { background: linear-gradient(135deg, #059669, #1e3a5f); }
.hrs-tool-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.4rem;
}
.hrs-tool-target {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 0.85rem;
}
.hrs-tool-desc {
    font-size: 0.84rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.hrs-tool-strengths {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.85rem;
}
.hrs-tool-strengths li {
    font-size: 0.78rem;
    color: #6b7280;
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}
.hrs-tool-strengths li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}
.hrs-tool-exp {
    margin-top: 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    display: inline-block;
}

/* ==============================
   3. RISIKEN (3 Warnkarten, Navy BG)
   ============================== */
.hrs-risiken {
    background: #1e3a5f;
    padding: 5.5rem 2rem;
}
.hrs-risiken-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hrs-risiken-header {
    text-align: center;
    margin-bottom: 3rem;
}
.hrs-risiken-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}
.hrs-risiken-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.97rem;
}
.hrs-risiken-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hrs-risiko-card {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-top: 3px solid #ef4444;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
}
.hrs-risiko-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.hrs-risiko-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 0.75rem;
}
.hrs-risiko-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.hrs-risiko-solution {
    font-size: 0.82rem;
    color: #86efac;
    line-height: 1.6;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.hrs-risiko-solution::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

/* ==============================
   4. LEISTUNGEN (6 Karten)
   ============================== */
.hrs-leistungen {
    background: #ffffff;
    padding: 5.5rem 2rem;
}
.hrs-leistungen-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hrs-leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hrs-leistung-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.2s ease;
}
.hrs-leistung-card:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}
.hrs-leistung-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
}
.hrs-leistung-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
}
.hrs-leistung-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
}

/* ==============================
   5. PROZESS (4 Schritte)
   ============================== */
.hrs-prozess {
    background: #f0f9ff;
    padding: 5.5rem 2rem;
}
.hrs-prozess-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hrs-prozess-header {
    text-align: center;
    margin-bottom: 3rem;
}
.hrs-prozess-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 0.6rem 0;
}
.hrs-prozess-header p {
    color: #6b7280;
    font-size: 0.97rem;
}
.hrs-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.hrs-step {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    position: relative;
}
.hrs-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.1rem;
}
.hrs-step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hrs-step-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
}
.hrs-step-duration {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    margin-top: 0.85rem;
}

/* ==============================
   6. PERSONAS (3 Karten)
   ============================== */
.hrs-personas {
    background: #1e3a5f;
    padding: 5.5rem 2rem;
}
.hrs-personas-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hrs-personas-header {
    text-align: center;
    margin-bottom: 3rem;
}
.hrs-personas-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}
.hrs-personas-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.97rem;
}
.hrs-personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hrs-persona-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 2rem 1.75rem;
}
.hrs-persona-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(37, 99, 235, 0.4);
    color: #93c5fd;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}
.hrs-persona-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.hrs-persona-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.hrs-persona-size {
    font-size: 0.82rem;
    color: #93c5fd;
    margin-bottom: 0.85rem;
}
.hrs-persona-situation {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.hrs-persona-tools {
    font-size: 0.78rem;
    color: #6ee7b7;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.hrs-persona-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hrs-persona-list li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}
.hrs-persona-list li::before {
    content: '→';
    color: #60a5fa;
    flex-shrink: 0;
}

/* ==============================
   7. FAQ
   ============================== */
.hrs-faq {
    background: #ffffff;
    padding: 5.5rem 2rem;
}
.hrs-faq-inner {
    max-width: 820px;
    margin: 0 auto;
}
.hrs-faq-inner > h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin: 0 0 0.5rem 0;
}
.hrs-faq-intro {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}
.hrs-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.hrs-faq-item.open {
    border-color: #2563eb;
}
.hrs-faq-question {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.15s ease;
}
.hrs-faq-question:hover {
    background: #fafafa;
}
.hrs-faq-plus {
    font-size: 1.4rem;
    color: #2563eb;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s ease;
    line-height: 1;
}
.hrs-faq-item.open .hrs-faq-plus {
    transform: rotate(45deg);
}
.hrs-faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.75;
}
.hrs-faq-item.open .hrs-faq-answer {
    display: block;
}
.hrs-faq-answer a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.hrs-faq-answer a:hover {
    text-decoration: underline;
}

/* ==============================
   8. CTA (Blau-Gradient)
   ============================== */
.hrs-cta-section {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    padding: 5.5rem 2rem;
    text-align: center;
}
.hrs-cta-section h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.85rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hrs-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0.85rem auto 2.25rem;
    max-width: 560px;
}
.hrs-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.hrs-cta-btn-white {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    border: none;
}
.hrs-cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.hrs-cta-tel-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
}
.hrs-cta-tel-link:hover {
    border-color: rgba(255, 255, 255, 0.8);
}
.hrs-cta-sub {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==============================
   9. INTERNE LINKS
   ============================== */
.hrs-internal-links {
    background: #f8fafc;
    padding: 4.5rem 2rem;
    border-top: 1px solid #e5e7eb;
}
.hrs-internal-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hrs-internal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.hrs-internal-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.4rem 0;
}
.hrs-internal-header p {
    color: #6b7280;
    font-size: 0.9rem;
}
.hrs-internal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.hrs-internal-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    display: block;
}
.hrs-internal-card:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    border-color: #bfdbfe;
}
.hrs-internal-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.hrs-internal-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.35rem;
}
.hrs-internal-card-desc {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.5;
}
.hrs-internal-card-arrow {
    color: #2563eb;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.75rem;
    display: block;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .hrs-hero-inner {
        gap: 2.5rem;
    }
    .hrs-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hrs-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hrs-internal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hrs-leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hrs-hero {
        padding: 4rem 1.5rem 3.5rem;
    }
    .hrs-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hrs-hero-visual {
        order: -1;
    }
    .hrs-hero-visual svg {
        max-width: 320px;
    }
    .hrs-tools-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hrs-risiken-grid {
        grid-template-columns: 1fr;
    }
    .hrs-personas-grid {
        grid-template-columns: 1fr;
    }
    .hrs-steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hrs-cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .hrs-internal-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hrs-leistungen-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hrs-tools-grid {
        grid-template-columns: 1fr;
    }
    .hrs-steps-grid {
        grid-template-columns: 1fr;
    }
    .hrs-internal-grid {
        grid-template-columns: 1fr;
    }
    .hrs-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}
