/* ============================================================
   HRTIME FILIALUNTERNEHMEN – Seitenspezifische CSS
   Version: 1.0
   Datum: Februar 2026
   
   Diese Datei überschreibt NUR die seitenspezifischen Styles
   der Basis-CSS (loesungsseiten-styles.css).
   
   Hauptsächlich: Hero Background-Image + Overlay
   + Neue Sektions-Styles speziell für Filialunternehmen
   
   ⚠️ MUSS NACH loesungsseiten-styles.css geladen werden!
   ============================================================ */


/* ============================================================
   SELEKTION 1: HERO – Background-Image Override
   Bild rechts sichtbar, Orange-Gradient-Overlay links
   ============================================================ */
.hrt-ls-hero {
    /* Hintergrundbild (seitenspezifisch – pro Seite austauschbar) */
    background-image: url('https://www.hrtime.de/wp-content/uploads/2026/02/Zeiterfassung-fuer-Filialunternehmen-HRTime.avif');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
}

/* Gradient Overlay: Orange links (90% opacity) → transparent rechts */
.hrt-ls-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(230, 81, 0, 0.9) 0%, rgba(230, 81, 0, 0.9) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Wave Shape Divider (Elementor wave pattern, flipped) */
.hrt-ls-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 260%;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M421.9,6.5c22.6-2.5,51.5,0.4,75.5,5.3c23.6,4.9,70.9,23.5,100.5,35.7c75.8,32.2,133.7,44.5,192.6,49.7c23.6,2.1,48.7,3.5,103.4-2.5c54.7-6,106.2-25.6,106.2-25.6V0H0v30.3c0,0,72,32.6,158.4,30.5c39.2-0.7,92.8-6.7,134-22.4c21.2-8.1,52.2-18.2,79.7-24.2C399.3,7.9,411.6,7.5,421.9,6.5z" fill="white"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 20;
    pointer-events: none;
    clip-path: none;
    background-color: transparent;
}

/* Floating Shapes – z-index über dem Overlay */
.hrt-ls-hero-shapes {
    z-index: 8;
}

/* Hero Content – z-index über Overlay + Shapes */
.hrt-ls-hero-content {
    z-index: 10;
}

/* Benefit Pills – breiter für Filialunternehmen (3+2 Reihen statt 5×1) */
.hrt-ls-hero-benefits {
    max-width: 1000px;
}

/* GLOBAL: Alle animate-Elemente sofort sichtbar machen
   (Animation startet mit opacity:0 – ohne JS-Trigger bleibt alles unsichtbar)
   Betrifft: Why-Grid, Section-Headers, Roles, Franchise, Scale, Legal etc. */
.hrt-ls-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Selektion 3: Kacheln-Grid breiter (900px → 1100px) */
.hrt-ls-why .hrt-ze-integrations__grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   NEU: DASHBOARD SEKTION – Zentral steuern, lokal handeln
   Zwei-Spalten Feature-Listen für Zentrale vs. Filialleiter
   ============================================================ */
.hrt-fu-dashboard-section {
    padding: 80px 0;
    background: #f9f9fb;
}

.hrt-fu-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hrt-fu-dashboard-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.hrt-fu-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hrt-fu-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.hrt-fu-dashboard-col {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--hrt-ls-orange, #e65100);
}

.hrt-fu-dashboard-col:last-child {
    border-top-color: var(--hrt-ls-blue, #5272c5);
}

.hrt-fu-dashboard-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hrt-ls-dark, #1a1a2e);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hrt-fu-dashboard-col h3 i {
    color: var(--hrt-ls-orange, #e65100);
    font-size: 1.2rem;
}

.hrt-fu-dashboard-col:last-child h3 i {
    color: var(--hrt-ls-blue, #5272c5);
}

.hrt-fu-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hrt-fu-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.hrt-fu-feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--hrt-ls-orange, #e65100);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.hrt-fu-dashboard-col:last-child .hrt-fu-feature-list li::before {
    color: var(--hrt-ls-blue, #5272c5);
}

.hrt-fu-dashboard-image-wrapper {
    margin-top: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.hrt-fu-dashboard-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


/* ============================================================
   NEU: BERECHTIGUNGSEBENEN – Rollen-Hierarchie
   ============================================================ */
.hrt-fu-roles-section {
    padding: 80px 0;
    background: #fff;
}

.hrt-fu-roles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hrt-fu-roles-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 40px 0 50px;
    position: relative;
}

@media (max-width: 900px) {
    .hrt-fu-roles-visual {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 550px) {
    .hrt-fu-roles-visual {
        grid-template-columns: 1fr;
    }
}

.hrt-fu-role-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px;
    position: relative;
}

.hrt-fu-role-item::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hrt-ls-orange, #e65100);
    font-size: 1rem;
    z-index: 2;
}

.hrt-fu-role-item:last-child::after {
    display: none;
}

.hrt-fu-role-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hrt-ls-orange, #e65100), #ff8f00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(230, 81, 0, 0.3);
}

.hrt-fu-role-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--hrt-ls-dark, #1a1a2e);
    margin-bottom: 6px;
}

.hrt-fu-role-desc {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.45;
}

.hrt-fu-roles-note {
    background: rgba(230, 81, 0, 0.05);
    border: 1px dashed rgba(230, 81, 0, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.65;
    margin-top: 10px;
}

.hrt-fu-roles-note strong {
    color: var(--hrt-ls-orange, #e65100);
}


/* ============================================================
   NEU: FRANCHISE SEKTION
   ============================================================ */
.hrt-fu-franchise-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fe 0%, #fff3e0 100%);
}

.hrt-fu-franchise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hrt-fu-franchise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hrt-fu-franchise-grid {
        grid-template-columns: 1fr;
    }
}

.hrt-fu-franchise-text-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hrt-fu-franchise-text-col p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}

.hrt-fu-franchise-features-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hrt-fu-franchise-feature {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--hrt-ls-orange, #e65100);
}

.hrt-fu-franchise-feature i {
    color: var(--hrt-ls-orange, #e65100);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.hrt-fu-franchise-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hrt-ls-dark, #1a1a2e);
    margin-bottom: 4px;
}

.hrt-fu-franchise-feature p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}


/* ============================================================
   NEU: SKALIERBARKEIT SEKTION
   ============================================================ */
.hrt-fu-scale-section {
    padding: 80px 0;
    background: #fff;
}

.hrt-fu-scale-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hrt-fu-scale-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

@media (max-width: 900px) {
    .hrt-fu-scale-steps {
        grid-template-columns: 1fr;
    }
}

.hrt-fu-scale-step {
    background: #f9f9fb;
    border-radius: 16px;
    padding: 28px 24px;
    border-bottom: 3px solid var(--hrt-ls-orange, #e65100);
}

.hrt-fu-scale-step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--hrt-ls-orange, #e65100);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 10px;
}

.hrt-fu-scale-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hrt-ls-dark, #1a1a2e);
    margin-bottom: 10px;
}

.hrt-fu-scale-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.hrt-fu-scale-highlight {
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.06), rgba(82, 114, 197, 0.06));
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.hrt-fu-scale-highlight i {
    font-size: 2rem;
    color: var(--hrt-ls-orange, #e65100);
    flex-shrink: 0;
    margin-top: 4px;
}

.hrt-fu-scale-highlight p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}


/* ============================================================
   BRANCHEN KARTEN – speziell für Filialunternehmen
   ============================================================ */
.hrt-fu-branchen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hrt-fu-branchen-grid {
        grid-template-columns: 1fr;
    }
}

.hrt-fu-branchen-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--hrt-ls-orange, #e65100);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hrt-fu-branchen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(230, 81, 0, 0.12);
}

.hrt-fu-branchen-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--hrt-ls-orange, #e65100), #ff8f00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.hrt-fu-branchen-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hrt-ls-dark, #1a1a2e);
    margin-bottom: 10px;
}

.hrt-fu-branchen-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

.hrt-fu-branchen-card a.hrt-fu-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--hrt-ls-orange, #e65100);
    text-decoration: none;
}

.hrt-fu-branchen-card a.hrt-fu-card-link:hover {
    text-decoration: underline;
}