      /* --- Grundeinstellungen --- */
        :root {
            --primary-color: #0f172a;
            --accent-color: #eab308;
            --text-light: #f8fafc;
            --text-dark: #334155;
            --bg-light: #ffffff;
            --bg-off-white: #f1f5f9;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: var(--text-light);
            padding: 4rem 2rem;
            text-align: center;
            min-height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .domain-name {
            font-size: clamp(2rem, 8vw, 5rem);
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .domain-suffix { color: var(--accent-color); }

        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 600px;
            margin-bottom: 2.5rem;
            font-weight: 300;
        }

        .cta-button {
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            border-radius: 50px;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
            text-decoration: none;
        }

        .cta-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234, 179, 8, 0.6); }

        /* --- SEO TEXT Section (NEU eingefügt) --- */
        .seo-content {
            padding: 4rem 2rem 2rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }
        .seo-content h2 { color: var(--primary-color); font-size: 1.8rem; margin-bottom: 1.5rem; }
        .seo-content p { margin-bottom: 1.2rem; font-size: 1.05rem; color: #475569; }
        .seo-content strong { color: var(--primary-color); }

        /* --- Features & Content (Die 3 Kästen) --- */
        .features { padding: 4rem 2rem; background-color: var(--bg-off-white); text-align: center; }
        .features h2 { margin-bottom: 3rem; color: var(--primary-color); font-size: 2rem; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
        .card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); text-align: left; border-top: 4px solid var(--accent-color); }
        .card h3 { margin-bottom: 1rem; color: var(--primary-color); }

        /* --- Kontakt Bereich --- */
        .contact { padding: 4rem 2rem; text-align: center; max-width: 800px; margin: 0 auto; }
        .contact-box { background-color: white; border: 1px solid #e2e8f0; padding: 2rem; border-radius: 12px; margin-top: 2rem; }
        .price-tag { font-size: 1.5rem; font-weight: bold; color: var(--primary-color); margin-bottom: 1rem; display: block; }
        
		/* --- USE CASES (SEO TEXTE) --- */
        .use-cases {
            padding: 4rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            border-top: 1px solid #e2e8f0;
        }
        
        .use-cases h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            font-size: 1.8rem;
        }

        .use-case-item {
            margin-bottom: 2.5rem;
            scroll-margin-top: 100px; /* Damit der Text nicht unter dem Browser-Rand klebt beim Springen */
        }

        .use-case-item h3 {
            color: var(--accent-color); /* Goldener Akzent für die Keywords */
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            border-left: 4px solid var(--primary-color);
            padding-left: 10px;
        }

        .use-case-item p {
            color: #475569;
            font-size: 1rem;
        }

        /* Footer Link Styles Update */
        footer ul {
            list-style: none;
            padding: 0;
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        footer ul li a {
            color: #94a3b8;
            text-decoration: none;
            border-bottom: 1px dotted #94a3b8;
            font-size: 0.85rem;
            transition: color 0.2s, border-color 0.2s;
        }

        footer ul li a:hover {
            color: var(--accent-color);
            border-color: var(--accent-color);
        }		
		
        footer { background-color: var(--primary-color); color: #64748b; text-align: center; padding: 2rem; font-size: 0.9rem; margin-top: 4rem; }
        footer a { color: #94a3b8; text-decoration: none; }
		
/* --- PREMIUM OFFER SECTION --- */
        .premium-offer-box {
            background: white;
            border-radius: 16px; /* Etwas runder */
            box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Tieferer Schatten */
            max-width: 900px;
            margin: 2rem auto 0 auto;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap; /* Damit es auf Handy umbricht */
        }

        .offer-left {
            flex: 1 1 400px; /* Nimmt mind. 400px Platz oder die Hälfte */
            padding: 2.5rem;
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border-right: 1px solid #e2e8f0;
            text-align: left;
        }

        .offer-right {
            flex: 1 1 300px;
            padding: 2.5rem;
            background-color: var(--primary-color); /* Dunkler Hintergrund rechts */
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }
        
        /* Goldener Akzent-Strich oben über der ganzen Box */
        .premium-offer-box::before {
            content: '';
            display: block;
            width: 100%;
            height: 5px;
            background: var(--accent-color);
            position: absolute;
            top: 0; left: 0;
        }
        /* Fix für relative Positionierung wegen dem Strich */
        .premium-offer-box { position: relative; }

        .offer-left h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .trust-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .trust-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
            color: #475569;
        }

        .trust-list li::before {
            content: '✔';
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 24px;
            height: 24px;
            background-color: #dcfce7; /* Helles Grün */
            color: #16a34a; /* Dunkles Grün */
            border-radius: 50%;
            margin-right: 12px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Rechte Seite Styles */
        .price-label {
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .price-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .offer-btn {
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 1rem 2rem;
            font-weight: bold;
            font-size: 1.1rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            width: 100%;
            max-width: 280px;
        }

        .offer-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(234, 179, 8, 0.4);
            background-color: #facc15;
        }
        
        /* Damit H3 im Summary (falls du das änderst) gut aussieht */
        summary h3 { display: inline; font-size: inherit; font-weight: inherit; margin: 0; }
        
        /* Mobile Anpassung */
        @media (max-width: 768px) {
            .offer-left { border-right: none; border-bottom: 1px solid #e2e8f0; }
            .premium-offer-box { margin-top: 1rem; }
        }		

        /* --- MODAL (POPUP) STYLES - KOMPAKT & VERBESSERT --- */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 1000; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            /* Dunkler Hintergrund, leicht transparent */
            background-color: rgba(15, 23, 42, 0.85); 
            backdrop-filter: blur(4px);
        }

        .modal-content {
            background-color: white;
            margin: 8vh auto; /* Zentrierter */
            padding: 1.5rem;   /* Kompakter Innenabstand */
            border-radius: 12px;
            width: 90%; 
            max-width: 400px;  /* Maximale Breite reduziert */
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .close {
            color: #aaa;
            position: absolute;
            right: 15px;
            top: 10px;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s;
        }
        .close:hover { color: var(--primary-color); }

        /* --- Form Styles (Kompakter) --- */
        .form-group { margin-bottom: 0.8rem; text-align: left; }
        
        .form-group label { 
            display: block; 
            font-weight: 600; 
            font-size: 0.85rem; 
            margin-bottom: 0.2rem; 
            color: var(--primary-color); 
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 8px; /* Weniger Padding */
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: border-color 0.2s;
        }
        
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
        }
        
        .submit-btn {
            width: 100%;
            background-color: var(--primary-color);
            color: white;
            padding: 10px;
            font-size: 1rem;
            font-weight: bold;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.5rem;
        }
        .submit-btn:hover { background-color: #334155; }

        .honey-pot { display: none; }
        .msg-success { color: green; font-weight: bold; text-align: center; margin-top: 10px; font-size: 0.85rem; display:none; }
        .msg-error { color: red; font-weight: bold; text-align: center; margin-top: 10px; font-size: 0.85rem; display:none; }
        .hp-check { display:none; }
		.link {color:#eee;text-decoration:none;}
		
/* --- ACCORDION CARDS (SEO TEXTE) --- */
        /* Wir nutzen die .card Optik für das details Element */
        .card-details {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-align: left;
            border-top: 4px solid var(--accent-color);
            overflow: hidden; /* Damit Ecken abgerundet bleiben */
            transition: transform 0.2s, box-shadow 0.2s;
            height: fit-content; /* Wichtig für Grid */
        }

/* --- LIST LAYOUT FÜR ACCORDION --- */
        .accordion-stack {
            max-width: 800px; /* Optimale Lesebreite, nicht zu breit */
            margin: 0 auto;   /* Zentriert den Stapel */
            display: flex;
            flex-direction: column; /* Untereinander statt nebeneinander */
            gap: 1.2rem;      /* Abstand zwischen den Balken */
        }
        
        /* Optional: Auf dem Handy etwas weniger Abstand */
        @media (max-width: 600px) {
            .accordion-stack {
                gap: 0.8rem;
            }
        }

        .card-details:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        /* Der Klick-Bereich (Titel) */
        .card-details summary {
            padding: 1.5rem 2rem; /* Identisch zum Padding der normalen Cards */
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            color: var(--primary-color);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            outline: none;
        }

        /* Webkit Fix um Standard-Pfeil zu verstecken */
        .card-details summary::-webkit-details-marker { display: none; }

        /* Das Plus/Minus Icon */
        .card-details summary::after {
            content: '+'; 
            font-size: 1.5rem;
            color: var(--accent-color);
            font-weight: 800;
            transition: transform 0.3s ease;
            line-height: 1;
        }

        /* Wenn aufgeklappt: Plus dreht sich zum X */
        .card-details[open] summary::after {
            transform: rotate(45deg);
        }

        /* Der Inhalt Text */
        .card-details-content {
            padding: 0 2rem 2rem 2rem; /* Unten und Seiten Padding */
            color: #475569;
            line-height: 1.6;
            animation: fadeIn 0.4s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Highlight-Effekt beim Sprung vom Footer */
        @keyframes highlight {
            0% { box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.4); transform: scale(1.02); }
            100% { box-shadow: 0 4px 6px rgba(0,0,0,0.05); transform: scale(1); }
        }
        
        .target-highlight {
            animation: highlight 1.5s ease-out;
            border-color: var(--accent-color);
        }