
        /* Global Styles */
        :root {
            --primary-color: #8A47EB;
            --secondary-color: #7453EC;
            --tertiary-color: #9A84EB;
            --light-color: #E3DCFB;
            --text-color: #1d1d1f;
            --light-text: #86868b;
            --background: #ffffff;
            --light-background: #f5f5f7;
            --border-color: #d2d2d7;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        body {
            background-color: var(--background);
            color: var(--text-color);
            line-height: 1.47059;
            font-weight: 400;
            letter-spacing: -0.022em;
        }


        /* Reset und Basis-Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        body {
            color: #1d1d1f;
            background-color: #ffffff;
            line-height: 1.5;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Variablen für Farbpalette */
        :root {
            --primary: #8A47EB;
            --secondary: #7453EC;
            --accent: #9A84EB;
            --light: #E3DCFB;
            --dark-text: #1d1d1f;
            --light-text: #f5f5f7;
            --dark-bg: #000000;
            --dark-card: #1d1d1f;
        }

        /* Header Styles */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: saturate(180%) blur(20px);
            z-index: 1000;
            padding: 0 22px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .nav-logo {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark-text);
            font-size: 14px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-top: 48px;
            position: relative;
            overflow: hidden;
            background-color: white;
        }

        .hero-content {
            text-align: center;
            color: var(--dark-text);
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .hero-title-3 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 8px;
            box-shadow: 0 8px 20px rgba(138, 71, 235, 0.2);
        }

        .hero-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        .hero-blob {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0.7;
            z-index: 1;
        }

        /* Features Section */
        .features {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 60px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            padding: 40px;
            text-align: center;
            border-radius: 20px;
            background-color: white;
            transition: all 0.3s ease;
            border: 1px solid #e6e6e6;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(138, 71, 235, 0.1);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .feature-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .feature-description {
            font-size: 16px;
            color: #515154;
        }

        /* Product Display Section */
        .product-display {
            padding: 100px 0;
            background-color: #fbfbfd;
            text-align: center;
        }

        .product-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .product-title {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .product-subtitle {
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 40px;
            color: #6e6e73;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .product-image {
            max-width: 100%;
            height: auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            transition: transform 0.5s ease;
            margin-top: 30px;
        }

        .product-image:hover {
            transform: scale(1.02);
        }

        /* Call to Action Section */
        .cta-section {
            padding: 100px 20px;
            background-color: #f5f5f7;
            color: var(--dark-text);
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 20px;
            margin-bottom: 40px;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(138, 71, 235, 0.2);
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        /* Parallax und Scroll Effekte */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .parallax-content {
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Dark Mode Section */
        .dark-mode-section {
            background-color: var(--dark-bg);
            color: #86868b;
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .dark-mode-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .dark-mode-card {
            background-color: var(--dark-card);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.5s ease;
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
            transform-style: preserve-3d;
        }

        .dark-mode-card:hover {
            transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 30px 50px rgba(138, 71, 235, 0.3);
        }

        .dark-mode-title {
            color: var(--primary);
            font-size: 30px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .dark-mode-description {
            color: #a1a1a6;
            margin-bottom: 30px;
        }

        .dark-mode-button {
            background-color: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .dark-mode-button:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            padding: 60px 20px;
            background-color: #f5f5f7;
        }

        .footer-content_seo {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 12px;
            font-weight: 600;
            color: #6e6e73;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .footer-link {
            display: block;
            text-decoration: none;
            color: #424245;
            font-size: 14px;
            margin-bottom: 10px;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #d2d2d7;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 10px;
            color: #6e6e73;
        }



        
        footer {
            padding: 40px 0;
            text-align: center;
            color: var(--text-light);
            font-size: 14px;
            background-color: #f5f5f7;
        }
        
        footer a {
            color: var(--primary);
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--secondary);
        }
        
        footer a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: var(--secondary);
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
        }
        
        footer a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }        

        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }

            .hero-subtitle {
                font-size: 20px;
            }

            .section-title, .product-title, .cta-title {
                font-size: 32px;
            }

            .nav-links {
                display: none;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-content {
            animation: fadeIn 1s ease-out;
        }

        .feature-card {
            animation: fadeIn 0.8s ease-out;
            animation-fill-mode: both;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.3s; }
        .feature-card:nth-child(3) { animation-delay: 0.5s; }



        /* Header Styles */
        header {
            text-align: center;
            padding: 120px 0 48px;
            background-color: #ffffff
        }
        
        header h1 {
            font-size: 56px;
            font-weight: 600;
            letter-spacing: -0.005em;
            color: #8A47EB;
            margin-bottom: 20px;
            line-height: 1.07143;
        }
         

        header p {
            font-size: 24px;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
            color: #86868b;
            letter-spacing: 0.009em;
        }        
        
        /* FAQ Container */
        .faq-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 20px 100px;
        }
        
        .faq-intro {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .faq-intro h2 {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-color);
            letter-spacing: -0.003em;
        }
        
        .faq-intro p {
            font-size: 19px;
            color: #86868b;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.42857;
        }
        
        /* FAQ Items */
        .faq-list {
            border-top: 1px solid  #d2d2d7;
        }
        
        .faq-item {
            border-bottom: 1px solid  #d2d2d7;
        }
        
        .faq-question {
            padding: 24px 0;
            font-size: 20px;
            font-weight: 500;
            color:  #1d1d1f;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--primary-color);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #86868b;
            font-size: 17px;
            line-height: 1.52947;
            padding-right: 24px;
        }
        
        .faq-answer p {
            padding-bottom: 18px;
            color: #1d1d1f;
        }
        
        .faq-answer ul {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 18px;
            color: #1d1d1f;            
        }
        
        .faq-answer li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            color: #1d1d1f;            
        }
        
        .faq-answer li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #8A47EB;

        }
        
        .faq-item.active .faq-question {
            color: #8A47EB;
        }
        
        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding-bottom: 24px;
        }
        
        .chevron {
            width: 14px;
            height: 14px;
            position: relative;
        }
        
        .chevron:before, .chevron:after {
            content: '';
            position: absolute;
            background-color: #8A47EB;
            width: 9px;
            height: 2px;
            border-radius: 1px;
            top: 6px;
            transition: transform 0.3s ease;
        }
        
        .chevron:before {
            left: 0;
            transform: rotate(45deg);
        }
        
        .chevron:after {
            right: 0;
            transform: rotate(-45deg);
        }
        
        .faq-item.active .chevron:before {
            transform: rotate(-45deg);
        }
        
        .faq-item.active .chevron:after {
            transform: rotate(45deg);
        }
        
        /* Contact Section */
        .contact-section {
            background-color: #f5f5f7;
            border-radius: 18px;
            padding: 60px 40px;
            margin: 80px 0 0;
            text-align: center;
        }
        
        .contact-section h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #1d1d1f;
        }
        
        .contact-section p {
            font-size: 17px;
            color: #86868b;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .button {
            display: inline-block;
            background-color: #8A47EB;
            color: white;
            font-size: 17px;
            font-weight: 500;
            padding: 12px 24px;
            border-radius: 980px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .button:hover {
            background-color:  #7453EC;
            transform: scale(1.02);
        }
        
  
        /* Responsive Design */
        @media (max-width: 734px) {
            header {
                padding: 80px 0 40px;
            }
            
            header h1 {
                font-size: 40px;
            }
            
            header p {
                font-size: 19px;
            }
            
            .faq-intro h2 {
                font-size: 32px;
            }
            
            .faq-intro p {
                font-size: 17px;
            }
            
            .faq-question {
                font-size: 17px;
                padding: 20px 0;
            }
            
            .faq-answer {
                font-size: 15px;
            }
            
            .contact-section {
                padding: 40px 24px;
            }
            
            .contact-section h3 {
                font-size: 24px;
            }
        }






        /* Container Styles */
        .price_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .price_header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .price_header h1 {
            font-size: 32px;
            font-weight: 700;
            color: #1d1d1f;
        }

        /* Pricing Table Grid */
        .price_pricing-table {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }
        
        /* Card Styles */
        .price_pricing-card {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e1e1e1;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .price_pricing-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* Featured Card */
        .price_pricing-card.featured {
            position: relative;
            border: 2px solid #7453EC;
            transform: scale(1.05);
            z-index: 1;
            box-shadow: 0 8px 24px rgba(138, 71, 235, 0.15);
        }
        
        .price_pricing-card.featured:hover {
            transform: translateY(-5px) scale(1.07);
        }
        
        .price_pricing-card.featured .price_card-header,
        .price_pricing-card.featured .price_card-body,
        .price_pricing-card.featured .price_card-footer {
            background-color: #E3DCFB;
        }
        
        /* Card Sections */
        .price_card-header {
            padding: 24px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .price_card-body {
            padding: 24px;
            flex-grow: 1;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .price_card-footer {
            padding: 24px;
        }
        
        /* Card Content Styles */
        .price_plan-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price_tag {
            background-color: #9A84EB;
            color: white;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 100px;
        }
        
        .price_price {
            margin: 16px 0;
            display: flex;
            align-items: baseline;
        }
        
        .price_amount {
            font-size: 36px;
            font-weight: 700;
            color: #8A47EB;
        }
        
        .price_featured .amount {
            color: #7453EC;
        }
        
        .price_period {
            margin-left: 4px;
            font-size: 14px;
            color: #6e6e73;
        }
        
        .price_description {
            font-size: 14px;
            color: #6e6e73;
            margin-bottom: 16px;
        }
        
        /* Features List */
        .price_features {
            list-style: none;
        }
        
        .price_feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        
        .price_feature:last-child {
            margin-bottom: 0;
        }
        
        .price_feature-icon {
            margin-right: 8px;
            color: #8A47EB;
            flex-shrink: 0;
        }
        
        .price_featured .feature-icon {
            color: #7453EC;
        }
        
        .price_feature-text {
            font-size: 14px;
            color: #1d1d1f;
        }
        
        /* Button Styles */
        .price_btn {
            display: block;
            width: 100%;
            font-size: 16px;
            font-weight: 500;
            padding: 14px 20px;
            text-align: center;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        
        .price_btn-primary {
            background-color: #8A47EB;
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(138, 71, 235, 0.2);
        }
        
        .price_btn-primary:hover {
            background-color: #7842d9;
            box-shadow: 0 6px 16px rgba(138, 71, 235, 0.3);
        }
        
        .price_btn-secondary {
            background-color: transparent;
            color: #1d1d1f;
            border: 1px solid #d2d2d7;
        }
        
        .price_btn-secondary:hover {
            background-color: #f5f5f7;
        }
        
        /* Footer Text */
        .price_footer-text {
            text-align: center;
            font-size: 13px;
            color: #86868b;
            margin-top: 32px;
        }
        
        /* Responsive Styles */
        @media (max-width: 900px) {
            .price_pricing-table {
                flex-direction: column;
                align-items: center;
            }
            
            .price_pricing-card {
                width: 100%;
                max-width: 450px;
            }
            
            .price_pricing-card.featured {
                order: -1;
                margin-bottom: 16px;
            }
        }




        /* Call to Action Section */
        .cta-section_primary {
            padding: 100px 20px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white;
            text-align: center;
        }

        .cta-content_primary {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title_primary {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .cta-description_primary {
            font-size: 20px;
            margin-bottom: 40px;
        }

        .cta-button_primary {
            display: inline-block;
            background-color: white;
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .cta-button_primary:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }










        .popup-header-wrapper {
            width: 100%;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .popup-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .popup-logo {
            height: 40px;
            display: flex;
            align-items: center;
        }
        
        .popup-logo svg {
            fill: var(--primary-color);
            transition: fill 0.3s ease;
        }
        
        .popup-logo:hover svg {
            fill: var(--accent-color-1);
        }
        
        .popup-close-button {
            width: 24px;
            height: 24px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .popup-close-button:hover {
            transform: rotate(90deg);
        }
        
        .popup-close-button svg {
            stroke: var(--dark-gray);
            stroke-width: 2;
            transition: stroke 0.3s ease;
        }
        
        .popup-close-button:hover svg {
            stroke: var(--primary-color);
        }
        
        .popup-content {
            padding: 40px 0;
        }
        
        h1 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }
        
        .popup-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 500;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .popup-button:hover {
            background-color: var(--accent-color-1);
            transform: translateY(-3px);
        }
        
        .popup-gradient-section {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color-2));
            border-radius: 16px;
            padding: 40px;
            color: white;
            margin: 40px 0;
        }
        
        .popup-card {
            background-color: white;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--accent-color-3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .popup-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(138, 71, 235, 0.1);
        }


        /* LegalGuard Base Styles */
        .legal-guard-container {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            color: #333;
            background-color: #fff;
        }

        /* LegalGuard Typography */
        .legal-guard-heading {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            background: linear-gradient(90deg, #8A47EB, #7453EC);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        /* LegalGuard Sections */
        .legal-guard-section-title {
            font-size: 18px;
            font-weight: 600;
            margin: 10px 0;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* LegalGuard Table Styles */
        .legal-guard-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(138, 71, 235, 0.1);
            margin-bottom: 30px;
        }

        .legal-guard-table-header {
            background-color: #8A47EB;
            border-bottom: 1px solid #E3DCFB;
        }

        .legal-guard-table th {
            padding: 16px;
            text-align: left;
            font-size: 14px;
            font-weight: 600;
            color: #FFFFFF;
        }

        .legal-guard-table td {
            padding: 16px;
            border-bottom: 1px solid #E3DCFB;
            font-size: 14px;
            line-height: 1.4;
            vertical-align: middle;
        }

        .legal-guard-table tbody tr:last-child td {
            border-bottom: none;
        }

        .legal-guard-table tr:nth-child(even) {
            background-color: #FAFAFA;
        }

        .legal-guard-table tr:hover {
            background-color: #F6F2FF;
            transition: background-color 0.2s ease;
        }

        /* LegalGuard Feature Cell */
        .legal-guard-feature-cell {
            width: 60%;
            font-weight: 400;
        }

        /* LegalGuard Plan Cells */
        .legal-guard-plan-cell {
            text-align: center;
            width: 13.33%;
        }

        /* LegalGuard Checkmark */
        .legal-guard-checkmark {
            display: inline-block;
            position: relative;
            color: #7453EC;
            font-size: 18px;
        }
        
        .legal-guard-checkmark::before {
            content: '✓';
            font-weight: bold;
        }

        /* LegalGuard Section Background */
        .legal-guard-section-background {
            background-color: #8A47EB;
            border-radius: 8px;
            padding: 2px 12px;
            margin-bottom: 10px;
        }     



    

    /* Container */
    .lgprod-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    /* Produkt-Sektion */
    .lgprod-product-section {
        display: flex;
        align-items: center;
        padding: 80px 0;
        gap: 80px;
    }

    .lgprod-product-section:nth-child(odd) {
        flex-direction: row-reverse;
    }

    /* Inhalt-Box */
    .lgprod-content-box {
        flex: 1;
    }

    .lgprod-image-box {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Überschriften */
    .lgprod-heading {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #8A47EB;
        letter-spacing: -0.5px;
    }

    /* Text */
    .lgprod-paragraph {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 24px;
        color: #333;
        max-width: 90%;
    }

    /* Button */
    .lgprod-button {
        display: inline-block;
        background-color: #8A47EB;
        color: white;
        padding: 12px 24px;
        border-radius: 20px;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        margin-top: 10px;
    }

    .lgprod-button:hover {
        background-color: #7453EC;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(122, 83, 236, 0.3);
    }

    /* Placeholder für Bilder */
    .lgprod-image-placeholder {
        width: 400px;
        height: 320px;
        background-color: #E3DCFB;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(138, 71, 235, 0.1);
        transition: all 0.3s ease;
    }

    .lgprod-image-placeholder:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 25px 50px rgba(138, 71, 235, 0.2);
    }

    .lgprod-image-placeholder::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, #9A84EB, transparent);
        transform: rotate(45deg);
        animation: lgprod-shine 6s infinite;
    }

    @keyframes lgprod-shine {
        0% {
            top: -50%;
            left: -50%;
        }
        20% {
            top: 100%;
            left: 100%;
        }
        100% {
            top: 100%;
            left: 100%;
        }
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .lgprod-product-section {
            flex-direction: column;
            padding: 60px 0;
            gap: 50px;
        }
        
        .lgprod-product-section:nth-child(odd) {
            flex-direction: column;
        }
        
        .lgprod-heading {
            font-size: 32px;
        }
        
        .lgprod-paragraph {
            max-width: 100%;
        }
        
        .lgprod-image-placeholder {
            width: 100%;
            max-width: 400px;
        }
    }        
    

        /* Hauptcontainer */
        .lgjourney-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Produktreise-Komponente */
        .lgjourney-journey {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .lgjourney-journey-header {
            text-align: left;
            margin-bottom: 60px;
        }

        .lgjourney-journey-title {
            font-size: 48px;
            font-weight: 600;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #8A47EB 0%, #7453EC 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .lgjourney-journey-subtitle {
            font-size: 24px;
            font-weight: 400;
            color: #86868b;
            max-width: 600px;
            line-height: 1.4;
        }

        /* Carousel-Navigation */
        .lgjourney-carousel-nav {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
        }

        .lgjourney-nav-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #E3DCFB;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lgjourney-nav-dot.lgjourney-active {
            width: 24px;
            border-radius: 12px;
            background-color: #8A47EB;
        }

        /* Features-Container */
        .lgjourney-features-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 500px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(138, 71, 235, 0.1);
        }

        .lgjourney-feature {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 40px;
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.5s ease;
            background: linear-gradient(135deg, #fff 0%, #F5F5F7 100%);
        }

        .lgjourney-feature.lgjourney-active {
            opacity: 1;
            transform: translateX(0);
        }

        .lgjourney-feature-content {
            width: 50%;
            padding-right: 40px;
        }

        .lgjourney-feature-number {
            font-size: 14px;
            font-weight: 600;
            color: #9A84EB;
            margin-bottom: 12px;
        }

        .lgjourney-feature-title {
            font-size: 24px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 16px;
        }

        .lgjourney-feature-description {
            font-size: 16px;
            line-height: 1.4;
            color: #86868b;
            margin-bottom: 24px;
        }

        .lgjourney-feature-visual {
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lgjourney-feature-icon {
            width: 240px;
            height: 240px;
            background: linear-gradient(135deg, #8A47EB 0%, #7453EC 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(138, 71, 235, 0.2);
        }

        .lgjourney-feature-icon i {
            font-size: 4rem;
            color: #fff;
        }

        /* CTA Button */
        .lgjourney-cta-button {
            background: linear-gradient(135deg, #8A47EB 0%, #7453EC 100%);
            color: white;
            border: none;
            padding: 16px 36px;
            font-size: 18px;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(138, 71, 235, 0.2);
        }

        .lgjourney-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(138, 71, 235, 0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .lgjourney-feature {
                flex-direction: column-reverse;
                padding: 30px;
            }

            .lgjourney-feature-content, 
            .lgjourney-feature-visual {
                width: 100%;
            }

            .lgjourney-feature-content {
                padding-right: 0;
                padding-top: 30px;
            }

            .lgjourney-feature-icon {
                width: 180px;
                height: 180px;
            }

            .lgjourney-feature-icon i {
                font-size: 3rem;
            }

            .lgjourney-journey-title {
                font-size: 36px;
            }

            .lgjourney-journey-subtitle {
                font-size: 20px;
            }

            .lgjourney-feature-title {
                font-size: 24px;
            }

            .lgjourney-features-container {
                height: 600px;
            }
        }



        /* Button-Container */
        .buttonrow-container {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
            width: 100%;
        }

        /* Button-Stile */
        .buttonrow-button {
            background: white;
            color: #8A47EB;
            border: 2px solid #E3DCFB;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(138, 71, 235, 0.05);
            flex: 1;
            white-space: nowrap;
        }

        .buttonrow-button:hover {
            background: linear-gradient(135deg, #8A47EB 0%, #7453EC 100%);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(138, 71, 235, 0.15);
        }

        .buttonrow-button.buttonrow-active {
            background: linear-gradient(135deg, #8A47EB 0%, #7453EC 100%);
            color: white;
            border-color: transparent;
            box-shadow: 0 10px 20px rgba(138, 71, 235, 0.15);
        }

        .buttonrow-button i {
            margin-right: 8px;
        }

        /* Responsive Anpassungen */
        @media (max-width: 768px) {
            .buttonrow-container {
                overflow-x: auto;
                padding-bottom: 10px; /* Für Scrollbar-Platz */
            }
            
            .buttonrow-button {
                flex: 0 0 auto;
            }
        }



        .form-title {
            color: #7A3EE0;
            font-size: 24px;
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .d-flex {
            display: flex;
            flex-direction: row;
        }

        .d-none {
            display: none !important;
        }

        .form-group.full-width {
            grid-column: 1 / 3;
        }

        .form-label {
            font-size: 12px;
            margin-bottom: 6px;
        }

        .form-input {
            padding: 12px;
            border-radius: 6px;
            border: none;
            background: #eee;
            font-size: 14px;
        }

        .button-wrapper {
            grid-column: 2;
            display: flex;
            justify-content: flex-end;
            margin-top: 20px;
        }

        .submit-button {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(90deg, #7A3EE0, #A66EFF);
            color: #fff;
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0px 4px 10px rgba(122, 62, 224, 0.4);
            transition: background 0.3s;
        }

        .submit-button:hover {
            opacity: 0.9;
        }

        .submit-icon {
            width: 16px;
            height: 16px;
            fill: #fff;
        }

        checkbox-group {
            display: flex;
            align-items: center;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
            gap: 10px;
            user-select: none;
        }

        .custom-checkbox {
            appearance: none;
            width: 24px;
            height: 24px;
            border: 2px solid #ccc;
            border-radius: 3px;
            background: #eee;
            position: relative;
            transition: all 0.3s;
        }

        .custom-checkbox:checked {
            background: linear-gradient(90deg, #7A3EE0, #A66EFF);
            border: 2px solid transparent;
        }


        .custom-checkbox:checked::after {
            content: '';
            position: absolute;
            top: 1px;
            left: 7px;
            width: 6px;
            height: 12px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group.full-width {
                grid-column: 1;
            }
            .button-wrapper {
                grid-column: 1;
                justify-content: center;
            }
        }

        .loader {
            border: 4px solid rgba(122, 62, 224, 0.4);
            border-left-color: transparent;
            border-radius: 50%;
        }

        .loader {
            border: 4px solid rgba(122, 62, 224, 0.4);
            border-left-color: transparent;
            width: 36px;
            height: 36px;
        }

        .loader {
            border: 4px solid rgba(122, 62, 224, 0.4);
            border-left-color: transparent;
            width: 36px;
            height: 36px;
            animation: spin89345 1s linear infinite;
        }

        @keyframes spin89345 {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .loader-small {
            border: 4px solid rgba(122, 62, 224, 0.4);
            border-left-color: transparent;
            border-radius: 50%;
        }

        .loader-small {
            border: 4px solid rgba(122, 62, 224, 0.4);
            border-left-color: transparent;
            width: 18px;
            height: 18px;
        }

        .loader-small {
            border: 4px solid rgba(122, 62, 224, 0.4);
            border-left-color: transparent;
            width: 18px;
            height: 18px;
            animation: spin89345 1s linear infinite;
        }

        @keyframes spin89345 {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .success-message {
            padding: 30px;
            color: #7A3EE0;
            font-size: 24px;
            text-align: center;
        }

         .active-option {
             @apply bg-purple-100 border-transparent;
         }

        .inactive-option {
            @apply bg-white border-gray-300;
        }

        .active-radio {
            @apply bg-purple-600 ring-4 ring-purple-300 border-purple-600;
        }

        .inactive-radio {
            @apply border-gray-400 bg-white ring-0;
        }