:root {
            --primary: #FFD900; /* Inspiriert von inspo.jpg Gelb */
            --dark: #1A1A1A;
            --light: #FFFFFF;
            --gray-bg: #F8F9FA;
            --text-muted: #666;
            --radius: 16px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            font-family: 'Lexend', sans-serif; 
            background-color: var(--light); 
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- UI Elements --- */
        .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
            border: none;
        }
        .btn-primary { background: var(--primary); color: var(--dark); }
        .btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(255, 217, 0, 0.3); }
        .log-btn {border:1px solid var(--dark);background:transparent;color:var(--primary);padding: 10px 20px;    border-radius: 50px;}
        .badge {
            background: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            margin-bottom: 16px;
            display: inline-block;
            background: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 800;
            margin-bottom: 16px;
            display: inline-block;
        }
        .badge-top {
            background: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            margin-bottom: 16px;
            display: inline-block;
            margin-top: -42px;
            background: var(--primary);
            padding: 4px 12px;
            border-radius: 0 0 20px 20px;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 800;
            margin-bottom: 16px;
            display: inline-block;
        }

        /* --- Navigation --- */
        nav {
            padding: 10px 0;
            background: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo { 
            height: 60px;
            transform: scale(2);
            transform-origin: top left;
            background: #fff;
            width: 60px;
            border-radius: 77px;
         }
        .nav-logo img { 
            position: absolute;
            height: 50px;
            top:5px;left:5px;
         }
         
         .nav-logo img.spin-logo { 
            animation: spin 40s linear infinite;
         }

         /* --- Hero Section --- */
         .hero-social-proof {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
         }
         .stars { color: var(--dark); font-size: 1.2rem; letter-spacing: 2px; }
         .proof-text { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

         @keyframes spin {
             from { transform: rotate(0deg); }
             to { transform: rotate(-360deg); }
         }
         
        .nav-links a { margin-left: 24px; text-decoration: none; color: var(--dark); font-size: 0.9rem; font-weight: 500; }

        /* --- Hero Section --- */
        .hero {
            text-align: center;
            padding: 120px 0;
            background: var(--light);

            background-image: url(../img/visual2.png);
            background-size: cover;
            background-position: right center;
            background-color: rgba(255, 255, 255, 0.8);
            background-blend-mode: lighten;
        }
        .hero b {color:#000;}
        .hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 24px; }
        .hero h1 span { background: var(--primary); padding: 0 10px; border-radius: 8px; }
        .hero-image { max-width: 600px; margin: 40px auto; display: block; }

        /* --- Info Grid (3 Spalten wie in inspo.jpg) --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin: 60px 0;
        }
        .feature-card {
            background: var(--gray-bg);
            padding: 40px;
            border-radius: var(--radius);
            text-align: center;
            border: 2px solid transparent;
            transition: 0.3s;
        }
        .feature-card.highlight { background: var(--primary); }
        .feature-card img { width: 64px; margin-bottom: 20px; }
        .feature-card h3 { margin-bottom: 12px; font-weight: 800; }

        /* --- Process Section (Zahlen-Schritte) --- */
        .process-section { background: var(--primary); padding: 80px 0; text-align: center; }
        .process-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 50px; }
        .steps { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
        .step { flex: 1; min-width: 250px; position: relative; }
        .step-circle {
            width: 60px; height: 60px;
            background: var(--dark);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: 800;
        }

        /* --- Jackpot (Visual Highlight) --- */
        .jackpot-box {
            background: var(--dark);
            color: white;
            border-radius: var(--radius);
            padding: 60px;
            margin: 80px 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .jackpot-amount { font-size: 5rem; color: var(--primary); font-weight: 800; margin: 20px 0; }

        /* --- Testimonials --- */
        .testimonials { padding: 80px 0; background: var(--gray-bg); }
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            margin-bottom: 24px;
            position: relative;
            border-left: 8px solid var(--primary);
        }
        .testimonial-meta { margin-top: 15px; font-weight: 600; font-size: 0.9rem; text-align: right; }

        /* --- Footer --- */
        /* --- Pricing Section --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin: 50px 0;
        }
        .pricing-card {
            background: var(--gray-bg);
            padding: 40px;
            border-radius: var(--radius);
            display: flex;
            flex-direction: column;
            border: 2px solid transparent;
            transition: 0.3s;
        }
        .pricing-card.featured {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.05);
            z-index: 2;
        }
        .pricing-card h3 { font-size: 1.5rem; margin-bottom: 10px; font-weight: 800; }
        .price-box { margin: 20px 0; }
        .price-amount { font-size: 3rem; font-weight: 800; line-height: 1; }
        .price-period { font-size: 1rem; color: var(--text-muted); }
        .price-sub { font-size: 0.85rem; color: var(--text-muted); display: block; margin-top: 4px; }
        .featured .price-period, .featured .price-sub { color: var(--dark); opacity: 0.8; }
        
        .pricing-features {
            list-style: none;
            margin: 20px 0 40px;
            flex-grow: 1;
        }
        .pricing-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        .pricing-features li::before {
            content: "✓";
            font-weight: 800;
        }

        .pricing-notice {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        /* --- FAQ Section --- */
        .faq-item {
            background: var(--gray-bg);
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
            transition: 0.3s;
        }
        .faq-question {
            padding: 24px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            user-select: none;
        }
        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
            font-weight: 400;
            transition: transform 0.3s;
        }
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            padding: 0 32px;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s;
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 24px;
        }
        #faq {
            padding: 80px 0;
        }

        #features {
        margin-top:40px;}

        footer { padding: 60px 0; text-align: center; background: white; border-top: 1px solid #eee; }

        @media (max-width: 768px) {
            .steps { flex-direction: column; }
            .nav-links { display: none; }
            .nav-logo {transform: scale(1.5) translateX(-10px);margin:0 auto;}
             .hero {
                    padding-top: 40px;
                    background-position: bottom -30px center;
                    background-size: contain;
                    background-repeat: no-repeat;
            }
            .jackpot-amount {
                font-size: 4rem;
            }
            h2 {line-height: 3rem;}
            section.container, #faq {
            padding:0 10px;}
        }
        @media (min-width: 1920px) {
            .hero {
                background-size: 1920px;
                background-position: center;
                background-repeat: no-repeat;
            }
        }

        /* --- Checkout Styles --- */
        .checkout-layout {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 40px;
            padding: 60px 0;
            align-items: start;
        }

        .checkout-section {
            background: #fff;
            padding: 32px;
            border-radius: var(--radius);
            margin-bottom: 24px;
            border: 1px solid #eee;
        }

        .checkout-section h2 {
            font-size: 1.25rem;
            margin-bottom: 24px;
            font-weight: 800;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 5px;
        }

        .form-group.full {
            grid-column: span 2;
        }

        label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-muted);
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="password"],
        select {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid #ddd;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(255, 217, 0, 0.1);
        }

        /* --- Order Summary --- */
        .summary-card {
            background: #fff;
            padding: 32px;
            border-radius: var(--radius);
            border: 1px solid #eee;
            position: sticky;
            top: 100px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .summary-title {
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }

        .summary-row.total {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid var(--gray-bg);
            font-weight: 800;
            font-size: 1.2rem;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 12px;
            margin-top: 20px;
        }

        .payment-method {
            border: 1px solid #eee;
            padding: 12px;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: 0.2s;
        }

        .payment-method:hover {
            border-color: var(--primary);
            background: var(--gray-bg);
        }

        .payment-method.active {
            border-color: var(--primary);
            background: rgba(255, 217, 0, 0.05);
        }

        .payment-method img {
            height: 24px;
            display: block;
            margin: 0 auto;
        }

        @media (max-width: 992px) {
            .checkout-layout {
                grid-template-columns: 1fr;
            }
            .summary-card {
                position: static;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group.full {
                grid-column: span 1;
            }
        }
        
        /* --- Dashboard Layout (Top Nav) --- */
        .dash-container {
            display: block;
            min-height: 100vh;
            background: var(--gray-bg);
        }

        .dash-topnav {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 0 40px;
            position: sticky;
            top: 0;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1001;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }

        .dash-nav-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .dash-nav {
            list-style: none;
            display: flex;
            gap: 5px;
        }

        .dash-nav a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            border-radius: 10px;
            transition: 0.2s;
            font-size: 0.9rem;
        }

        .dash-nav a:hover, .dash-nav a.active {
            background: var(--gray-bg);
            color: var(--dark);
            font-weight: 600;
        }

        .dash-nav a.active {
            background: var(--primary);
        }

        .dash-user-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .dash-content {
            padding: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .dash-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 30px;
        }

        .dash-header h1 {
            font-size: 1.75rem;
            font-weight: 800;
        }

        /* --- Dash Stats --- */
        .dash-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .stat-card {
            background: #fff;
            padding: 24px;
            border-radius: var(--radius);
            border: 1px solid #eee;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }

        .stat-card .label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }

        .stat-card .value {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--dark);
        }

        .stat-card .trend {
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 8px;
        }
        .trend.up { color: #00b67a; }
        .trend.down { color: #ff4d4d; }

        /* --- Review List --- */
        .review-section {
            background: #fff;
            border-radius: var(--radius);
            border: 1px solid #eee;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .review-header {
            padding: 24px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .review-header h2 {
            font-size: 1.1rem;
            font-weight: 800;
        }

        .review-table {
            width: 100%;
            border-collapse: collapse;
        }

        .review-table th {
            text-align: left;
            padding: 16px 24px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            background: #fafafa;
            border-bottom: 1px solid #eee;
        }

        .review-table td {
            padding: 20px 24px;
            border-bottom: 1px solid #f0f0f0;
            vertical-align: top;
            font-size: 0.9rem;
        }

        .review-table tr:last-child td {
            border-bottom: none;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
            flex-shrink: 0;
        }

        .status-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
        }
        .status-badge.google { background: #e8f0fe; color: #1967d2; }
        .status-badge.internal { background: #fff4e5; color: #663c00; }

        .star-rating { color: var(--primary); font-size: 0.85rem; }

        @media (max-width: 900px) {
            .dash-topnav { 
                padding: 0 15px; 
                height: 70px; 
                flex-direction: column;
                justify-content: center;
                height: auto;
                padding: 15px;
            }
            .dash-nav-left { flex-direction: column; gap: 15px; width: 100%; }
            .dash-nav { 
                width: 100%; 
                overflow-x: auto; 
                padding-bottom: 5px;
                -webkit-overflow-scrolling: touch;
            }
            .dash-nav a { white-space: nowrap; }
            .dash-user-section { 
                width: 100%; 
                justify-content: space-between; 
                margin-top: 15px; 
                padding-top: 15px; 
                border-top: 1px solid #eee; 
            }
            .dash-content { padding: 20px 15px; }
            
            /* --- Responsive Review Table --- */
            .review-table, .review-table thead, .review-table tbody, .review-table th, .review-table td, .review-table tr { 
                display: block; 
            }
            .review-table thead { display: none; }
            .review-table tr {
                margin-bottom: 15px;
                border: 1px solid #eee;
                border-radius: 12px;
                padding: 15px;
            }
            .review-table td {
                padding: 10px 0;
                border: none;
                width: 100%;
            }
            .review-table td::before {
                content: attr(data-label);
                display: block;
                font-size: 0.7rem;
                font-weight: 700;
                text-transform: uppercase;
                color: var(--text-muted);
                margin-bottom: 4px;
            }
            .review-table td[data-label="Aktion"] {
                border-top: 1px solid #eee;
                margin-top: 10px;
                padding-top: 15px;
            }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .hero { padding: 60px 0; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1rem; }
            
            .features-grid, .pricing-grid { grid-template-columns: 1fr; }
            .pricing-card.featured { transform: scale(1); }
            
            .steps { flex-direction: column; gap: 40px; }
            
            .login-card { padding: 30px 20px; }

            .checkout-layout {
                grid-template-columns: 1fr;
            }
            .summary-card {
                position: static;
            }
        }

        @media (max-width: 480px) {
            .dash-stats { grid-template-columns: 1fr; }
            .btn { width: 100%; text-align: center; }
            .nav-logo { transform: scale(1.2); }
            .jackpot-amount { font-size: 3rem; }
        }

        /* --- Guest Feedback Page --- */
        .guest-body {
            background: var(--gray-bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
        }

        .feedback-card {
            background: #fff;
            width: 100%;
            max-width: 500px;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
        }

        .star-input {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 30px 0;
            cursor: pointer;
        }

        .star-input span {
            font-size: 3rem;
            color: #ddd;
            transition: 0.2s;
        }

        .star-input span.active,
        .star-input span:hover,
        .star-input span:hover ~ span {
            color: var(--primary);
        }

        /* Logic to color previous stars on hover/active */
        .star-input {
            flex-direction: row-reverse;
        }

        .star-input span:hover,
        .star-input span:hover ~ span,
        .star-input span.active,
        .star-input span.active ~ span {
            color: var(--primary);
        }

        .success-view {
            display: none;
        }

        .jackpot-badge-guest {
            background: var(--dark);
            color: var(--primary);
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 800;
            display: inline-block;
            margin-bottom: 30px;
            font-size: 0.9rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }