/* ═══════════════════════════════════════════════════════════════════════════
   HR-PROZESSAUTOMATISIERUNG - MODERNES DUNKLES DESIGN MIT GLASEFFEKTEN
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero Section */
.hr-hero {
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    z-index: 2;
}

.hr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.2), transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.15), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(165, 180, 252, 0.1), transparent 40%);
    opacity: 0.9;
    pointer-events: none;
}

.hr-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.hr-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(165, 180, 252, 0.3);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.hr-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0.5rem 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hr-hero p {
    max-width: 780px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c7d2fe !important;
}

.hr-hero .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hr-hero .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.35);
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hr-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(99, 102, 241, 0.45);
}

.hr-hero .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hr-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.section.light {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #a5b4fc;
    font-size: 1.05rem;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(165, 180, 252, 0.3);
}

.card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.card h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.card p {
    margin: 0;
    color: #a5b4fc;
    line-height: 1.6;
}

/* Pillars Cards */
.pillars .card ul {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
}

.pillars .card ul li {
    padding: 0.35rem 0;
    color: #c7d2fe;
}

.pillars .card ul li i {
    color: #6ee7b7;
    margin-right: 0.5rem;
}

/* Use Cases Cards */
.use-cases .card {
    border-left: 4px solid #6366f1;
}

.use-cases .card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.use-cases .card h3 i {
    color: #a5b4fc;
}

/* Methodology Section */
.methodology .badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: rgba(99, 102, 241, 0.3);
    margin-bottom: 0.35rem;
}

/* Workflow CTA */
.workflow-cta {
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.workflow-cta h2 {
    font-size: clamp(2rem, 3vw, 2.4rem);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workflow-cta p {
    color: #c7d2fe;
    max-width: 760px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

.btn-workflow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.6rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-workflow:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(99, 102, 241, 0.45);
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #a5b4fc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a5b4fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
}

/* Workflow Page Basics */
.workflow-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

.workflow-header {
    text-align: center;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
    margin-bottom: 2rem;
}

.workflow-header h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 3vw, 2.4rem);
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workflow-header p {
    margin: 0.25rem auto 0;
    max-width: 700px;
    color: #c7d2fe;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.workflow-step h3 {
    margin: 0 0 0.35rem;
    font-size: 1.3rem;
    color: #fff;
}

.workflow-step p {
    margin: 0 0 1rem;
    color: #a5b4fc;
}

.workflow-step ul {
    padding-left: 1.1rem;
    margin: 0;
    color: #c7d2fe;
    line-height: 1.6;
}

.workflow-cta-inline {
    margin-top: 2rem;
    text-align: center;
}

.workflow-cta-inline .btn-workflow {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hr-hero {
        padding: 3rem 0 3.5rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .workflow-cta {
        padding: 2rem 1rem;
    }
}
