/* ============================================================
   HRTIME HR-RESSOURCEN - LANDING PAGE
   Version: 1.0
   Datum: Januar 2026
   
   Präfix: hrr- (hr-ressourcen)
   Basiert auf: hr-software-funktionen.css (hrsf-)
   ============================================================ */

/* ===========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   =========================================== */
:root {
    /* Farben */
    --hrr-orange: #E65100;
    --hrr-orange-dark: #D84315;
    --hrr-orange-light: #FF8A50;
    --hrr-orange-pale: #FFD2A9;
    --hrr-blue: #5272C5;
    --hrr-blue-dark: #0B1933;
    --hrr-blue-light: #D4E3F0;
    --hrr-white: #ffffff;
    --hrr-gray-light: #f8fafc;
    --hrr-gray: #6b7280;
    --hrr-dark: #1a1a2e;

    /* Gradienten */
    --hrr-gradient-orange: linear-gradient(135deg, #E65100 0%, #D84315 100%);
    --hrr-gradient-dark: linear-gradient(135deg, #0B1933 0%, #1A2B44 100%);
    --hrr-gradient-peach: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);

    /* Schatten */
    --hrr-shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --hrr-shadow-orange: 0 10px 40px rgba(230, 81, 0, 0.35);
    --hrr-shadow-deep: 0 25px 60px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --hrr-radius: 16px;
    --hrr-radius-lg: 24px;
    --hrr-radius-pill: 50px;

    /* Transition */
    --hrr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================
   RESET & BASE
   =========================================== */
.hrr-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hrr-page {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--hrr-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Klasse: Semibold Orange */
.hrr-text-orange {
    color: var(--hrr-orange);
    font-weight: 600;
}

/* Semibold Utility */
.semibold {
    font-weight: 600;
}

/* ===========================================
   SKIP LINK (Barrierefreiheit)
   =========================================== */
.hrr-skip-link {
    position: absolute;
    top: -50px;
    left: 20px;
    background: var(--hrr-orange);
    color: white;
    padding: 12px 20px;
    border-radius: var(--hrr-radius);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.hrr-skip-link:focus {
    top: 10px;
    outline: 3px solid var(--hrr-orange-pale);
    outline-offset: 3px;
}

/* ===========================================
   SEKTION 1: HERO - ORANGE MIT FLOATING SHAPES
   =========================================== */
.hrr-hero {
    position: relative;
    background: var(--hrr-gradient-orange);
    padding: 120px 20px 80px;
    overflow: hidden;
    min-height: 600px;
}

/* Geschwungene Trennlinie unten */
.hrr-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--hrr-gray-light);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

/* Floating Shapes */
.hrr-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hrr-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: hrr-float 15s ease-in-out infinite;
}

.hrr-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -100px;
    animation-delay: 0s;
}

.hrr-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 30%;
    right: -50px;
    animation-delay: -5s;
}

.hrr-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: -10s;
}

.hrr-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 20%;
    animation-delay: -7s;
}

@keyframes hrr-float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(40px, -40px) rotate(5deg);
    }

    50% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, 20px) rotate(3deg);
    }
}

/* Radial Glow */
.hrr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hrr-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hrr-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Keyword-Balken (aus anfrage-formular.css) */
.hrr-hero h1 .highlight {
    position: relative;
    display: inline-block;
}

.hrr-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    z-index: -1;
}

.hrr-highlight {
    color: var(--hrr-orange-pale);
}

/* Hero Lead Text mit Elementor-Fix (margin-block-end!) */
.hrr-hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 25px !important;
    margin-block-end: 25px !important;
}

/* Hero Benefits - Horizontal Pills mit Elementor-Fix */
.hrr-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px !important;
    margin-block-start: 25px !important;
    margin-bottom: 45px;
}

.hrr-benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--hrr-radius-pill);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--hrr-transition);
}

.hrr-benefit-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hrr-benefit-pill i {
    font-size: 1.1rem;
    color: var(--hrr-orange-pale);
}

/* Hero CTA */
.hrr-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: white;
    color: var(--hrr-orange) !important;
    border-radius: var(--hrr-radius-pill);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: var(--hrr-transition);
}

.hrr-hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Hero Badge */
.hrform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hrform-badge-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: hrr-pulse 2s infinite;
    box-shadow: 0 0 10px #22c55e;
}

/* Badge Dark Variant (for light backgrounds) */
.hrform-badge--dark {
    background: rgba(11, 25, 51, 0.1);
    color: var(--hrr-dark);
    border: 1px solid rgba(11, 25, 51, 0.2);
}

.hrform-badge--dark .hrform-badge-dot {
    background: var(--hrr-orange);
    box-shadow: 0 0 10px var(--hrr-orange);
}

@keyframes hrr-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Hero Section Label (Light version for orange background) */
.hrr-hero-container .hrr-section-label {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Hero Divider (White for orange background) */
.hrr-hero-divider {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 100%);
    margin: 0 auto 30px auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    animation: hrr-dividerPulse 2s ease-in-out infinite;
}

.hrr-hero-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: hrr-dividerShine 3s ease-in-out infinite;
}

/* Section Divider (Orange for light backgrounds) */
.hrr-section-divider {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #E65100 0%, #FF8A50 50%, #E65100 100%);
    margin: 0 auto 30px auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    animation: hrr-dividerPulse 2s ease-in-out infinite;
}

.hrr-section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: hrr-dividerShine 3s ease-in-out infinite;
}

/* Section Divider Light (White for orange/dark backgrounds) */
.hrr-section-divider--light {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 100%);
}

.hrr-section-divider--light::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

/* Section Label Light (For orange backgrounds) */
.hrr-section-label--light {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* White text utility for CTA section */
.hrr-text-white {
    color: white !important;
    font-weight: 600;
}

@keyframes hrr-dividerPulse {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 1;
    }

    50% {
        transform: scaleX(1.05);
        opacity: 0.9;
    }
}

@keyframes hrr-dividerShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* ===========================================
   SEKTION 2: PARTNER CARDS (2 Kacheln)
   Design basierend auf hrt-about-value-card
   =========================================== */
.hrr-partner {
    background: var(--hrr-gray-light);
    padding: 100px 20px;
}

.hrr-partner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hrr-partner-header {
    text-align: center;
    margin-bottom: 50px;
}

.hrr-partner-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--hrr-dark);
    margin-bottom: 15px;
}

.hrr-partner-header p {
    font-size: 1rem;
    color: var(--hrr-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.hrr-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Partner Card - Neues Design: Hell mit rundem Icon */
.hrr-partner-card {
    background: #f0f0ef;
    border: 1px solid rgba(82, 114, 197, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
    text-decoration: none;
}

/* Animierter Top-Border beim Hover */
.hrr-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #5272C5 0%, #0B1933 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

/* Kein ::after mehr nötig - entfernen */
.hrr-partner-card::after {
    display: none;
}

/* Hover Effects */
.hrr-partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: var(--hrr-orange);
}

.hrr-partner-card:hover::before {
    transform: scaleX(1);
    background: linear-gradient(135deg, #E65100, #D84315);
}

/* Icon Container - Rund mit Gradient */
.hrr-partner-card i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5272C5 0%, #0B1933 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(82, 114, 197, 0.3);
}

.hrr-partner-card:hover i {
    background: linear-gradient(135deg, #E65100, #D84315);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.35);
}

/* Titel */
.hrr-partner-card h3 {
    font-size: 1.25rem;
    margin: 0 0 15px 0;
    font-weight: 600;
    color: var(--hrr-dark);
    transition: color 0.3s ease;
}

.hrr-partner-card:hover h3 {
    color: var(--hrr-orange);
}

/* Text */
.hrr-partner-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex-grow: 1;
    color: var(--hrr-gray);
}

.hrr-partner-card:hover p {
    color: var(--hrr-dark);
}

/* Button */
.hrr-partner-btn {
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white !important;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(230, 81, 0, 0.3);
}

.hrr-partner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.4);
}

/* ===========================================
   SEKTION 3: INFO CARDS - LEXIKON & MAGAZIN
   (Wie HRTime – Zeit, neu zu denken)
   =========================================== */
.hrr-infocards {
    background: var(--hrr-white);
    padding: 100px 20px;
}

.hrr-infocards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hrr-infocards-header {
    text-align: center;
    margin-bottom: 50px;
}

.hrr-infocards-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--hrr-dark);
    margin-bottom: 15px;
}

.hrr-infocards-header p {
    font-size: 1rem;
    color: var(--hrr-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.hrr-infocards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Info Card - Statisch mit Hintergrundbild */
.hrr-info-card {
    position: relative;
    height: 420px;
    border-radius: var(--hrr-radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: var(--hrr-transition);
}

.hrr-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* Dark Overlay */
.hrr-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 25, 51, 0.3) 0%, rgba(11, 25, 51, 0.85) 100%);
    z-index: 1;
}

/* Icon im Card - Absolut positioniert */
.hrr-info-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--hrr-gradient-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 3;
    transition: var(--hrr-transition);
}

.hrr-info-card:hover .hrr-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.hrr-info-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 120px 40px 25px 40px;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hrr-info-content h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    color: white !important;
}

.hrr-info-content p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 25px !important;
}

.hrr-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--hrr-gradient-orange);
    color: white !important;
    border-radius: var(--hrr-radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--hrr-transition);
    align-self: flex-start;
}

.hrr-info-btn:hover {
    transform: translateX(5px);
    box-shadow: var(--hrr-shadow-orange);
}

/* ===========================================
   SEKTION 4: SERVICE & SUPPORT (2 Kacheln)
   Design basierend auf hrt-about-value-card
   =========================================== */
.hrr-support {
    background: linear-gradient(180deg, var(--hrr-white) 0%, var(--hrr-gray-light) 100%);
    padding: 100px 20px;
}

.hrr-support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hrr-support-header {
    text-align: center;
    margin-bottom: 50px;
}

.hrr-support-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--hrr-dark);
    margin-bottom: 15px;
}

.hrr-support-header p {
    font-size: 1rem;
    color: var(--hrr-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.hrr-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Support Card - Neues Design: Hell mit rundem Icon */
.hrr-support-card {
    background: #f0f0ef;
    border: 1px solid rgba(82, 114, 197, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    text-decoration: none;
}

/* Animierter Top-Border beim Hover */
.hrr-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #5272C5 0%, #0B1933 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

/* Kein ::after mehr nötig */
.hrr-support-card::after {
    display: none;
}

/* Hover Effects */
.hrr-support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: var(--hrr-orange);
}

.hrr-support-card:hover::before {
    transform: scaleX(1);
    background: linear-gradient(135deg, #E65100, #D84315);
}

/* Icon Container - Rund mit Gradient */
.hrr-support-card i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5272C5 0%, #0B1933 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(82, 114, 197, 0.3);
}

.hrr-support-card:hover i {
    background: linear-gradient(135deg, #E65100, #D84315);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.35);
}

/* Titel */
.hrr-support-card h3 {
    font-size: 1.25rem;
    margin: 0 0 15px 0;
    font-weight: 600;
    color: var(--hrr-dark);
    transition: color 0.3s ease;
}

.hrr-support-card:hover h3 {
    color: var(--hrr-orange);
}

/* Text */
.hrr-support-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex-grow: 1;
    color: var(--hrr-gray);
}

.hrr-support-card:hover p {
    color: var(--hrr-dark);
}

/* Button */
.hrr-support-btn {
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white !important;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(230, 81, 0, 0.3);
}

.hrr-support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.4);
}

/* ===========================================
   SEKTION 5: TESTIMONIALS - KUNDENSTIMMEN
   =========================================== */
.hrr-testimonials {
    background: linear-gradient(180deg, white 0%, var(--hrr-gray-light) 100%);
    padding: 100px 20px;
    position: relative;
}

.hrr-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hrr-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.hrr-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--hrr-orange);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hrr-testimonials-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--hrr-dark);
    margin-bottom: 15px;
}

.hrr-testimonials-intro {
    font-size: 1.05rem;
    color: var(--hrr-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonials Grid */
.hrr-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Testimonial Card */
.hrr-testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(82, 114, 197, 0.15);
    border-radius: var(--hrr-radius);
    padding: 35px 30px;
    transition: var(--hrr-transition);
    display: flex;
    flex-direction: column;
}

.hrr-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(82, 114, 197, 0.15);
}

.hrr-testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* 5 Sterne */
.hrr-testimonial-stars {
    margin-bottom: 20px;
    color: #FFB400;
    font-size: 14px;
}

.hrr-testimonial-stars i {
    margin-right: 3px;
}

/* Zitat-Text */
.hrr-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hrr-gray);
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

/* Author */
.hrr-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(82, 114, 197, 0.1);
}

.hrr-author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(82, 114, 197, 0.2);
}

.hrr-author-info {
    display: flex;
    flex-direction: column;
}

.hrr-author-name {
    font-weight: 600;
    color: var(--hrr-dark);
    font-size: 15px;
}

.hrr-author-role {
    font-size: 13px;
    color: var(--hrr-gray);
}

/* ===========================================
   SEKTION 6: FAQ - ACCORDION (DUNKELBLAU)
   =========================================== */
.hrr-faq {
    background: var(--hrr-dark) !important;
    padding: 100px 20px;
    position: relative;
}

.hrr-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(11, 25, 51, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

.hrr-faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hrr-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.hrr-faq-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--hrr-white) !important;
    margin-bottom: 20px;
}

.hrr-faq-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* FAQ List */
.hrr-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Item - DUNKELBLAU ERZWINGEN */
.hrr-faq-item {
    position: relative;
    background: linear-gradient(135deg, #0B1933 0%, #1A2B44 100%) !important;
    border-radius: var(--hrr-radius) !important;
    transition: var(--hrr-transition);
    box-shadow: 0 8px 32px rgba(11, 25, 51, 0.3);
    z-index: 1;
    overflow: hidden;
    border: none !important;
}

/* Gradient Border Effect - NUR OBEN */
.hrr-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--hrr-radius) var(--hrr-radius) 0 0;
    background: linear-gradient(90deg, var(--hrr-blue) 0%, var(--hrr-orange) 50%, var(--hrr-blue) 100%) !important;
    z-index: 10;
}

/* KEIN HOVER-EFFEKT der die Farbe ändert */
.hrr-faq-item:hover {
    box-shadow: 0 12px 40px rgba(11, 25, 51, 0.5);
    background: linear-gradient(135deg, #0B1933 0%, #1A2B44 100%) !important;
}

/* ::after entfernen */
.hrr-faq-item::after {
    display: none !important;
    content: none !important;
}

/* FAQ Trigger Button */
.hrr-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: var(--hrr-transition);
    border-radius: var(--hrr-radius);
}

.hrr-faq-trigger:hover {
    background: rgba(82, 114, 197, 0.15) !important;
}

.hrr-faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hrr-white) !important;
    line-height: 1.4;
    padding-right: 20px;
}

.hrr-faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hrr-gradient-orange) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1.4rem;
    font-weight: 300;
    transition: var(--hrr-transition);
}

.hrr-faq-trigger[aria-expanded="true"] .hrr-faq-icon {
    transform: rotate(45deg);
}

/* FAQ Content */
.hrr-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: transparent !important;
}

.hrr-faq-content.hrr-open {
    max-height: 500px;
}

.hrr-faq-content p {
    padding: 0 28px 25px;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85) !important;
    background: transparent !important;
}

.hrr-faq-content a {
    color: var(--hrr-orange-pale);
    text-decoration: underline;
}

.hrr-faq-content a:hover {
    color: var(--hrr-orange);
}

/* ===========================================
   SEKTION 7: CTA - ORANGE MIT FLOATING SHAPES
   =========================================== */
.hrr-cta {
    position: relative;
    background: var(--hrr-gradient-orange);
    padding: 100px 20px;
    overflow: hidden;
}

/* Reuse Floating Shapes */
.hrr-cta .hrr-hero-shapes {
    opacity: 0.5;
}

/* Radial Overlay */
.hrr-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.hrr-cta-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hrr-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.hrr-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* CTA Button - SAUBER */
.hrr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 50px;
    background: white;
    color: var(--hrr-orange) !important;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: var(--hrr-transition);
}

.hrr-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Trust Badges */
.hrr-cta-trust {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hrr-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.hrr-trust-item i {
    font-size: 1.25rem;
    color: var(--hrr-orange-pale);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1200px) {
    .hrr-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hrr-infocards-grid {
        grid-template-columns: 1fr;
    }

    .hrr-info-card {
        height: auto;
        min-height: 420px;
    }

    /* Icon auf Mobile: NICHT absolut, sondern im Fluss */
    .hrr-info-icon {
        position: static;
        margin-bottom: 20px;
    }

    /* Content neu strukturieren für Mobile */
    .hrr-info-content {
        padding: 30px 25px 25px 25px;
        justify-content: flex-start;
    }

    .hrr-info-content h3 {
        font-size: 1.3rem !important;
    }

    .hrr-info-content p {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 768px) {
    .hrr-hero {
        padding: 80px 20px 70px;
        min-height: auto;
    }

    .hrr-partner-grid,
    .hrr-support-grid,
    .hrr-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hrr-hero-benefits {
        flex-direction: column;
        align-items: center;
    }

    .hrr-benefit-pill {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .hrr-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .hrr-partner-card,
    .hrr-support-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .hrr-partner-card i,
    .hrr-support-card i {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .hrr-partner-card h3,
    .hrr-support-card h3 {
        font-size: 1.15rem;
    }

    .hrr-partner-card p,
    .hrr-support-card p {
        font-size: 0.95rem;
    }

    .hrr-partner-btn,
    .hrr-support-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .hrr-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hrr-testimonials {
        padding: 60px 15px;
    }

    .hrr-testimonials-header {
        margin-bottom: 40px;
    }

    .hrr-testimonial-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .hrr-hero h1 {
        font-size: 1.8rem;
    }

    .hrr-hero-cta,
    .hrr-cta-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }

    .hrr-partner-card,
    .hrr-support-card {
        padding: 25px 20px;
    }

    .hrr-partner-card i,
    .hrr-support-card i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===========================================
   FAQ MOBILE FIX - Text Umbruch & Icon sichtbar
   =========================================== */
@media (max-width: 768px) {
    .hrr-faq-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hrr-faq-trigger {
        padding: 18px 15px !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
    }

    .hrr-faq-question {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        font-size: 0.95rem !important;
        padding-right: 10px !important;
        white-space: normal !important;
    }

    .hrr-faq-icon {
        flex-shrink: 0 !important;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 1.2rem !important;
    }

    .hrr-faq-content p {
        padding: 0 15px 20px !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .hrr-faq-trigger {
        padding: 15px 12px !important;
    }

    .hrr-faq-question {
        font-size: 0.9rem !important;
        line-height: 1.35 !important;
    }

    .hrr-faq-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        font-size: 1rem !important;
    }
}