:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --accent: #f59e0b;
}

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; margin: 0; background: var(--light); color: var(--dark); scroll-behavior: smooth; }

/* Navigation */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Schatten etwas subtiler gemacht für mehr Modernität */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Logo Container Anpassungen */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* WICHTIG: Responsive Anpassung */
@media (max-width: 768px) {
    /* In deine style.css kopieren */

.logo svg {
    height: 35px;       /* Wir legen eine feste Höhe fest, damit die Leiste nicht springt */
    width: auto;        /* Die Breite passt sich automatisch an die Höhe an */
    display: block;     /* Verhindert unsichtbare Abstände unter dem Bild */
}

/* Für Handys: Da darf das Logo noch etwas kleiner sein */
@media (max-width: 768px) {
    .logo svg {
        height: 28px;   /* Etwas kleiner auf dem Handy */
    }
}



}.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Hero Section */
.hero { height: 100vh; background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: var(--white); text-align: center; }
.btn { background: var(--primary); color: white; padding: 0.8rem 2rem; border: none; border-radius: 5px; text-decoration: none; cursor: pointer; transition: background 0.3s; display: inline-block; }
.btn:hover { background: var(--primary-dark); }

/* Grid & Cards */
.container { padding: 80px 5%; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); position: relative; transition: transform 0.3s; }
.card:hover { transform: translateY(-10px); }
.card.popular { border: 2px solid var(--primary); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin: 20px 0; }
.card ul { list-style: none; padding: 0; margin-bottom: 30px; }
.card li { margin-bottom: 10px; opacity: 0.8; }

/* Contact Form */
#contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
#contact-form input, #contact-form textarea { padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }

/* Chatbot Style */
#chatbot-ui { position: fixed; bottom: 20px; right: 20px; z-index: 2000; }
#chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: white; border: none; font-size: 24px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
#chat-window { display: none; width: 320px; height: 450px; background: white; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); flex-direction: column; overflow: hidden; margin-bottom: 15px; }
.chat-header { background: var(--primary); color: white; padding: 15px; font-weight: bold; }
#chat-messages { flex: 1; padding: 15px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.message { padding: 8px 12px; border-radius: 10px; max-width: 80%; font-size: 0.9rem; }
.message.user { align-self: flex-end; background: #e2e8f0; }
.message.bot { align-self: flex-start; background: var(--primary); color: white; }
.chat-footer { padding: 10px; border-top: 1px solid #eee; }
#chat-input { width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 5px; }

/* --- TRUST POINTS SECTION --- */
.trust-section {
    padding: 60px 5%;
    background: white; /* Hebt sich vom Hero ab */
    border-bottom: 1px solid #eee;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.trust-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--dark);
}

.trust-item p {
    font-size: 0.95rem;
    color: #64748b; /* Etwas weicheres Grau */
    line-height: 1.5;
}

.icon-box {
    margin-bottom: 15px;
    display: inline-block;
    padding: 12px;
    background: #eff6ff; /* Ganz helles Blau */
    border-radius: 12px;
}

/* --- FOOTER STYLE --- */
.site-footer {
    background: var(--dark);
    color: #cbd5e1; /* Helles Grau für Text auf dunklem Grund */
    padding: 60px 5% 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary); /* Wird blau beim Drüberfahren */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 0.9rem;
}