/* ========================================
   HRTime Landing Page LP5 - All-in-One HR-Software
   Fokus: 8 Module präsentieren + SEO Keywords
   Design: Premium Dark & Orange Theme
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* ========================================
   1. HERO SECTION LP5
   "All-in-One HR-Komplettlösung"
   ======================================== */
.hero-lp5-header {
    background: linear-gradient(270deg, #5272C5 0%, #1A2B44 50%, #0B1933 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 580px;
}

.orbit-lp5-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
}

.orbit-lp5-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid;
    transform: translate(-50%, -50%);
    animation: pulse-lp5 4s ease-in-out infinite;
}

.orbit-lp5-ring:nth-child(1) {
    width: 300px;
    height: 300px;
    border-color: rgba(82, 114, 197, 0.6);
    animation-delay: 0s;
}

.orbit-lp5-ring:nth-child(2) {
    width: 500px;
    height: 500px;
    border-color: rgba(230, 81, 0, 0.5);
    animation-delay: 1s;
}

.orbit-lp5-ring:nth-child(3) {
    width: 750px;
    height: 750px;
    border-color: rgba(82, 114, 197, 0.35);
    animation-delay: 2s;
}

.orbit-lp5-ring:nth-child(4) {
    width: 1000px;
    height: 1000px;
    border-color: rgba(230, 81, 0, 0.25);
    animation-delay: 3s;
}

@keyframes pulse-lp5 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.8;
    }
}

.hero-lp5-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-lp5-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.hero-lp5-text h1 .highlight-lp5 {
    color: #E65100;
    position: relative;
}

.hero-lp5-text h1 .highlight-lp5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    background: transparent;
    display: none;
}

.hero-lp5-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #D4E3F0;
}

.hero-lp5-lead strong {
    color: white;
}

.hero-lp5-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-lp5-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.badge-lp5 {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.badge-lp5:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge-lp5 .stars-lp5 {
    color: #FFD2A9;
}

.hero-lp5-cta-button {
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white !important;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(230, 81, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-lp5-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-lp5-cta-button:hover::before {
    left: 100%;
}

.hero-lp5-cta-button:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 81, 0, 0.5);
}

.hero-lp5-image {
    position: relative;
}

.hero-lp5-image>img {
    width: 100%;
    max-width: 580px;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

/* Logo Carousel LP5 */
.logo-lp5-carousel {
    margin-top: 30px;
    width: 100%;
    max-width: 580px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: transparent !important;
    -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%);
}

.logo-lp5-track {
    display: flex;
    gap: 25px;
    animation: logoScroll-lp5 35s linear infinite;
    width: fit-content;
    align-items: center;
}

.logo-lp5-item {
    flex-shrink: 0;
    width: 130px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white !important;
    border-radius: 12px;
    padding: 12px 18px;
}

.logo-lp5-item img {
    width: 100%;
    height: 100%;
    max-height: 40px;
    object-fit: contain;
}

@keyframes logoScroll-lp5 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-lp5-carousel:hover .logo-lp5-track {
    animation-play-state: paused;
}

/* ========================================
   2. 8-MODULE SHOWCASE SECTION
   "HR-Komplettlösung: Alle 8 Module"
   ======================================== */
.modules-lp5-section {
    background: linear-gradient(180deg, #f0f0ef 0%, #D4E3F0 100%);
    padding: 100px 20px;
    position: relative;
}

.modules-lp5-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-lp5-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-lp5-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #E65100;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-lp5-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1933;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-lp5-header h2 .highlight-lp5 {
    color: #E65100;
}

.section-lp5-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #E65100, #FF8A00);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-lp5-intro {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* 8 Module Grid - 4x2 */
.modules-lp5-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.module-lp5-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.module-lp5-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #5272C5, #E65100);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.module-lp5-card:hover::before {
    transform: scaleX(1);
}

.module-lp5-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 81, 0, 0.3);
}

.module-lp5-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5272C5 0%, #0B1933 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(82, 114, 197, 0.3);
    transition: all 0.4s ease;
}

.module-lp5-card:hover .module-lp5-icon {
    background: linear-gradient(135deg, #E65100 0%, #D84315 100%);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.4);
    transform: scale(1.1);
}

.module-lp5-icon i {
    font-size: 2rem;
    color: white;
}

.module-lp5-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 12px;
    line-height: 1.3;
}

.module-lp5-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.module-lp5-link {
    margin-top: auto;
    color: #E65100;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.module-lp5-link:hover {
    color: #D84315;
    gap: 10px;
}

/* ========================================
   3. BENEFITS COMPARISON SECTION
   "Warum All-in-One statt Einzellösungen?"
   ======================================== */
.comparison-lp5-section {
    background: #0B1933;
    padding: 100px 20px;
    color: white;
    position: relative;
}

.comparison-lp5-container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-lp5-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.comparison-lp5-bad {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 100, 100, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.comparison-lp5-good {
    background: rgba(230, 81, 0, 0.15);
    border: 2px solid rgba(230, 81, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.comparison-lp5-good::before {
    content: 'EMPFOHLEN';
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.comparison-lp5-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-lp5-bad .comparison-lp5-title i {
    color: #ff6b6b;
}

.comparison-lp5-good .comparison-lp5-title i {
    color: #4CAF50;
}

.comparison-lp5-list {
    list-style: none;
}

.comparison-lp5-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-lp5-list li:last-child {
    border-bottom: none;
}

.comparison-lp5-bad .comparison-lp5-list li i {
    color: #ff6b6b;
    margin-top: 3px;
}

.comparison-lp5-good .comparison-lp5-list li i {
    color: #4CAF50;
    margin-top: 3px;
}

/* ========================================
   4. FEATURES BENTO GRID
   "Alle Funktionen im Überblick"
   ======================================== */
.features-lp5-section {
    background: linear-gradient(180deg, #D4E3F0 0%, #f0f0ef 100%);
    padding: 100px 20px;
}

.features-lp5-container {
    max-width: 1300px;
    margin: 0 auto;
}

.features-lp5-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.feature-lp5-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-lp5-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(82, 114, 197, 0.3);
}

.feature-lp5-card.span-2 {
    grid-column: span 2;
}

.feature-lp5-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.feature-lp5-icon.blue {
    background: linear-gradient(135deg, rgba(82, 114, 197, 0.15), rgba(82, 114, 197, 0.05));
    color: #5272C5;
}

.feature-lp5-icon.orange {
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.15), rgba(230, 81, 0, 0.05));
    color: #E65100;
}

.feature-lp5-icon.green {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    color: #4CAF50;
}

.feature-lp5-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 12px;
}

.feature-lp5-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.feature-lp5-list {
    list-style: none;
    margin-top: 15px;
}

.feature-lp5-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-lp5-list li i {
    color: #4CAF50;
    font-size: 0.85rem;
}

/* ========================================
   5. TESTIMONIALS LP5
   ======================================== */
.testimonials-lp5-section {
    background: #f0f0ef;
    padding: 100px 20px;
}

.testimonials-lp5-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-lp5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-lp5-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.testimonial-lp5-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 81, 0, 0.2);
}

.quote-lp5-mark {
    font-size: 4rem;
    color: #5272C5;
    opacity: 0.15;
    line-height: 1;
    text-align: center;
}

.stars-lp5 {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 15px 0;
}

.star-lp5 {
    color: #E65100;
    font-size: 1.2rem;
}

.testimonial-lp5-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-lp5-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0ef;
    margin-top: auto;
}

.avatar-lp5-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.author-lp5-info {
    text-align: left;
}

.author-lp5-name {
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.author-lp5-position {
    font-size: 0.85rem;
    color: #666;
}

/* ========================================
   6. PRICING CALCULATOR LP5
   ======================================== */
.calculator-lp5-section {
    background: white;
    padding: 100px 20px;
}

.calculator-lp5-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-lp5-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}

.package-lp5-switcher {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.package-lp5-btn {
    flex: 1;
    max-width: 200px;
    padding: 20px 25px;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #0B1933;
}

.package-lp5-btn:hover {
    border-color: #5272C5;
    transform: translateY(-3px);
}

.package-lp5-btn.active-lp5 {
    border-color: #E65100;
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3);
}

.package-lp5-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.package-lp5-price {
    font-size: 1.4rem;
    font-weight: 700;
}

.package-lp5-price-unit {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.calculator-lp5-input {
    margin-bottom: 35px;
}

.calculator-lp5-input label {
    display: block;
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 15px;
    font-size: 1.05rem;
    text-align: center;
}

.calculator-lp5-input input {
    width: 100%;
    padding: 18px;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    transition: border-color 0.3s ease;
}

.calculator-lp5-input input:focus {
    outline: none;
    border-color: #5272C5;
}

.result-lp5-box {
    background: linear-gradient(135deg, #5272C5, #0B1933);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.result-lp5-box .label-lp5 {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.result-lp5-box .price-lp5-result {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 15px 0;
}

.result-lp5-box .price-lp5-period {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.result-lp5-box .yearly-lp5-price {
    font-size: 0.95rem;
    opacity: 0.8;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.calculator-lp5-cta {
    text-align: center;
}

.calculator-lp5-cta a {
    background: linear-gradient(135deg, #E65100, #D84315);
    color: white !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.35);
    transition: all 0.3s ease;
}

.calculator-lp5-cta a:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 81, 0, 0.45);
}

/* ========================================
   7. INTEGRATION PARTNERS
   ======================================== */
.integrations-lp5-section {
    background: linear-gradient(180deg, #0B1933 0%, #1A2B44 100%);
    padding: 80px 20px;
    color: white;
}

.integrations-lp5-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.integrations-lp5-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.integration-lp5-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.integration-lp5-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.integration-lp5-item img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* ========================================
   8. FINAL CTA LP5
   ======================================== */
.final-lp5-cta-section {
    background: linear-gradient(270deg, #E65100 0%, #D84315 100%);
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-lp5-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: cta-glow-lp5 10s ease-in-out infinite;
}

@keyframes cta-glow-lp5 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10%, 10%);
    }
}

.final-lp5-cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-lp5-cta-container h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.final-lp5-cta-container p {
    font-size: 1.2rem;
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-lp5-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-lp5-button-primary {
    background: white;
    color: #E65100 !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-lp5-button-primary:hover {
    color: #E65100 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.cta-lp5-button-secondary {
    background: transparent;
    color: white !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-lp5-button-secondary:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
}

.cta-lp5-note {
    margin-top: 35px;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ========================================
   9. LEGAL FOOTER LP5
   ======================================== */
.legal-lp5-footer {
    background: #D84315;
    padding: 35px 20px;
    text-align: center;
}

.legal-lp5-links {
    font-size: 0.9rem;
    line-height: 1.8;
}

.legal-lp5-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
    padding: 0 8px;
}

.legal-lp5-links a:hover {
    opacity: 0.8;
}

.legal-lp5-separator {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 5px;
}

/* ========================================
   12. STICKY NAV LP5 (Exakt wie LP1)
   ======================================== */
.sticky-lp5-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.sticky-lp5-nav.scrolled {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.sticky-lp5-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-lp5-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-lp5-nav.scrolled .sticky-lp5-logo img {
    height: 35px !important;
    background: white !important;
    padding: 5px 10px !important;
    border-radius: 0 !important;
    /* Kein Radius beim Scrollen, optional */
}

.sticky-lp5-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.sticky-lp5-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-lp5-nav.scrolled .sticky-lp5-menu a {
    color: #0B1933 !important;
}

.sticky-lp5-menu a:hover {
    color: #E65100 !important;
}

.sticky-lp5-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E65100;
    transition: width 0.3s ease;
}

.sticky-lp5-menu a:hover::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE DESIGN LP5
   ======================================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .hero-lp5-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-lp5-text h1 {
        font-size: 2.2rem;
    }

    .hero-lp5-badges {
        justify-content: center;
    }

    .hero-lp5-image {
        order: -1;
    }

    .hero-lp5-image>img {
        max-width: 500px;
        margin: 0 auto;
    }

    .modules-lp5-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-lp5-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-lp5-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-lp5-card.span-2 {
        grid-column: span 1;
    }

    .testimonials-lp5-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (768px) - HERO FIXES FROM LP4 */
@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden !important;
    }

    .hero-lp5-header {
        padding-top: 130px !important;
        padding-bottom: 60px;
        min-height: auto;
        overflow-x: hidden !important;
    }

    .hero-lp5-container {
        grid-template-columns: 1fr !important;
        overflow: hidden !important;
        padding: 0 15px !important;
    }

    .hero-lp5-text {
        text-align: center;
        padding: 0 10px;
    }

    .hero-lp5-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;
        margin-bottom: 20px;
    }

    .hero-lp5-lead {
        font-size: 0.95rem !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
    }

    .hero-lp5-description {
        font-size: 0.9rem !important;
        word-wrap: break-word !important;
    }

    .hero-lp5-badges {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .badge-lp5 {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
    }

    .hero-lp5-cta-button {
        width: 100% !important;
        text-align: center !important;
        padding: 15px 30px !important;
        font-size: 1rem !important;
    }

    .hero-lp5-image {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hero-lp5-image>img {
        max-width: 100% !important;
        width: 100% !important;
    }

    .logo-lp5-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-lp5-item {
        width: 110px !important;
        height: 55px !important;
        padding: 10px 12px !important;
    }

    .logo-lp5-item img {
        max-height: 38px !important;
    }

    .logo-lp5-track {
        gap: 20px !important;
    }

    /* REST OF 768PX - OTHER SECTIONS */
    .modules-lp5-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .module-lp5-card {
        padding: 30px 20px;
    }

    .section-lp5-header h2 {
        font-size: 1.8rem;
    }

    .features-lp5-bento {
        grid-template-columns: 1fr;
    }

    .testimonials-lp5-grid {
        grid-template-columns: 1fr;
    }

    .calculator-lp5-box {
        padding: 30px 20px;
    }

    .package-lp5-switcher {
        flex-direction: column;
    }

    .package-lp5-btn {
        max-width: 100%;
    }

    .result-lp5-box .price-lp5-result {
        font-size: 2.5rem;
    }

    .cta-lp5-buttons {
        flex-direction: column;
    }

    .final-lp5-cta-container h2 {
        font-size: 2rem;
    }

    /* Sticky Nav Mobile LP5 (Exakt wie LP1) */
    .sticky-lp5-nav {
        padding: 10px 0 !important;
    }

    .sticky-lp5-container {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 10px 15px !important;
    }

    .sticky-lp5-logo img {
        height: 32px !important;
        padding: 4px 8px !important;
    }

    .sticky-lp5-nav.scrolled .sticky-lp5-logo img {
        height: 28px !important;
    }

    .sticky-lp5-menu {
        width: 100% !important;
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .sticky-lp5-menu a {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }
}


/* Small Mobile (480px) - HERO FIXES FROM LP4 */
@media (max-width: 480px) {
    .hero-lp5-header {
        padding-top: 120px !important;
    }

    .hero-lp5-container {
        padding: 0 10px !important;
    }

    .hero-lp5-text h1 {
        font-size: 1.3rem !important;
    }

    .hero-lp5-lead {
        font-size: 0.85rem !important;
    }

    .badge-lp5 {
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
    }

    .logo-lp5-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-lp5-item {
        width: 95px !important;
        height: 48px !important;
        padding: 8px 10px !important;
    }

    .logo-lp5-item img {
        max-height: 32px !important;
    }

    .logo-lp5-track {
        gap: 15px !important;
    }

    /* REST OF 480PX - OTHER SECTIONS */
    .module-lp5-icon {
        width: 65px;
        height: 65px;
    }

    .module-lp5-icon i {
        font-size: 1.6rem;
    }

    .section-lp5-header h2 {
        font-size: 1.5rem;
    }

    .final-lp5-cta-container h2 {
        font-size: 1.6rem;
    }

    .cta-lp5-button-primary,
    .cta-lp5-button-secondary {
        padding: 15px 30px;
        font-size: 1rem;
    }
}


/* ========================================
   LP5 VIDEO SECTION STYLES
   OBEN: Weißer Hintergrund, schwarze Schrift
   UNTEN: Dunkelblau wie LP1
   ======================================== */

/* ========================================
   TEIL 1: WEISSER HINTERGRUND (OBEN)
   ======================================== */
.video-lp5-section-white {
    background: #ffffff;
    padding: 100px 20px 80px;
}

.video-lp5-container-white {
    max-width: 1200px;
    margin: 0 auto;
}

.video-lp5-header-white {
    text-align: center;
    margin-bottom: 60px;
}

.video-lp5-header-white h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0B1933;
    margin-bottom: 20px;
}

.video-lp5-header-white h2 .highlight-lp5 {
    color: #E65100;
}

.video-lp5-header-white p {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   TEIL 2: DUNKELBLAU (UNTEN) - EXAKT wie LP1
   ======================================== */
.esignatur-lp5-section {
    background: linear-gradient(135deg, #0B1933 0%, #1A2B44 100%);
    padding: 100px 20px;
    color: white;
}

.esignatur-lp5-container {
    max-width: 1200px;
    margin: 0 auto;
}

.esignatur-lp5-header {
    text-align: center;
    margin-bottom: 60px;
}

.esignatur-lp5-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.esignatur-lp5-header h2 .highlight-lp5 {
    color: #E65100;
}

.esignatur-lp5-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.esignatur-lp5-content {
    display: block;
    width: 100%;
}

/* Video Styles removed */

.esignatur-lp5-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.esignatur-lp5-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-lp5-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.esignatur-lp5-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-lp5-feature-icon i {
    color: white;
}

.esignatur-lp5-feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.esignatur-lp5-feature-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ========================================
   VIDEO IN iMAC MONITOR - LP5
   MIT CLIPPING-TRICK (exakt wie LP1)
   ======================================== */
.video-monitor-lp5 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.monitor-frame-lp5 {
    width: 100%;
    height: auto;
    display: block;
}

/* Das Display des iMacs */
.monitor-screen-lp5 {
    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-lp5 {
    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-lp5 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    /* Keine Klicks = keine Hover-UI */
}

/* ========================================
   OVERLAYS - VERSTECKEN YOUTUBE UI
   ======================================== */
.video-overlay-top-lp5 {
    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;
}

.video-overlay-bottom-lp5 {
    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: 1024px) {
    .esignatur-lp5-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .video-lp5-section-white {
        padding: 60px 20px 40px;
    }

    .esignatur-lp5-section {
        padding: 60px 20px;
    }

    .video-lp5-header-white h2,
    .esignatur-lp5-header h2 {
        font-size: 1.8rem;
    }

    .video-monitor-lp5 {
        max-width: 100%;
        padding: 0 15px;
    }

    .video-overlay-top-lp5 {
        height: 40px;
    }

    .video-overlay-bottom-lp5 {
        height: 35px;
    }

    .esignatur-lp5-feature {
        padding: 20px;
    }

    .esignatur-lp5-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .video-lp5-header-white h2,
    .esignatur-lp5-header h2 {
        font-size: 1.5rem;
    }

    .video-monitor-lp5 {
        padding: 0 10px;
    }

    .video-overlay-top-lp5 {
        height: 30px;
    }

    .video-overlay-bottom-lp5 {
        height: 25px;
    }

    .esignatur-lp5-feature {
        flex-direction: column;
        text-align: center;
    }

    .esignatur-lp5-feature-icon {
        margin: 0 auto;
    }
}

/* =========================================
   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;
    }
}
