/* ========================================
   HRTime Landing Page LP6 - E-Akte & Serienbriefe
   Formatierung 1:1 von LP5 übernommen
   Design: Premium Dark & Orange Theme
   ======================================== */

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

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

/* ========================================
   BARRIEREFREIHEIT - WCAG 2.1 AA
   ======================================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #E65100;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 100000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 3px solid #E65100;
    outline-offset: 3px;
}

/* ========================================
   1. HERO SECTION LP6
   "E-Akte & Serienbriefe"
   ======================================== */
.hero-lp6-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-lp6-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-lp6-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid;
    transform: translate(-50%, -50%);
    animation: pulse-lp6 4s ease-in-out infinite;
}

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

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

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

.orbit-lp6-ring:nth-child(4) {
    width: 1000px;
    height: 1000px;
    border-color: rgba(230, 81, 0, 0.25);
    animation-delay: 3s;
}

@keyframes pulse-lp6 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.8;
    }
}

.hero-lp6-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-lp6-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.hero-lp6-text h1 .highlight-lp6 {
    color: #E65100;
    position: relative;
}

.hero-lp6-text h1 .highlight-lp6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    background: transparent;
    display: none;
}

.hero-lp6-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #D4E3F0;
}

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

.hero-lp6-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.badge-lp6 {
    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-lp6:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.hero-lp6-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-lp6-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-lp6-cta-button:hover::before {
    left: 100%;
}

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

.hero-lp6-image {
    position: relative;
}

.hero-lp6-image>img {
    width: 100%;
    max-width: 580px;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

/* Logo Carousel LP6 */
.logo-lp6-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-lp6-track {
    display: flex;
    gap: 25px;
    animation: logoScroll-lp6 35s linear infinite;
    width: fit-content;
    align-items: center;
}

.logo-lp6-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-lp6-item img {
    width: 100%;
    height: 100%;
    max-height: 40px;
    object-fit: contain;
}

@keyframes logoScroll-lp6 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

/* ========================================
   2. MODULE SHOWCASE SECTION
   "15 Funktionen"
   ======================================== */
.modules-lp6-section {
    background: linear-gradient(180deg, #f0f0ef 0%, #D4E3F0 100%);
    padding: 100px 20px;
    position: relative;
}

.modules-lp6-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-lp6-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-lp6-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #E65100;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-lp6-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1933;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-lp6-header h2 .highlight-lp6 {
    color: #E65100;
}

.section-lp6-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #E65100, #FF8A00);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-lp6-intro {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Module Grid - 3 Spalten wie LP5 */
.modules-lp6-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.module-lp6-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-lp6-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-lp6-card:hover::before {
    transform: scaleX(1);
}

.module-lp6-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-lp6-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-lp6-card:hover .module-lp6-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-lp6-icon i {
    font-size: 2rem;
    color: white;
}

.module-lp6-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 12px;
    line-height: 1.3;
}

.module-lp6-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.module-lp6-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-lp6-link:hover {
    color: #D84315;
    gap: 10px;
}

/* ========================================
   SECURITY FEATURES SECTION LP6
   Dunkler Hintergrund, 6 Cards, 3 Spalten
   ======================================== */
.security-lp6-section {
    background: linear-gradient(135deg, #0B1933 0%, #1A2B44 100%);
    padding: 100px 20px;
    color: white;
    position: relative;
}

.security-lp6-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header verwendet gleiche Klassen wie modules-section */
.security-lp6-section .section-lp6-header {
    text-align: center;
    margin-bottom: 70px;
}

.security-lp6-section .section-lp6-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFD2A9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.security-lp6-section .section-lp6-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.security-lp6-section .section-lp6-header h2 .highlight-lp6 {
    color: #E65100;
}

.security-lp6-section .section-lp6-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #E65100, #FF8A00);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.security-lp6-section .section-lp6-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Security Grid - 3 Spalten wie modules */
.security-lp6-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.security-lp6-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.security-lp6-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #E65100, #FFD2A9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.security-lp6-card:hover::before {
    transform: scaleX(1);
}

.security-lp6-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(230, 81, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(230, 81, 0, 0.4);
}

.security-lp6-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    transition: all 0.4s ease;
}

.security-lp6-card:hover .security-lp6-icon {
    background: linear-gradient(135deg, #E65100 0%, #D84315 100%);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.5);
    transform: scale(1.1);
}

.security-lp6-icon i {
    font-size: 2rem;
    color: white;
}

.security-lp6-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.security-lp6-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ========================================
   RESPONSIVE - SECURITY SECTION
   ======================================== */

@media (max-width: 1024px) {
    .security-lp6-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .security-lp6-section {
        padding: 60px 20px;
    }

    .security-lp6-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-lp6-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .security-lp6-icon {
        width: 65px;
        height: 65px;
    }

    .security-lp6-icon i {
        font-size: 1.6rem;
    }
}

/* ========================================
   3. COMPARISON SECTION
   "Warum E-Akten?"
   ======================================== */
.comparison-lp6-section {
    background: #0B1933;
    padding: 100px 20px;
    color: white;
    position: relative;
}

.comparison-lp6-container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-lp6-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.comparison-lp6-bad {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 100, 100, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.comparison-lp6-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-lp6-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-lp6-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-lp6-bad .comparison-lp6-title i {
    color: #ff6b6b;
}

.comparison-lp6-good .comparison-lp6-title i {
    color: #4CAF50;
}

.comparison-lp6-list {
    list-style: none;
}

.comparison-lp6-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-lp6-list li:last-child {
    border-bottom: none;
}

.comparison-lp6-bad .comparison-lp6-list li i {
    color: #ff6b6b;
    margin-top: 3px;
}

.comparison-lp6-good .comparison-lp6-list li i {
    color: #4CAF50;
    margin-top: 3px;
}

/* ========================================
   4. VIDEO SECTION
   ======================================== */
.video-lp6-section-white {
    background: #ffffff;
    padding: 100px 20px 80px;
}

.video-lp6-container-white {
    max-width: 1200px;
    margin: 0 auto;
}

.video-lp6-header-white {
    text-align: center;
    margin-bottom: 60px;
}

.video-lp6-header-white h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0B1933;
    margin-bottom: 20px;
}

.video-lp6-header-white h2 .highlight-lp6 {
    color: #E65100;
}

.video-lp6-header-white p {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

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

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

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

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

.esignatur-lp6-content {
    display: block;
    width: 100%;
}

.esignatur-lp6-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.esignatur-lp6-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-lp6-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.esignatur-lp6-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-lp6-feature-icon i {
    color: white;
}

.esignatur-lp6-feature-text h3,
.esignatur-lp6-feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* ========================================
   VIDEO IN iMAC MONITOR - LP6
   ======================================== */
.video-monitor-lp6 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.monitor-frame-lp6 {
    width: 100%;
    height: auto;
    display: block;
}

.monitor-screen-lp6 {
    position: absolute;
    top: 13.4%;
    left: 6.0%;
    width: 88.9%;
    height: 48.2%;
    overflow: hidden;
    background: #000;
}

.youtube-clipper-lp6 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 150%;
    transform: translate(-50%, -50%);
}

.youtube-clipper-lp6 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.video-overlay-top-lp6 {
    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-lp6 {
    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;
}

/* ========================================
   6. TESTIMONIALS LP6
   ======================================== */
.testimonials-lp6-section {
    background: #f0f0ef;
    padding: 100px 20px;
}

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

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

.testimonial-lp6-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-lp6-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-lp6-mark {
    font-size: 4rem;
    color: #5272C5;
    opacity: 0.15;
    line-height: 1;
    text-align: center;
}

.stars-lp6 {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 15px 0;
}

.star-lp6 {
    color: #E65100;
    font-size: 1.2rem;
}

.testimonial-lp6-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-lp6-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0ef;
    margin-top: auto;
}

.avatar-lp6-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-lp6-info {
    text-align: left;
}

.author-lp6-name {
    font-weight: 600;
    color: #0B1933;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.author-lp6-position {
    font-size: 0.85rem;
    color: #666;
}

/* ========================================
   7. PRICING CALCULATOR LP6
   ======================================== */
.calculator-lp6-section {
    background: white;
    padding: 100px 20px;
}

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

.calculator-lp6-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-lp6-switcher {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.package-lp6-btn {
    flex: 1;
    max-width: 200px;
    padding: 20px 25px;
    border: 3px solid #e0e0e0 !important;
    border-radius: 15px;
    background: #ffffff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #0B1933 !important;
    font-family: 'Montserrat', sans-serif !important;
}

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

.package-lp6-btn.active-lp6 {
    border-color: #E65100 !important;
    background: linear-gradient(135deg, #E65100, #D84315) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3) !important;
}

/* Vererbung der Textfarbe für Name und Preis sicherstellen */
.package-lp6-name,
.package-lp6-price {
    color: inherit;
}

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

.package-lp6-price {
    font-size: 1.4rem;
    font-weight: 700;
}

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

.calculator-lp6-input {
    margin-bottom: 35px;
}

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

.calculator-lp6-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-lp6-input input:focus {
    outline: none;
    border-color: #5272C5;
}

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

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

.result-lp6-box .price-lp6-result {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 15px 0;
}

.result-lp6-box .price-lp6-period {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.result-lp6-box .yearly-lp6-price {
    font-size: 0.95rem;
    opacity: 0.8;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

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

.calculator-lp6-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-lp6-cta a:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 81, 0, 0.45);
}

/* ========================================
   8. INTEGRATION PARTNERS
   ======================================== */
.integrations-lp6-section {
    background: linear-gradient(180deg, #0B1933 0%, #1A2B44 100%);
    padding: 80px 20px;
    color: white;
}

.integrations-lp6-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.integrations-lp6-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.integration-lp6-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-lp6-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.integration-lp6-item img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

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

.final-lp6-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-lp6 10s ease-in-out infinite;
}

@keyframes cta-glow-lp6 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10%, 10%);
    }
}

.final-lp6-cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-lp6-cta-container h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.final-lp6-cta-container p {
    font-size: 1.2rem;
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.7;
}

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

.cta-lp6-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-lp6-button-primary:hover {
    color: #E65100 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.cta-lp6-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-lp6-button-secondary:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
}

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

/* ========================================
   10. LEGAL FOOTER LP6
   ======================================== */
.legal-lp6-footer {
    background: #D84315;
    padding: 35px 20px;
    text-align: center;
}

.legal-lp6-links {
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.legal-lp6-links a:hover {
    opacity: 0.8;
}

.legal-lp6-separator {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 5px;
}

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

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

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

.sticky-lp6-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-lp6-nav.scrolled .sticky-lp6-logo img {
    height: 35px !important;
    background: white !important;
    padding: 5px 10px !important;
    border-radius: 0 !important;
}

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

.sticky-lp6-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-lp6-nav.scrolled .sticky-lp6-menu a {
    color: #0B1933 !important;
}

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

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

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

/* ========================================
   12. REQUEST WIDGET
   ======================================== */
.hrtime-request-widget {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0 auto;
}

.hrt-widget-header {
    position: relative;
    text-align: center;
    padding-bottom: 20px;
}

.hrt-image-placeholder {
    width: 100%;
    height: 220px;
    background: #f0f4f8;
    overflow: hidden;
    position: relative;
}

.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;
    position: relative;
    z-index: 2;
}

.hrt-widget-title-row h2 {
    background: #ffffff;
    color: #0B1933;
    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;
    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);
}

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

.hrt-step-item {
    display: flex;
    align-items: stretch;
    background: #F5F9FC;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid transparent;
}

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

.hrt-step-number {
    background: #0B1933;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    margin-right: -10px;
    z-index: 1;
}

.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%);
}

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

.hrt-step-content {
    flex: 1;
    padding: 15px 15px 15px 25px;
    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;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* ========================================
   RESPONSIVE DESIGN LP6
   ======================================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .hero-lp6-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-lp6-text h1 {
        font-size: 2.2rem;
    }

    .hero-lp6-badges {
        justify-content: center;
    }

    .hero-lp6-image {
        order: -1;
    }

    .hero-lp6-image>img {
        max-width: 500px;
        margin: 0 auto;
    }

    .modules-lp6-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-lp6-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-lp6-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .esignatur-lp6-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile (768px) - HERO FIXES FROM LP4 */
@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden !important;
    }

    .hero-lp6-header {
        padding-top: 130px !important;
        padding-bottom: 60px;
        min-height: auto;
        overflow-x: hidden !important;
    }

    .hero-lp6-container {
        grid-template-columns: 1fr !important;
        overflow: hidden !important;
        padding: 0 15px !important;
    }

    .hero-lp6-text {
        text-align: center;
        padding: 0 10px;
    }

    .hero-lp6-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-lp6-lead {
        font-size: 0.95rem !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
    }

    .hero-lp6-description {
        font-size: 0.9rem !important;
        word-wrap: break-word !important;
    }

    .hero-lp6-badges {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .badge-lp6 {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
    }

    .hero-lp6-cta-button {
        width: 100% !important;
        text-align: center !important;
        padding: 15px 30px !important;
        font-size: 1rem !important;
    }

    .hero-lp6-image {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hero-lp6-image>img {
        max-width: 100% !important;
        width: 100% !important;
    }

    .logo-lp6-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-lp6-item {
        width: 110px !important;
        height: 55px !important;
        padding: 10px 12px !important;
    }

    .logo-lp6-item img {
        max-height: 38px !important;
    }

    .logo-lp6-track {
        gap: 20px !important;
    }

    /* REST OF 768PX - OTHER SECTIONS */
    .modules-lp6-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .module-lp6-card {
        padding: 30px 20px;
    }

    .section-lp6-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-lp6-grid {
        grid-template-columns: 1fr;
    }

    .calculator-lp6-box {
        padding: 30px 20px;
    }

    .package-lp6-switcher {
        flex-direction: column;
    }

    .package-lp6-btn {
        max-width: 100%;
    }

    .result-lp6-box .price-lp6-result {
        font-size: 2.5rem;
    }

    .cta-lp6-buttons {
        flex-direction: column;
    }

    .final-lp6-cta-container h2 {
        font-size: 2rem;
    }

    .video-lp6-section-white {
        padding: 60px 20px 40px;
    }

    .esignatur-lp6-section {
        padding: 60px 20px;
    }

    .video-lp6-header-white h2,
    .esignatur-lp6-header h2 {
        font-size: 1.8rem;
    }

    .video-monitor-lp6 {
        max-width: 100%;
        padding: 0 15px;
    }

    .video-overlay-top-lp6 {
        height: 40px;
    }

    .video-overlay-bottom-lp6 {
        height: 35px;
    }

    .esignatur-lp6-feature {
        padding: 20px;
    }

    .esignatur-lp6-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Sticky Nav Mobile LP6 */
    .sticky-lp6-nav {
        padding: 10px 0 !important;
    }

    .sticky-lp6-container {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 10px 15px !important;
    }

    .sticky-lp6-logo img {
        height: 32px !important;
        padding: 4px 8px !important;
    }

    .sticky-lp6-nav.scrolled .sticky-lp6-logo img {
        height: 28px !important;
    }

    .sticky-lp6-menu {
        width: 100% !important;
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .sticky-lp6-menu a {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }
}


/* Small Mobile (480px) - HERO FIXES FROM LP4 */
@media (max-width: 480px) {
    .hero-lp6-header {
        padding-top: 120px !important;
    }

    .hero-lp6-container {
        padding: 0 10px !important;
    }

    .hero-lp6-text h1 {
        font-size: 1.3rem !important;
    }

    .hero-lp6-lead {
        font-size: 0.85rem !important;
    }

    .badge-lp6 {
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
    }

    .logo-lp6-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-lp6-item {
        width: 95px !important;
        height: 48px !important;
        padding: 8px 10px !important;
    }

    .logo-lp6-item img {
        max-height: 32px !important;
    }

    .logo-lp6-track {
        gap: 15px !important;
    }

    /* REST OF 480PX - OTHER SECTIONS */
    .module-lp6-icon {
        width: 65px;
        height: 65px;
    }

    .module-lp6-icon i {
        font-size: 1.6rem;
    }

    .section-lp6-header h2 {
        font-size: 1.5rem;
    }

    .final-lp6-cta-container h2 {
        font-size: 1.6rem;
    }

    .cta-lp6-button-primary,
    .cta-lp6-button-secondary {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .video-lp6-header-white h2,
    .esignatur-lp6-header h2 {
        font-size: 1.5rem;
    }

    .video-monitor-lp6 {
        padding: 0 10px;
    }

    .video-overlay-top-lp6 {
        height: 30px;
    }

    .video-overlay-bottom-lp6 {
        height: 25px;
    }

    .esignatur-lp6-feature {
        flex-direction: column;
        text-align: center;
    }

    .esignatur-lp6-feature-icon {
        margin: 0 auto;
    }

    .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;
    }
}
