/* ========================================
   HRTime Landing Page LP3 - Zeiterfassung ist Pflicht
   Analog zu LP2 aber mit lp3-Klassen
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* ========================================
   1. HERO SECTION LP3
   ======================================== */
.hero-lp3-header {
    background: linear-gradient(270deg, #5272C5 0%, #1A2B44 50%, #0B1933 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.orbit-lp3-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

.orbit-lp3-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid;
    transform: translate(-50%, -50%);
    animation: pulse-lp3 4s ease-in-out infinite;
}

.orbit-lp3-ring:nth-child(1) {
    width: 300px;
    height: 300px;
    border-color: rgba(82, 114, 197, 0.7);
    animation-delay: 0s;
}

.orbit-lp3-ring:nth-child(2) {
    width: 500px;
    height: 500px;
    border-color: rgba(230, 81, 0, 0.5);
    animation-delay: 1s;
}

.orbit-lp3-ring:nth-child(3) {
    width: 700px;
    height: 700px;
    border-color: rgba(82, 114, 197, 0.4);
    animation-delay: 2s;
}

@keyframes pulse-lp3 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.7;
    }
}

.hero-lp3-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-lp3-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.hero-lp3-text h1 .highlight-lp3 {
    color: #E65100 !important;
}

.hero-lp3-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #FFD2A9;
}

.hero-lp3-lead strong {
    color: white;
}

.hero-lp3-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-lp3-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.badge-lp3 {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-lp3 .stars-lp3 {
    color: #FFD2A9;
}

.hero-lp3-cta-button {
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white !important;
    border: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.35);
    transition: all 0.3s ease;
}

.hero-lp3-cta-button:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.45);
}

.hero-lp3-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========================================
   2. TRUST BAR LP3
   ======================================== */
.trust-lp3-bar {
    background: white;
    padding: 40px 20px;
    text-align: center;
}

.trust-lp3-bar p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
}

.trust-lp3-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-lp3-logos div {
    width: 120px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* ========================================
   3. CALCULATOR LP3
   ======================================== */
.calculator-lp3-section {
    background: white;
    padding: 100px 20px;
}

.calculator-lp3-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-lp3-header {
    text-align: center;
    margin-bottom: 50px;
}

.calculator-lp3-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1933;
    margin-bottom: 15px;
}

.calculator-lp3-header h2 .highlight-lp3 {
    color: #E65100;
}

.calculator-lp3-header p {
    font-size: 1.1rem;
    color: #666;
}

.calculator-lp3-box {
    background: linear-gradient(135deg, #f2f2f1 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.package-lp3-switcher {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.package-lp3-btn {
    flex: 1;
    max-width: 200px;
    padding: 20px 30px;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #0B1933;
}

.package-lp3-btn:hover {
    border-color: #5272C5;
    transform: translateY(-3px);
}

.package-lp3-btn.active-lp3 {
    border-color: #E65100;
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white !important;
    transform: translateY(-3px);
}

.package-lp3-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.package-lp3-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.package-lp3-price-unit {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
}

.calculator-lp3-input {
    margin-bottom: 40px;
}

.calculator-lp3-input label {
    display: block;
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.calculator-lp3-input input {
    width: 100%;
    padding: 20px;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.calculator-lp3-input input:focus {
    outline: none;
    border-color: #5272C5;
}

.result-lp3-box {
    background: linear-gradient(135deg, #5272C5, #0B1933);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.result-lp3-box .label-lp3 {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.result-lp3-box .price-lp3-result {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 20px 0;
}

.result-lp3-box .price-lp3-period {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.result-lp3-box .yearly-lp3-price {
    font-size: 1rem;
    opacity: 0.8;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.benefits-lp3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-lp3-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-lp3-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-lp3-text {
    flex: 1;
}

.benefit-lp3-title {
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.benefit-lp3-desc {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.calculator-lp3-cta {
    text-align: center;
}

.calculator-lp3-cta a {
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white !important;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.35);
    transition: all 0.3s ease;
}

.calculator-lp3-cta a:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.45);
}

/* ========================================
   4. VIDEO/E-SIGNATUR SECTION LP3
   ======================================== */
.esignatur-lp3-section {
    background: linear-gradient(135deg, #0B1933 0%, #1A2B44 100%);
    padding: 100px 20px;
    color: white;
}

.esignatur-lp3-container {
    max-width: 1200px;
    margin: 0 auto;
}

.esignatur-lp3-header {
    text-align: center;
    margin-bottom: 60px;
}

.esignatur-lp3-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.esignatur-lp3-header h2 .highlight-lp3 {
    color: #E65100;
}

.esignatur-lp3-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.esignatur-lp3-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.esignatur-lp3-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.esignatur-lp3-video video,
.esignatur-lp3-video iframe,
.esignatur-lp3-video img {
    width: 100%;
    height: auto;
    display: block;
}

.esignatur-lp3-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.esignatur-lp3-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.esignatur-lp3-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.esignatur-lp3-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E65100, #D84315);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    color: white;
}

.esignatur-lp3-feature-icon i {
    color: white;
}

.esignatur-lp3-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.esignatur-lp3-feature-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ========================================
   5. COMPLIANCE/USE CASES SECTION LP3
   ======================================== */
.compliance-lp3-section {
    background: #f2f2f1;
    padding: 80px 20px;
}

.compliance-lp3-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-lp3-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-lp3-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1933;
    position: relative;
    display: inline-block;
}

.section-lp3-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E65100, #FFD2A9);
    margin: 20px auto 0;
    border-radius: 2px;
}

.compliance-lp3-box {
    background: white;
    border: 3px solid #E65100;
    padding: 50px;
    border-radius: 20px;
}

.compliance-lp3-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.compliance-lp3-header i {
    font-size: 2.5rem;
    color: #E65100;
}

.compliance-lp3-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0B1933;
}

.compliance-lp3-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.compliance-lp3-card {
    background: #f2f2f1;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.compliance-lp3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.compliance-lp3-card .icon-lp3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.compliance-lp3-card .icon-lp3 i {
    color: white;
}

.compliance-lp3-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 15px;
}

.compliance-lp3-card p {
    color: #666;
    line-height: 1.7;
}

/* ========================================
   6. FEATURES GRID LP3
   ======================================== */
.features-lp3-section {
    background: white;
    padding: 80px 20px;
}

.features-lp3-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-lp3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-lp3-card {
    background: linear-gradient(135deg, #5272C5 0%, #0B1933 100%);
    color: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-lp3-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD2A9 0%, #FFCBA3 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.feature-lp3-card:hover::after {
    opacity: 1;
}

.feature-lp3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-lp3-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 2;
    color: white;
}

.feature-lp3-card:hover i {
    color: #E65100;
}

.feature-lp3-card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    color: white;
    line-height: 1.3;
}

.feature-lp3-card:hover h3 {
    color: black;
}

.feature-lp3-card p {
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    color: white;
}

.feature-lp3-card:hover p {
    color: black;
}

/* ========================================
   7. TESTIMONIALS LP3
   ======================================== */
.testimonials-lp3-section {
    background: #f2f2f1;
    padding: 80px 20px;
}

.testimonials-lp3-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-lp3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-lp3-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* FLEXBOX für gleichmäßige Höhe */
    display: flex;
    flex-direction: column;
}

.testimonial-lp3-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quote-lp3-mark {
    font-size: 4rem;
    color: #5272C5;
    opacity: 0.2;
    line-height: 1;
    text-align: center;
}

.stars-lp3 {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 20px 0;
}

.star-lp3 {
    color: #E65100;
    font-size: 1.3rem;
}

.testimonial-lp3-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    text-align: center;
    /* Mehr Abstand nach unten zur Linie */
    margin-bottom: 30px;
    /* Flexgrow: Text-Bereich füllt verfügbaren Platz */
    flex-grow: 1;
}

.testimonial-lp3-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding-top: 25px;
    border-top: 2px solid #f2f2f1;
    /* Immer am unteren Rand der Karte */
    margin-top: auto;
}

/* Neuer Stil für Avatar-Bilder */
.avatar-lp3-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-lp3-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Fallback für Initialen-Avatare (falls noch verwendet) */
.avatar-lp3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-lp3-info {
    text-align: left;
}

.author-lp3-name {
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 5px;
}

.author-lp3-position {
    font-size: 0.9rem;
    color: #666;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .testimonials-lp3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-lp3-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-lp3-card {
        padding: 30px 25px;
    }
}

/* ========================================
   8. PRICING LP3
   ======================================== */
.pricing-lp3-section {
    background: linear-gradient(135deg, #5272C5 0%, #0B1933 100%);
    padding: 80px 20px;
    color: white;
}

.pricing-lp3-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pricing-lp3-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.pricing-lp3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-lp3-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pricing-lp3-card.featured-lp3 {
    background: white;
    color: #0B1933;
    transform: scale(1.05);
    position: relative;
}

.pricing-lp3-card.featured-lp3 .badge-lp3-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #E65100;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-lp3-card:hover {
    transform: translateY(-5px);
}

.pricing-lp3-card.featured-lp3:hover {
    transform: scale(1.08) translateY(-5px);
}

.plan-lp3-name {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.price-lp3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-lp3-period {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.pricing-lp3-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-lp3-features li {
    margin-bottom: 12px;
    padding-left: 0;
}

.pricing-lp3-cta {
    background: #E65100;
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
}

.pricing-lp3-card.featured-lp3 .pricing-lp3-cta {
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white !important;
}

.pricing-lp3-cta:hover {
    color: white !important;
    transform: scale(1.05);
}

.pricing-lp3-note {
    margin-top: 40px;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* ========================================
   9. FINAL CTA LP3
   ======================================== */
.final-lp3-cta-section {
    background: linear-gradient(270deg, #E65100 0%, #D84315 100%);
    padding: 100px 20px;
    color: white;
    text-align: center;
}

.final-lp3-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.final-lp3-cta-container h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.final-lp3-cta-container p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.cta-lp3-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
}

.cta-lp3-button-primary {
    background: white;
    color: #E65100 !important;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-lp3-button-primary:hover {
    color: #E65100 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-lp3-button-secondary {
    background: transparent;
    color: white !important;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-lp3-button-secondary:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

.cta-lp3-note {
    margin-top: 30px;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ========================================
   LEGAL FOOTER LP3
   ======================================== */
.legal-lp3-footer {
    background: #E65100 !important;
    padding: 40px 20px;
    text-align: center;
}

.legal-lp3-links {
    font-size: 15px;
    line-height: 1.8;
}

.legal-lp3-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    padding: 0 8px;
}

.legal-lp3-links a:hover {
    color: #ffffff !important;
    opacity: 0.8;
}

.legal-lp3-separator {
    color: #5272C5 !important;
    padding: 0 5px;
}

/* ========================================
   RESPONSIVE LP3
   ======================================== */
@media (max-width: 1024px) {
    .hero-lp3-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .esignatur-lp3-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-lp3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-lp3-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-lp3-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-lp3-text h1 {
        font-size: 2rem;
    }
    
    .package-lp3-switcher {
        flex-direction: column;
    }
    
    .package-lp3-btn {
        max-width: 100%;
    }
    
    .calculator-lp3-input input {
        font-size: 1.2rem;
    }
    
    .result-lp3-box .price-lp3-result {
        font-size: 3rem;
    }
    
    .esignatur-lp3-header h2 {
        font-size: 2rem;
    }
    
    .benefits-lp3-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-lp3-cards {
        grid-template-columns: 1fr;
    }
    
    .features-lp3-grid {
        grid-template-columns: 1fr;
    }
    
    /* Comparison Section Bild responsive */
    .features-lp3-section img {
        max-width: 90%;
        margin: 0 auto 30px;
    }
    
    .pricing-lp3-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-lp3-card.featured-lp3 {
        transform: scale(1);
    }
    
    .cta-lp3-buttons {
        flex-direction: column;
    }

    .legal-lp3-links {
        font-size: 14px;
        line-height: 2;
    }
    
    .legal-lp3-links a {
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .legal-lp3-footer {
        padding: 30px 15px;
    }
    
    .legal-lp3-links {
        font-size: 13px;
    }
    
    .legal-lp3-links a,
    .legal-lp3-separator {
        display: inline-block;
        margin: 5px 0;
    }
}

/* ========================================
   STICKY NAVIGATION - LP3
   ======================================== */
.sticky-lp3-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.sticky-lp3-nav.scrolled {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.sticky-lp3-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-lp3-logo img {
    height: 40px !important;
    width: auto !important;
    background: white !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.sticky-lp3-nav.scrolled .sticky-lp3-logo img {
    height: 35px !important;
    background: white !important;
    padding: 5px 10px !important;
}

.sticky-lp3-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.sticky-lp3-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.sticky-lp3-nav.scrolled .sticky-lp3-menu a {
    color: #0B1933 !important;
}

.sticky-lp3-menu a:hover {
    color: #E65100 !important;
}

.sticky-lp3-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E65100;
    transition: width 0.3s ease;
}

.sticky-lp3-menu a:hover::after {
    width: 100%;
}

/* ========================================
   HERO IMAGE
   ======================================== */
.hero-lp3-image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 100%;
    overflow: hidden !important;
}

.hero-lp3-image > img {
    width: 100% !important;
    max-width: 550px !important;
    height: auto !important;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

/* ========================================
   H1 ORANGE UNTERSTREICHUNG
   Nutze <span class="orange-line">Text</span> in der H1
   ======================================== */
.orange-line {
    position: relative;
    display: inline-block;
}

.orange-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 4px;
    background: #E65100;
    border-radius: 2px;
}

/* Gradient-Variante */
.orange-line-gradient {
    position: relative;
    display: inline-block;
}

.orange-line-gradient::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E65100 0%, #FF8A00 100%);
    border-radius: 2px;
}

/* ========================================
   LOGO LAUFBAND - LP3
   MASKE statt Farbbalken
   ======================================== */
.logo-lp3-carousel {
    margin-top: 30px;
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    
    /* DER FIX: CSS Maske macht Logos an den Rändern transparent */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* WICHTIG: Alte ::before/::after KOMPLETT entfernen! */
.logo-lp3-carousel::before,
.logo-lp3-carousel::after {
    display: none !important;
    content: none !important;
}

.logo-lp3-track {
    display: flex;
    gap: 25px;
    animation: logoScroll-lp3 30s linear infinite;
    width: fit-content;
    align-items: center;
}

/* Logo Items - Weißer Hintergrund, KEIN Schatten! */
.logo-lp3-item {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Logos in Originalfarbe */
.logo-lp3-item img {
    width: 100%;
    height: 100%;
    max-height: 45px;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.logo-lp3-item:hover img {
    transform: scale(1.05);
}

@keyframes logoScroll-lp3 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-lp3-carousel:hover .logo-lp3-track {
    animation-play-state: paused;
}

/* ========================================
   RESPONSIVE - TABLET (max 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .sticky-lp3-menu {
        gap: 20px !important;
    }
    
    .sticky-lp3-menu a {
        font-size: 0.9rem !important;
    }
    
    .hero-lp3-text h1 {
        font-size: 2.2rem !important;
    }
    
    .logo-lp3-item {
        width: 120px !important;
        height: 60px !important;
        padding: 12px 15px !important;
    }
    
    .hero-lp3-image > img {
        max-width: 450px !important;
    }
    
    .logo-lp3-carousel {
        max-width: 450px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (max 768px)
   ======================================== */
@media (max-width: 768px) {
    body,
    html {
        overflow-x: hidden !important;
    }
    
    .sticky-lp3-nav {
        padding: 10px 0 !important;
    }
    
    .sticky-lp3-container {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 10px 15px !important;
    }
    
    .sticky-lp3-logo img {
        height: 32px !important;
        padding: 4px 8px !important;
    }
    
    .sticky-lp3-nav.scrolled .sticky-lp3-logo img {
        height: 28px !important;
    }
    
    .sticky-lp3-menu {
        width: 100% !important;
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }
    
    .sticky-lp3-menu a {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }
    
    .hero-lp3-header {
        padding-top: 130px !important;
        overflow-x: hidden !important;
    }
    
    .hero-lp3-container {
        overflow: hidden !important;
        padding: 0 15px !important;
    }
    
    .hero-lp3-text h1 {
        font-size: 1.5rem !important;
        line-height: 1.35 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    /* Orange Linie kleiner auf Mobile */
    .orange-line::after {
        height: 3px !important;
        bottom: -5px !important;
    }
    
    .hero-lp3-lead {
        font-size: 0.95rem !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .hero-lp3-description {
        font-size: 0.9rem !important;
        word-wrap: break-word !important;
    }
    
    .hero-lp3-badges {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 8px !important;
    }
    
    .badge-lp3 {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
    }
    
    .hero-lp3-cta-button {
        padding: 15px 30px !important;
        font-size: 1rem !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .hero-lp3-image {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .hero-lp3-image > img {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Logo Carousel Mobile - Maske angepasst */
    .logo-lp3-carousel {
        max-width: 100% !important;
        margin: 20px 0 !important;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    
    .logo-lp3-item {
        width: 110px !important;
        height: 55px !important;
        padding: 10px 12px !important;
    }
    
    .logo-lp3-item img {
        max-height: 38px !important;
    }
    
    .logo-lp3-track {
        gap: 20px !important;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max 480px)
   ======================================== */
@media (max-width: 480px) {
    .sticky-lp3-container {
        gap: 8px !important;
        padding: 8px 10px !important;
    }
    
    .sticky-lp3-menu {
        gap: 8px !important;
    }
    
    .sticky-lp3-menu a {
        font-size: 0.65rem !important;
        padding: 2px 4px !important;
    }
    
    .hero-lp3-header {
        padding-top: 120px !important;
    }
    
    .hero-lp3-container {
        padding: 0 10px !important;
    }
    
    .hero-lp3-text h1 {
        font-size: 1.3rem !important;
    }
    
    .hero-lp3-lead {
        font-size: 0.85rem !important;
    }
    
    .badge-lp3 {
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
    }
    
    /* Carousel Mobile Small - Maske noch schmaler */
    .logo-lp3-carousel {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    
    .logo-lp3-item {
        width: 95px !important;
        height: 48px !important;
        padding: 8px 10px !important;
    }
    
    .logo-lp3-item img {
        max-height: 32px !important;
    }
    
    .logo-lp3-track {
        gap: 15px !important;
    }
}

/* ========================================
   GLOBAL OVERFLOW FIX
   ======================================== */
body {
    overflow-x: hidden !important;
}

* {
    box-sizing: border-box !important;
}

/* ========================================
   VIDEO IN iMAC MONITOR - LP3
   ======================================== */
.video-monitor-lp3 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
}
.monitor-frame-lp3 {
    width: 100%;
    height: auto;
    display: block;
}
.monitor-screen-lp3 {
    position: absolute;
    top: 13.4%;
    left: 6.0%;
    width: 88.9%;
    height: 48.2%;
    overflow: hidden;
    background: #000;
}
.monitor-screen-lp3 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}
/* ========================================
   OVERLAYS - VERSTECKEN YOUTUBE UI
   ======================================== */
/* OVERLAY OBEN - versteckt Titel, Logo, Teilen-Button */
.video-overlay-top-lp3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, #000000 0%, #000000 60%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}
/* OVERLAY UNTEN - versteckt YouTube Logo */
.video-overlay-bottom-lp3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #000000 0%, #000000 60%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .video-monitor-lp3 {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .video-overlay-top-lp3 {
        height: 40px;
    }
    
    .video-overlay-bottom-lp3 {
        height: 35px;
    }
}
@media (max-width: 480px) {
    .video-overlay-top-lp3 {
        height: 30px;
    }
    
    .video-overlay-bottom-lp3 {
        height: 25px;
    }
}

/* ========================================
   VIDEO IN iMAC MONITOR - LP3
   MIT CLIPPING-TRICK
   ======================================== */
.video-monitor-lp3 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
}
.monitor-frame-lp3 {
    width: 100%;
    height: auto;
    display: block;
}
/* Das Display des iMacs */
.monitor-screen-lp3 {
    position: absolute;
    top: 13.4%;
    left: 6.0%;
    width: 88.9%;
    height: 48.2%;
    overflow: hidden; /* WICHTIG: Schneidet YouTube-UI ab! */
    background: #000;
}
/* Der Clipper skaliert das Video, um Ränder zu verstecken */
.youtube-clipper-lp3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 150%; /* Video ist HÖHER als das Display */
    transform: translate(-50%, -50%); /* Zentriert das Video vertikal */
}
.youtube-clipper-lp3 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Keine Klicks = keine Hover-UI */
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .video-monitor-lp3 {
        max-width: 100%;
        padding: 0 15px;
    }
}
@media (max-width: 480px) {
    .video-monitor-lp3 {
        padding: 0 10px;
    }
}

/* =========================================
   HRTIME REQUEST WIDGET STYLES (GLOBAL)
   ========================================= */

.hrtime-request-widget {
    width: 100%;
    max-width: 450px;
    /* Begrenzt Breite wie im Bild */
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Sanfter Schatten */
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    /* Fallback */
    margin: 0 auto;
}

/* --- Header & Bild --- */
.hrt-widget-header {
    position: relative;
    text-align: center;
    padding-bottom: 20px;
}

.hrt-image-placeholder {
    width: 100%;
    height: 220px;
    /* Feste Höhe für Bildbereich */
    background: #f0f4f8;
    overflow: hidden;
    position: relative;
    /* Für Overlay Effekte wenn gewünscht */
}

.hrt-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hrt-widget-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: -30px;
    /* Zieht Titel etwas ins Bild rein für modernen Look */
    position: relative;
    z-index: 2;
}

.hrt-widget-title-row h2 {
    background: #ffffff;
    color: #0B1933;
    /* Dunkelblau */
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hrt-widget-icon {
    width: 50px;
    height: 50px;
    background: #E65100;
    /* Orange Akzent */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.3);
}

/* --- Schritte Liste --- */
.hrt-steps-list {
    padding: 30px 25px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hrt-step-item {
    display: flex;
    align-items: stretch;
    /* Wichtig für gleiche Höhe */
    background: #F5F9FC;
    /* Sehr helles Blau */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid transparent;
    /* Platzhalter für Hover Border */
}

.hrt-step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-left-color: #E65100;
    /* Orange Linie beim Hover */
}

/* Nummer Box (Die bunten Pfeile ersetzt durch cleanes Design) */
.hrt-step-number {
    background: #0B1933;
    /* Dunkelblau statt Bunt */
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Kleiner Design-Kniff: Schräge Kante */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    margin-right: -10px;
    /* Damit Text näher rückt */
    z-index: 1;
}

/* Alternierende Akzente für Nummern (Optional, wenn du bisschen Farbe willst) */
.hrt-step-item:nth-child(2) .hrt-step-number {
    background: #152a4d;
}

.hrt-step-item:nth-child(3) .hrt-step-number {
    background: #E65100;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

/* Orange Highlight */
.hrt-step-item:nth-child(4) .hrt-step-number {
    background: #FFB300;
    color: #0B1933;
}

/* Gelb/Gold */

/* Override für Design-Konstanz: Lieber alles Blau/Orange? */
/* Wenn ja, lösche den Block "Alternierende Akzente" oben */
/* Ich habe jetzt bewusst Schritt 3 Orange gemacht als "Entscheidungsschritt" */

.hrt-step-content {
    flex: 1;
    padding: 15px 15px 15px 25px;
    /* Links mehr Padding wegen schräger Nummer */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hrt-step-content strong {
    display: block;
    color: #0B1933;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.hrt-step-content span {
    display: block;
    color: #546E7A;
    /* Grau-Blau für Text */
    font-size: 0.9rem;
    line-height: 1.3;
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .hrt-widget-title-row h2 {
        font-size: 1.5rem;
        padding: 8px 20px;
    }

    .hrt-step-number {
        width: 60px;
        font-size: 1.3rem;
    }

    .hrt-step-content strong {
        font-size: 1rem;
    }
}
