:root {
    --primary-grad: linear-gradient(135deg, #ff4b2b, #a83279);
    --bg: #ffffff;
    --text: #2d3436;
    --nav-bg: rgba(240, 240, 240, 0.7);
}
@font-face {
    font-family: 'Material Symbols Rounded';
    font-style: normal;
    src: url('fonts/material-symbols-rounded.ttf') format('truetype');
}
.material-symbols-outlined {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
.fade-in {
    animation: fadeInPage 1s ease-in-out;
}
@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.nav-hidden {
    transform: translateY(-100%);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li a {
    text-decoration: none;
    color: var(--text);
    margin-left: 20px;
    font-weight: bold;
}
.logo img {
    width: 150px;
    height: auto;
}
.divider {
    height: 4px;
    width: 100%;
    max-width: 1500px;
    background: var(--primary-grad);
    margin: 20px auto;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle span {
    height: 3px;
    width: 25px;
    background: var(--text);
    margin: 3px 0;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        flex-direction: column;
        padding: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
}
.glass-footer {
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 20px;
    margin-top: 50px;
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.footer-content p {
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 500;
}
.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.footer-links li a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}
.footer-links li a:hover {
    opacity: 0.7;
}
@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
.cookie-overlay {
    position: fixed;
    bottom: 20px;
    left: 10px;
    right: 10px;
    z-index: 2000;
    display: none;
    justify-content: center;
    box-sizing: border-box;
}

.cookie-content {
    background: var(--bg);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    box-sizing: border-box;
    max-width: 500px;
    width: 100%;
}
.cookie-options {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.btn-grad {
    background: var(--primary-grad);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--text);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.contact-card {
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0; 
}
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}
#contact-form input, 
#contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}
#contact-form textarea {
    resize: vertical;
}
.social-channels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.social-link {
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
.social-link:hover {
    transform: translateY(-3px);
}
.whatsapp {
    background-color: #25d366;
    color: white;
}
.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}
.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
    text-align: left;
    font-size: 0.85rem;
}
.privacy-consent input {
    width: auto !important;
    margin-top: 4px;
}
.privacy-consent a {
    color: #a83279;
    text-decoration: underline;
}
#submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #d2691e;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 1500;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
}
.cookie-settings-btn::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 6px;
    height: 6px;
    background: #4b250a;
    border-radius: 50%;
    box-shadow: 15px 5px 0 #4b250a, 8px 18px 0 #4b250a, 22px 15px 0 #4b250a, 5px 28px 0 #4b250a;
}
.cookie-settings-btn::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: var(--bg);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.05);
}
.cookie-settings-btn:hover {
    transform: scale(1.1) rotate(-10deg);
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px 20px;
    background: radial-gradient(circle at 80% 20%, rgba(255, 75, 43, 0.05), transparent),
                radial-gradient(circle at 20% 80%, rgba(168, 50, 121, 0.05), transparent);
    box-sizing: border-box;
}

.hero-section .container {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 1400px;
    width: 100%;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}
.badge {
    background: rgba(168, 50, 121, 0.1);
    color: #a83279;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}
.grad-text {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-group {
    margin-top: 30px;
}
.rating {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #f1c40f;
}
.hero-visual {
    position: relative;
    height: 400px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.benefit-icon {
    font-size: 48px; 
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 15px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text);
}
.benefit-card p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
.product-list {
    margin-top: 50px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.product-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}
.product-number {
    font-size: 0.9rem;
    font-weight: bold;
    color: #a83279;
    opacity: 0.6;
}
.product-item h3 {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}
.product-item p {
    flex: 1;
    text-align: left;
    padding: 0 40px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    color: #636e72;
}
.product-arrow {
    font-size: 24px;
    color: var(--text);
    transition: transform 0.3s ease;
}
/* Hover-Effekte */
.product-item:hover {
    background: rgba(168, 50, 121, 0.02);
}
.product-item:hover h3 {
    transform: translateX(10px);
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-item:hover p {
    opacity: 1;
    transform: translateX(0);
}
.product-item:hover .product-arrow {
    transform: translateX(10px) rotate(-45deg);
    color: #ff4b2b;
}
@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .product-item p {
        padding: 0;
        opacity: 1;
        transform: none;
        font-size: 0.9rem;
    }
    .product-arrow { display: none; }
}
.workflow-container {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
    padding: 0 20px;
}
/* Die verbindende Linie im Hintergrund */
.workflow-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}
.workflow-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}
.step-marker {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #f1f2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    color: var(--text);
    transition: all 0.3s ease;
}
.step-content span {
    font-size: 2.5rem;
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.step-content p {
    font-size: 0.85rem;
    color: #636e72;
    padding: 0 10px;
}
/* Hover-Effekt: Linie und Marker fÃ¤rben sich */
.workflow-step:hover .step-marker {
    background: var(--primary-grad);
    color: white;
    border-color: transparent;
    transform: scale(1.2);
    box-shadow: 0 10px 20px rgba(168, 50, 121, 0.2);
}
.workflow-step:hover .step-content h3 {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 900px) {
    .workflow-container {
        flex-direction: column;
        gap: 40px;
    }
    .workflow-container::before {
        width: 2px;
        height: 80%;
        left: 45px;
        top: 20px;
    }
    .workflow-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }
    .step-marker { margin: 0; flex-shrink: 0; }
}
.club-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 75, 43, 0.02), rgba(168, 50, 121, 0.02));
    padding: 60px;
    border-radius: 30px;
}
.club-content {
    text-align: left;
}
.club-content h2 {
    font-size: 2.8rem;
    margin: 15px 0;
}
.club-cta {
    margin-top: 30px;
}
.sub-text {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.7;
}
/* Die Promo-Box auf der rechten Seite */
.club-benefits {
    position: relative;
}
.club-promo-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(168, 50, 121, 0.1);
}
.promo-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}
.promo-item:last-child {
    margin-bottom: 0;
}
.promo-item span {
    font-size: 2rem;
    color: #ff4b2b;
    background: rgba(255, 75, 43, 0.1);
    padding: 10px;
    border-radius: 12px;
}
.promo-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text);
}
.promo-item p {
    font-size: 0.9rem;
    color: #636e72;
}
@media (max-width: 900px) {
    .club-split {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }
    .club-content {
        text-align: center;
    }
    .promo-item {
        text-align: left;
    }
}
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}
.image-frame {
    position: relative;
    width: 100%;
    max-width: 2000px;
    border-radius: 20px;
    padding: 10px;
}
.image-frame img {
    width: 100%;
    border-radius: 15px;
    display: block;
    filter: grayscale(20%); /* Optional fÃ¼r einen edleren Look */
}
.about-text h2 {
    font-size: 2.5rem;
    margin: 15px 0;
}
.tech-stack {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag {
    background: #f1f2f6;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--text);
}
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .image-frame {
        margin: 0 auto;
    }
    .tech-stack {
        justify-content: center;
    }
}
#ai-ready {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 75, 43, 0.03) 0%, rgba(168, 50, 121, 0.05) 100%);
    overflow: hidden; /* Wichtig, falls Karten durch Animation kurz rausraken */
}
.ai-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center; /* Text vertikal mittig zu den Karten */
}

.ai-text-content {
    text-align: left;
    max-width: 500px;
}
.ai-badge {
    display: inline-block;
    background: rgba(168, 50, 121, 0.1);
    color: #a83279;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ai-intro {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 40px;
    line-height: 1.7;
}
.ai-cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Abstand zwischen den Karten vertikal */
    position: relative;
}

.ai-cards-container::before {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(168, 50, 121, 0.2), transparent);
    z-index: 0;
    transform: translateX(-50%);
}
.ai-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 320px; /* Damit sie nicht zu breit werden */
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.ai-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(168, 50, 121, 0.1);
}

.card-left {
    align-self: flex-start; /* Links im Container */
    margin-right: auto;
}
.card-right {
    align-self: flex-end; /* Rechts im Container */
    margin-left: auto;
    margin-top: -20px; 
    margin-bottom: -20px;
}
.ai-card span {
    font-size: 2.5rem;
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-block;
}
.ai-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.ai-card p {
    font-size: 0.9rem;
    color: #636e72;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .ai-split-layout {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .ai-text-content {
        margin: 0 auto 50px;
        text-align: center;
    }
    .ai-cards-container::before {
        display: none; 
    }
    .card-left, .card-right {
        align-self: center;
        margin: 0 auto;
        margin-top: 0;
        margin-bottom: 0;
    }
}
#science {
    padding: 100px 0;
}
.science-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.bento-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
}
.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(168, 50, 121, 0.1);
}
.card-content {
    position: relative;
    z-index: 2;
}
.icon-glow {
    font-size: 40px;
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}
.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text);
}
.bento-card p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.6;
}

.heatmap-card {
    background: #f8f9fa;
}
.heatmap-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.5;
    filter: blur(40px);
    z-index: 1;
}
.heat-spot {
    position: absolute;
    border-radius: 50%;
    animation: heatPulse 6s infinite alternate;
}
.hot {
    width: 150px; height: 150px;
    background: #ff4b2b; /* Hot Red */
    top: -20px; left: -20px;
}
.warm {
    width: 200px; height: 200px;
    background: #f1c40f;
    top: 40%; right: -50px;
    animation-delay: 1s;
}
.cold {
    width: 180px; height: 180px;
    background: #3498db;
    bottom: -40px; left: 30%;
    animation-delay: 2s;
}
@keyframes heatPulse {
    0% { transform: scale(1) translate(0,0); opacity: 0.6; }
    100% { transform: scale(1.2) translate(10px, -10px); opacity: 0.9; }
}
.psychology-card {
    background: radial-gradient(circle at top right, rgba(168, 50, 121, 0.05), transparent);
}
.brain-visual {
    position: absolute;
    top: 20px; right: 20px;
    width: 100px; height: 100px;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, #a83279 0, #a83279 1px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    border-radius: 50%;
}
.seo-card {
    background: #2d3436;
}
.seo-card h3, .seo-card p, .seo-card .icon-glow {
    color: white; 
    -webkit-text-fill-color: white; /* Override gradient for this card */
}
.seo-card p { opacity: 0.8; }
.code-bg {
    position: absolute;
    top: 20px; left: 20px;
    font-family: monospace;
    font-size: 4rem;
    font-weight: bold;
    color: rgba(255,255,255,0.03);
    line-height: 0.8;
    pointer-events: none;
    white-space: pre-wrap;
    transform: rotate(-10deg);
}
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cookie-overlay {
        left: 8px;
        right: 8px;
        bottom: 10px;
    }

    .cookie-content {
        padding: 15px;
    }

    .cookie-options {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-buttons .btn-grad,
    .cookie-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }
}


@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.btn-loading {
    animation: pulse 1.5s infinite;
    cursor: not-allowed;
}

.form-status {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}
.form-status.status-success,
.form-status.status-error {
    display: block;
}
.status-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}
.status-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.new-css-art-container {
    --new-brand-primary: #a83279;
    --new-brand-secondary: #e67e22;
    --new-brand-light: rgba(168, 50, 121, 0.06);
    --new-brand-border: rgba(168, 50, 121, 0.18);
    --new-gold: #d4a017;
    --new-gold-bg: rgba(212, 160, 23, 0.1);
    --new-gold-border: rgba(212, 160, 23, 0.25);
    --new-bg-main: #ffffff;
    --new-bg-card: #ffffff;
    --new-bg-input: #f8f9fa;
    --new-bg-hover: #f1f2f6;
    --new-bg-subtle: #fafafa;
    --new-text-primary: #2d3436;
    --new-text-secondary: #636e72;
    --new-text-muted: #b2bec3;
    --new-border-color: rgba(0, 0, 0, 0.08);
    --new-border-strong: rgba(0, 0, 0, 0.12);
    --new-color-critical: #e74c3c;
    --new-color-high: #e67e22;
    --new-color-medium: #f39c12;
    --new-color-low: #27ae60;
    --new-color-info: #3498db;
    --new-color-success: #25d366;
    --new-radius-sm: 8px;
    --new-radius-md: 12px;
    --new-radius-lg: 16px;
    --new-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --new-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --new-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --new-transition: 0.2s ease;
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 520px;
    margin: 0 auto;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    user-select: none;
}

@keyframes new-glow-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.15); }
}
/* ---- Browser Window ---- */
.new-browser-window {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 380px;
    height: 300px;
    background: var(--new-bg-card);
    border-radius: var(--new-radius-lg);
    box-shadow: var(--new-shadow-lg), 0 0 0 1px var(--new-border-color);
    z-index: 2;
    overflow: hidden;
    animation: new-float-browser 6s ease-in-out infinite;
}
@keyframes new-float-browser {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
.new-browser-topbar {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: var(--new-bg-subtle);
    border-bottom: 1px solid var(--new-border-color);
    gap: 6px;
}
.new-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.new-browser-dot--red { background: var(--new-color-critical); }
.new-browser-dot--yellow { background: var(--new-color-medium); }
.new-browser-dot--green { background: var(--new-color-low); }
.new-browser-urlbar {
    flex: 1;
    height: 22px;
    margin-left: 10px;
    background: var(--new-bg-main);
    border-radius: 6px;
    border: 1px solid var(--new-border-color);
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 10px;
    color: var(--new-text-muted);
    gap: 5px;
    overflow: hidden;
}
.new-browser-urlbar-lock {
    width: 8px;
    height: 10px;
    border: 1.5px solid var(--new-color-low);
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
}
.new-browser-urlbar-lock::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 1px;
    width: 4px;
    height: 5px;
    border: 1.5px solid var(--new-color-low);
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}
/* ---- Website Inhalt im Browser ---- */
.new-browser-content {
    padding: 16px;
    position: relative;
    height: calc(100% - 42px);
    overflow: hidden;
}
.new-site-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}
.new-site-nav-item {
    height: 6px;
    border-radius: 3px;
    background: var(--new-bg-hover);
    animation: new-nav-shimmer 3s ease-in-out infinite;
}
.new-site-nav-item:nth-child(1) { width: 50px; background: var(--new-brand-primary); opacity: 0.7; animation-delay: 0s; }
.new-site-nav-item:nth-child(2) { width: 35px; animation-delay: 0.2s; }
.new-site-nav-item:nth-child(3) { width: 40px; animation-delay: 0.4s; }
.new-site-nav-item:nth-child(4) { width: 30px; animation-delay: 0.6s; }
@keyframes new-nav-shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.new-site-hero {
    width: 100%;
    height: 60px;
    border-radius: var(--new-radius-sm);
    background: linear-gradient(135deg, var(--new-brand-primary), var(--new-brand-secondary));
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}
.new-site-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: new-hero-shine 4s ease-in-out infinite;
}
@keyframes new-hero-shine {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}
.new-site-hero-text {
    position: absolute;
    top: 14px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.new-site-hero-line {
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.6);
}
.new-site-hero-line:nth-child(1) { width: 100px; background: rgba(255,255,255,0.9); }
.new-site-hero-line:nth-child(2) { width: 140px; }
.new-site-hero-line:nth-child(3) { width: 70px; }
.new-site-cards {
    display: flex;
    gap: 10px;
}
.new-site-card {
    flex: 1;
    height: 75px;
    border-radius: var(--new-radius-sm);
    background: var(--new-bg-subtle);
    border: 1px solid var(--new-border-color);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform var(--new-transition);
    animation: new-card-pop 0.6s ease-out both;
}
.new-site-card:nth-child(1) { animation-delay: 0.8s; }
.new-site-card:nth-child(2) { animation-delay: 1.0s; }
.new-site-card:nth-child(3) { animation-delay: 1.2s; }
@keyframes new-card-pop {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
.new-site-card-icon {
    width: 18px;
    height: 18px;
    border-radius: 5px;
}
.new-site-card:nth-child(1) .new-site-card-icon { background: linear-gradient(135deg, var(--new-brand-primary), rgba(168, 50, 121, 0.5)); }
.new-site-card:nth-child(2) .new-site-card-icon { background: linear-gradient(135deg, var(--new-brand-secondary), rgba(230, 126, 34, 0.5)); }
.new-site-card:nth-child(3) .new-site-card-icon { background: linear-gradient(135deg, var(--new-gold), rgba(212, 160, 23, 0.5)); }
.new-site-card-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.new-site-card-line {
    height: 4px;
    border-radius: 2px;
    background: var(--new-bg-hover);
}
.new-site-card-line:nth-child(1) { width: 80%; }
.new-site-card-line:nth-child(2) { width: 55%; }
/* ---- Code Editor ---- */
.new-code-editor {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 310px;
    height: 250px;
    background: #1e1e2e;
    border-radius: var(--new-radius-lg);
    box-shadow: var(--new-shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
    z-index: 3;
    overflow: hidden;
    animation: new-float-editor 6s ease-in-out infinite;
    animation-delay: -3s;
}
@keyframes new-float-editor {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}
.new-code-topbar {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 6px;
}
.new-code-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}
.new-code-dot--red { background: #ff5f57; }
.new-code-dot--yellow { background: #febc2e; }
.new-code-dot--green { background: #28c840; }
.new-code-tab {
    margin-left: 12px;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}
.new-code-body {
    padding: 14px 16px;
    font-family: 'Fira Code', 'SF Mono', 'Consolas', monospace;
    font-size: 11px;
    line-height: 1.8;
    color: #cdd6f4;
    position: relative;
}
.new-code-line {
    display: flex;
    gap: 0;
    white-space: nowrap;
    opacity: 0;
    animation: new-type-line 0.4s ease-out forwards;
}
.new-code-line:nth-child(1) { animation-delay: 0.3s; }
.new-code-line:nth-child(2) { animation-delay: 0.6s; }
.new-code-line:nth-child(3) { animation-delay: 0.9s; }
.new-code-line:nth-child(4) { animation-delay: 1.2s; }
.new-code-line:nth-child(5) { animation-delay: 1.5s; }
.new-code-line:nth-child(6) { animation-delay: 1.8s; }
.new-code-line:nth-child(7) { animation-delay: 2.1s; }
.new-code-line:nth-child(8) { animation-delay: 2.4s; }
.new-code-line:nth-child(9) { animation-delay: 2.7s; }
@keyframes new-type-line {
    0% { opacity: 0; transform: translateX(-5px); }
    100% { opacity: 1; transform: translateX(0); }
}
.new-code-number {
    color: rgba(255,255,255,0.15);
    width: 24px;
    text-align: right;
    margin-right: 14px;
    flex-shrink: 0;
    font-size: 10px;
}
.new-code-tag { color: #f38ba8; }
.new-code-attr { color: #fab387; }
.new-code-string { color: #a6e3a1; }
.new-code-punct { color: #6c7086; }
.new-code-prop { color: #89b4fa; }
.new-code-value { color: #cba6f7; }
.new-code-comment { color: #585b70; font-style: italic; }
.new-code-keyword { color: #cba6f7; }
.new-code-func { color: #89dceb; }
/* Cursor blinken */
.new-code-cursor {
    display: inline-block;
    width: 2px;
    height: 13px;
    background: var(--new-brand-primary);
    margin-left: 2px;
    animation: new-cursor-blink 1s step-end infinite;
    vertical-align: middle;
    border-radius: 1px;
}
@keyframes new-cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/* ---- Floating Elemente ---- */
.new-float-element {
    position: absolute;
    z-index: 4;
    border-radius: var(--new-radius-md);
    box-shadow: var(--new-shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    backdrop-filter: blur(10px);
    animation: new-float-badge 5s ease-in-out infinite;
}
/* Responsive Badge */
.new-float-responsive {
    top: 12px;
    right: 30px;
    background: rgba(255,255,255,0.92);
    color: var(--new-color-info);
    border: 1px solid rgba(52, 152, 219, 0.2);
    animation-delay: -1s;
}
.new-float-responsive-icon {
    width: 22px;
    height: 16px;
    border: 2px solid var(--new-color-info);
    border-radius: 2px;
    position: relative;
}
.new-float-responsive-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 2px;
    background: var(--new-color-info);
    border-radius: 1px;
}
/* Performance Badge */
.new-float-perf {
    bottom: 10px;
    left: 10px;
    background: rgba(255,255,255,0.92);
    color: var(--new-color-low);
    border: 1px solid rgba(39, 174, 96, 0.2);
    animation-delay: -3s;
    gap: 6px;
}
.new-float-perf-ring {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 3px solid var(--new-bg-hover);
    position: relative;
}
.new-float-perf-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--new-color-low);
    border-right-color: var(--new-color-low);
    border-bottom-color: var(--new-color-low);
    animation: new-perf-fill 2s ease-out forwards;
    animation-delay: 1.5s;
}
@keyframes new-perf-fill {
    0% { transform: rotate(0deg); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: rotate(0deg); opacity: 1; }
}
.new-float-perf-score {
    font-size: 9px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    color: var(--new-color-low);
}
@keyframes new-float-badge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}
/* ---- Color Palette ---- */
.new-float-palette {
    position: absolute;
    top: 110px;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 5;
    animation: new-float-badge 7s ease-in-out infinite;
    animation-delay: -2s;
}
.new-palette-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    border: 2px solid rgba(255,255,255,0.8);
    animation: new-swatch-pop 0.3s ease-out both;
}
.new-palette-swatch:nth-child(1) { background: var(--new-brand-primary); animation-delay: 2.0s; }
.new-palette-swatch:nth-child(2) { background: var(--new-brand-secondary); animation-delay: 2.2s; }
.new-palette-swatch:nth-child(3) { background: var(--new-gold); animation-delay: 2.4s; }
.new-palette-swatch:nth-child(4) { background: var(--new-color-info); animation-delay: 2.6s; }
@keyframes new-swatch-pop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
/* ---- Verbindungs-Linien (dekorativ) ---- */
.new-connector {
    position: absolute;
    z-index: 1;
}
.new-connector-line {
    position: absolute;
    top: 200px;
    left: 370px;
    width: 60px;
    height: 2px;
    z-index: 1;
}
.new-connector-line::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--new-brand-primary), var(--new-brand-secondary));
    border-radius: 2px;
    animation: new-connect-draw 1.5s ease-out 2s forwards;
}
@keyframes new-connect-draw {
    0% { width: 0%; }
    100% { width: 100%; }
}
.new-connector-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--new-brand-primary);
    z-index: 2;
}
.new-connector-dot--left {
    top: 197px;
    left: 367px;
    animation: new-dot-appear 0.3s ease-out 1.8s both;
}
.new-connector-dot--right {
    top: 197px;
    left: 428px;
    animation: new-dot-appear 0.3s ease-out 3.5s both;
    background: var(--new-brand-secondary);
}
@keyframes new-dot-appear {
    0% { transform: scale(0); }
    70% { transform: scale(1.4); }
    100% { transform: scale(1); }
}
/* ---- Floating Code Symbols ---- */
.new-floating-symbols {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.new-symbol {
    position: absolute;
    font-family: 'Fira Code', 'SF Mono', monospace;
    font-size: 14px;
    opacity: 0.08;
    color: var(--new-brand-primary);
    animation: new-symbol-float 12s linear infinite;
}
.new-symbol:nth-child(1) { left: 5%; top: 80%; animation-delay: 0s; font-size: 16px; }
.new-symbol:nth-child(2) { left: 15%; top: 90%; animation-delay: -3s; color: var(--new-brand-secondary); }
.new-symbol:nth-child(3) { left: 80%; top: 85%; animation-delay: -6s; font-size: 12px; }
.new-symbol:nth-child(4) { left: 60%; top: 95%; animation-delay: -9s; color: var(--new-gold); }
.new-symbol:nth-child(5) { left: 40%; top: 88%; animation-delay: -2s; font-size: 18px; }
.new-symbol:nth-child(6) { left: 92%; top: 75%; animation-delay: -7s; color: var(--new-color-info); font-size: 11px; }
@keyframes new-symbol-float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
    25% { opacity: 0.12; }
    50% { transform: translateY(-250px) rotate(180deg); opacity: 0.06; }
    75% { opacity: 0.1; }
    100% { transform: translateY(-500px) rotate(360deg); opacity: 0; }
}
/* ---- Pixel Grid Deko ---- */
.new-pixel-grid {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(5, 6px);
    gap: 3px;
    z-index: 1;
    opacity: 0.25;
}
.new-pixel {
    width: 6px;
    height: 6px;
    border-radius: 1.5px;
    background: var(--new-text-muted);
    animation: new-pixel-blink 3s ease-in-out infinite;
}
.new-pixel:nth-child(1) { animation-delay: 0s; background: var(--new-brand-primary); }
.new-pixel:nth-child(3) { animation-delay: 0.5s; }
.new-pixel:nth-child(5) { animation-delay: 1s; background: var(--new-brand-secondary); }
.new-pixel:nth-child(7) { animation-delay: 0.3s; background: var(--new-gold); }
.new-pixel:nth-child(9) { animation-delay: 0.8s; }
.new-pixel:nth-child(11) { animation-delay: 1.2s; background: var(--new-color-info); }
.new-pixel:nth-child(13) { animation-delay: 0.2s; }
.new-pixel:nth-child(15) { animation-delay: 0.7s; background: var(--new-brand-primary); }
@keyframes new-pixel-blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
/* ---- Responsiveness ---- */
@media (max-width: 750px) {
    .new-css-art-container {
        height: 440px;
        max-width: 100%;
    }
    .new-browser-window {
        left: 10px;
        width: 280px;
        height: 240px;
        top: 15px;
    }
    .new-code-editor {
        width: 240px;
        height: 210px;
        right: 5px;
        bottom: 20px;
    }
    .new-site-hero { height: 45px; }
    .new-site-cards { gap: 6px; }
    .new-site-card { height: 60px; padding: 8px; }
    .new-float-palette { display: none; }
    .new-connector-line,
    .new-connector-dot { display: none; }
}
@media (max-width: 500px) {
    .new-css-art-container {
        height: 520px;
    }
    .new-browser-window {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        max-width: 320px;
        top: 10px;
        animation: none;
    }
    .new-code-editor {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        max-width: 320px;
        right: auto;
        bottom: 15px;
        animation: none;
    }
    .new-float-responsive {
        top: 0px;
        right: 5px;
        font-size: 9px;
        padding: 5px 10px;
    }
    .new-float-perf {
        bottom: 0px;
        left: 5px;
        font-size: 9px;
        padding: 5px 10px;
    }
}

.image-ai-ready {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding-left: 1%;
    padding-top: -10px;
}

.image-why-ws {
    position: relative;
    width: 100%;
    max-width: 200px;
    padding-left: 1%;
    padding-top: 10px;
    margin: 0 auto;
}

.image-sience2 {
    position: relative;
    width: 100%;
    max-width: 390px;
    padding-top: 30px;
    padding-bottom: 1px;
    margin: 0 auto;
}

.container-grid-contact {
    display: grid;
    grid-template-columns: auto auto; /* Spalten passen sich dem Inhalt an */
    gap: 30px;              /* DAS ist jetzt der Abstand zwischen Karte und Bild */
    justify-content: center; /* Zentriert das Ganze in der Mitte */
    align-items: center;
    padding: 0 5%; 
}

.image-contact {
    position: relative;
    width: auto;            /* Von 100% auf auto ändern, damit es nicht die Zelle aufbläht */
    max-width: 500px;       /* Deine gewünschte Maximalgröße */
    
    /* Alle margin und padding Befehle löschen! */
    justify-self: start;    /* Optional: schiebt das Bild in seiner Zelle ein ganz kleines bisschen näher an die Karte heran */
}

.image-contact img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}


