:root {
    --siq-red: #C1121F;
    --siq-orange: #DB7C26;
    --siq-blue: #669BBC;
    --siq-dark: #121212;
    --siq-dark-lighter: #1E1E1E;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --green-500: #22c55e;

    --background: #121212;
    --foreground: #FAFAFA;
    --card: #1E1E1E;
    --border: rgba(255, 255, 255, 0.1);
    --muted-foreground: #a1a1aa;
    --radius: 0.75rem;
}

/* Basis-Styling */
* {
    box-sizing: border-box;
    border-color: var(--border);
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

html.modal-open,
body.modal-open {
    overflow: hidden;
}

/* Hilfsklassen */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* Etwas mehr Padding für Mobile */
    padding-right: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--siq-orange), var(--siq-red), var(--siq-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-panel {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* NEU: Helper-Klasse für Screenreader */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* Button-Styling */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    border: 1px solid transparent;
}

.button:hover {
    transform: translateY(-2px);
}

.button.w-full {
    width: 100%;
}

.button-primary {
    background-color: var(--siq-red);
    color: white;
}

.button-gradient {
    background: linear-gradient(to right, var(--siq-red), var(--siq-orange));
    color: white;
    font-weight: 600;
}

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

.button-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--gray-700);
}

.button-outline:hover {
    background-color: var(--gray-800);
}

.button-secondary {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--gray-700);
}

.button-secondary:hover {
    background-color: var(--gray-800);
}


/* --- Header & Navbar --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 50;
    transition: background-color 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.main-header.scrolled {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001; /* Stellt sicher, dass das Logo über dem mobilen Menü liegt, falls es überlappt */
}

.logo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    width: 2rem;
    height: 2rem;
    margin: 0 0.125rem;
    color: white;
    font-weight: bold;
}

.hot-btn { background-color: var(--siq-red); }
.medium-btn { background-color: var(--siq-orange); }
.cold-btn { background-color: var(--siq-blue); }

.uncategorized-btn {
    background-color: var(--gray-700);
    width: auto;
    height: 2rem;
    padding: 0 0.5rem;
    margin-left: 0.25rem;
    font-size: 0.875rem;
}

/* Standard-Navigation auf kleinen Bildschirmen verstecken */
.main-nav { display: none; }
.nav-buttons-wrapper { display: none; }
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* NEU: Hamburger-Button nur auf kleinen Bildschirmen anzeigen */
.mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--foreground);
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Desktop-Ansicht (ab 1024px) */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
        font-size: 0.875rem;
    }
    .main-nav a {
        color: var(--gray-300);
        text-decoration: none;
        transition: color 0.2s;
    }
    .main-nav a:hover {
        color: white;
    }

    .nav-buttons-wrapper {
        display: block;
    }
    
    .mobile-nav-toggle {
        display: none;
    }
}

/* NEU: Styling für das mobile Menü */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--siq-dark);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.is-open {
    transform: translateX(0);
    overflow-y: auto;
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: var(--foreground);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 80%;
    max-width: 300px;
    margin-top: 1rem;
}

.mobile-nav-buttons .button {
    width: 100%;
}

/* NEU: Styling für mobile User-Aktionen */
.mobile-user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.mobile-user-actions .button {
    flex-grow: 1; /* Dashboard-Button nimmt den restlichen Platz ein */
}

/* NEU: Styling für Account-Icon */
.account {
    display: flex;
    align-items: center;
}

.account i {
    font-size: 24px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    color: var(--muted-foreground);
    transition: color 0.2s, border-color 0.2s;
    /* Sorgt für eine Box-ähnliche Größe, die sich besser ausrichten lässt */
    height: 38px;
    width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.account a:hover i {
    color: var(--foreground);
    border-color: var(--siq-blue);
}


/* --- Hero Section --- */
#hero {
    position: relative;
    min-height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1rem 4rem 1rem;
    overflow: hidden;
}

#globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%; 
    height: 100%;
    z-index: 0;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--foreground);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

.hero-content h1 {
    font-size: 2.5rem; 
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    max-width: 800px;
}

.hero-content p {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 650px;
    margin: 0;
}

.hero-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    #hero {
        min-height: 100vh;
        padding: 6rem 1rem;
    }
    #globe-container {
        width: 100%;
    }
    .hero-content h1 {
        font-size: 4.5rem;
    }
    .hero-content p {
        font-size: 1.25rem;
    }
}

/* --- Allgemeine Sections --- */
.section {
    padding: 4rem 0;
    text-align: center;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    .section-header {
        margin-bottom: 4rem;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
    .section-header p {
        font-size: 1.125rem;
    }
}

/* --- Features Section --- */
#features {
    background-color: var(--siq-dark);
    position: relative;
    overflow: hidden;
}

.features-glow-1, .features-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.features-glow-1 {
    top: 25%; right: 0; width: 33%; height: 33%; background-color: rgba(102, 155, 188, 0.05);
}
.features-glow-2 {
    bottom: 25%; left: 0; width: 33%; height: 33%; background-color: rgba(193, 18, 31, 0.05);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr; /* Mobile: Eine Spalte */
    max-width: 72rem;
    margin: auto;
}
@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
    padding: 1.5rem;
    text-align: left;
    border: 1px solid var(--gray-800);
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: white;
}
.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.feature-card li {
    display: flex;
    align-items: flex-start;
}
.feature-card .icon-wrapper {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: rgba(34, 197, 94, 0.2);
    padding: 0.25rem;
    display: inline-flex;
}
.feature-card .icon-wrapper svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--green-500);
}
.feature-card .feature-text {
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* --- Solutions Section --- */
#solutions .grid {
    display: grid;
    gap: 1.5rem;
    text-align: left;
    grid-template-columns: 1fr; /* Mobile: 1 Spalte */
}
@media (min-width: 768px) {
    #solutions .grid { 
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 Spalten */
    }
}
@media (min-width: 1024px) {
    #solutions .grid { 
        grid-template-columns: repeat(3, 1fr); /* Desktop: 3 Spalten (ergibt ein 2x3 Grid mit 6 Kacheln) */
        gap: 2rem;
    }
}
.solution-card { 
    padding: 2rem; 
    display: flex; /* Hilft bei der vertikalen Ausrichtung, falls die Karten unterschiedlich hoch werden */
    flex-direction: column;
}
.solution-card h3 { 
    font-size: 1.25rem; 
    margin-top: 0; 
    color: var(--foreground); 
}
.solution-card p { 
    color: var(--muted-foreground); 
    line-height: 1.6; 
    flex-grow: 1; /* Stellt sicher, dass die p-Tags den Raum füllen und die Karten unten bündig sind */
}


/* --- Live Demo Section --- */
.live-demo-container {
    max-width: 48rem;
    margin: auto;
    background-color: var(--siq-dark);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-800);
}

.demo-search-bar {
    display: flex;
    flex-direction: column; /* Mobile: Untereinander */
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .demo-search-bar {
        flex-direction: row; /* Desktop: Nebeneinander */
    }
}


.demo-search-bar input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    background-color: var(--siq-dark-lighter);
    border: 1px solid var(--gray-700);
    color: var(--foreground);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.demo-search-bar input:focus {
    outline: none;
    border-color: var(--siq-orange);
    box-shadow: 0 0 0 2px rgba(219, 124, 38, 0.3);
}

.demo-search-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Zentriert Icon und Text */
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--siq-red);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.demo-search-bar button:hover { background-color: #a00f1a; }
.demo-search-bar button:disabled { background-color: var(--gray-700); cursor: not-allowed; }

.demo-results-wrapper {
    position: relative;
    min-height: 280px;
    background-color: var(--siq-dark-lighter);
    border-radius: 0.5rem;
    padding: 1rem;
}

.demo-state-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 280px;
    color: var(--muted-foreground);
    font-style: italic;
    text-align: center;
}

#demo-error-state p { margin: 0; padding: 0.5rem; }

#demo-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* START: Aktualisierte und neue Regeln */

.demo-result-item {
    display: flex;
    flex-direction: column; /* Geändert für mehrzeilige Inhalte */
    align-items: flex-start; /* Links ausrichten */
    padding: 1rem;
    background-color: var(--siq-dark);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-800);
    gap: 0.75rem; /* Abstand zwischen den Elementen */
}

.demo-result-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.demo-result-header .info {
    flex-grow: 1;
}

.company-name {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.location-name {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.company-summary {
    font-size: 0.875rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin: 0;
    max-height: 60px;
    overflow-y: auto;
}

.details-section {
    width: 100%;
    margin-top: 0.5rem;
}

.details-section strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gray-500);
    display: block;
    margin-bottom: 0.5rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-tag {
    background-color: var(--gray-700);
    color: var(--gray-300);
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ENDE: Aktualisierte und neue Regeln */

#demo-blur-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--siq-dark-lighter) 20%, transparent);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

.company-name-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-name {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.website-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.website-link-icon:hover {
    color: white;
}

.website-link-icon svg {
    width: 1rem;
    height: 1rem;
}

.more-results-text { text-align: center; color: white; font-weight: 500; }
.more-results-text span { display: block; margin-bottom: 1rem; }

.demo-filters-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .demo-filters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Dark-Theme für Vue-Treeselect */
.vue-treeselect { width: 100% !important; }
.vue-treeselect__control {
    background: var(--siq-dark-lighter); /* Angepasst für Landingpage */
    border: 1px solid var(--gray-700);
    border-radius: 0.5rem;
    height: auto;
    min-height: 44px;
    max-height: 50px;
    overflow-y: auto;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100% !important;
}
.vue-treeselect--open .vue-treeselect__control {
    border-color: var(--siq-orange);
    box-shadow: 0 0 0 2px rgba(219, 124, 38, 0.3);
}
.vue-treeselect__control::-webkit-scrollbar { width: 8px; }
.vue-treeselect__control::-webkit-scrollbar-track { background: var(--siq-dark); }
.vue-treeselect__control::-webkit-scrollbar-thumb {
    background-color: var(--gray-700);
    border-radius: 4px;
    border: 2px solid var(--siq-dark);
}
    
.vue-treeselect--single .vue-treeselect__input-container,
.vue-treeselect__placeholder {
    color: var(--muted-foreground);
    line-height: 2.5rem;
    padding-left: 0.75rem;
}

.vue-treeselect__input,
.vue-treeselect__single-value {
    color: var(--foreground) !important;
}

.vue-treeselect__multi-value-item {
    background: var(--muted-foreground);
    border-radius: 0.25rem;
    margin: 4px;
}
.vue-treeselect__multi-value-label { color: var(--background); font-weight: 500; }
.vue-treeselect__multi-value-delete { color: var(--background); }

.vue-treeselect__menu {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.vue-treeselect__option { color: var(--foreground); }
.vue-treeselect__option--highlight { background: var(--background); }
.vue-treeselect__option--selected { background: var(--background); font-weight: 600; }
.vue-treeselect__label-container .vue-treeselect__checkbox--checked {
    border-color: var(--siq-blue);
    background: var(--siq-blue);
}
.vue-treeselect__control-arrow { color: var(--muted-foreground) !important; }

body .vue-treeselect__placeholder {
    font-size: 0.875rem; 
    color: var(--muted-foreground) !important; 
}
.vue-treeselect--has-value .vue-treeselect__multi-value { max-height:36px; overflow-y: auto; } 
.vue-treeselect__menu-container { z-index: 9999 !important; }
.vue-treeselect__menu-container .vue-treeselect__menu {
    width: auto !important;
    min-width: 250px !important;
    max-width: 530px; 
}
.vue-treeselect__menu-container .vue-treeselect__label-container {
    white-space: nowrap;
}

/* --- Pricing Section Styling --- */
#pricing { background-color: var(--siq-dark); position: relative; }

.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}
.billing-toggle-label { font-size: 0.875rem; color: var(--gray-400); transition: color 0.2s; cursor: pointer; }
.billing-toggle-label.active { color: white; }
.billing-toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.billing-toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--gray-700); transition: .4s; border-radius: 24px;
}
.slider:before {
    position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px;
    background-color: white; transition: .4s; border-radius: 50%;
}
input:checked+.slider { background-color: var(--siq-orange); }
input:checked+.slider:before { transform: translateX(20px); }

.toggle-label-group {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 42px; position: relative; transition: all 0.3s ease; width: 100px; text-align: center;
}
#annual-label { transition: transform 0.3s ease-out, font-size 0.3s ease-out; transform-origin: center; }
.annual-savings-badge {
    font-size: 0.75rem; color: var(--siq-orange); font-weight: 500;
    opacity: 0; transform: translateY(10px); max-height: 0; overflow: hidden; pointer-events: none;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, max-height 0.3s ease-out;
}
.toggle-label-group.is-annual-active #annual-label { transform: translateY(-8px); font-size: 0.75rem; }
.toggle-label-group.is-annual-active .annual-savings-badge {
    opacity: 1; transform: translateY(-2px); max-height: 20px; pointer-events: auto;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 25rem; /* Schmaler auf Mobile für bessere Darstellung */
    margin: 1.5rem auto 0 auto;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .pricing-grid { max-width: 72rem; grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
    position: relative; border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden; background-color: var(--siq-dark-lighter); border: 1px solid var(--gray-800);
    display: flex; flex-direction: column;
}
.pricing-card.popular {
    border: 2px solid var(--siq-orange);
    background-image: linear-gradient(to bottom, rgba(219, 124, 38, 0.1), transparent);
}
.popular-banner {
    position: absolute; top: 0; left: 0; right: 0; padding: 0.375rem 0;
    font-size: 0.75rem; font-weight: 500; text-align: center; color: white; background-color: var(--siq-orange);
}
.pricing-card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.pricing-card.popular .pricing-card-content { padding-top: 3rem; }
.pricing-card h3 { font-size: 1.25rem; font-weight: 700; color: white; margin: 0 0 0.5rem; }
.pricing-card .description { font-size: 0.875rem; color: var(--gray-400); margin-bottom: 1rem; min-height: 40px; }
.price-display { margin: 1rem 0 1.5rem 0; display: flex; justify-content: center; align-items: baseline;  gap: 0.5rem;  }
.price-amount { font-size: 2.5rem; font-weight: 900; color: white; }
.price-period { color: var(--gray-400); }
.price-label { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
.features-list {
    list-style: none; padding: 0; margin: 0 0 2rem 0; text-align: left;
    display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1;
}
.features-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.features-list svg { width: 1.25rem; height: 1.25rem; color: var(--green-500); flex-shrink: 0; margin-top: 2px; }
.features-list span { color: var(--gray-300); font-size: 0.875rem; }
.contact-sales-link { margin-top: 4rem; text-align: center; }
.contact-sales-link p { color: var(--gray-400); }
.contact-sales-link a { color: var(--siq-blue); text-decoration: none; }
.contact-sales-link a:hover { text-decoration: underline; }

/* --- Clients & Testimonials Section --- */
#clients { background-color: var(--siq-dark-lighter); }
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--siq-dark);
    border-radius: 0.5rem;
    flex-shrink: 0; /* Verhindert, dass Logos schrumpfen */
}

.client-logo-item img {
    height: 2.5rem; /* Feste Höhe statt max-height für einheitlicheres Aussehen */
    width: auto;
    max-width: 150px; /* Verhindert, dass Logos zu breit werden */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo-item:hover img { opacity: 1; }

.logo-scroller {
    max-width: 900px;
    margin: 4rem auto; /* Ersetzt das Margin vom alten Grid */
    overflow: hidden;
    /* Schöner Weichzeichner-Effekt an den Rändern */
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller-inner {
    display: flex;
    flex-wrap: nowrap;
    width: max-content; /* Wichtig, damit der Container so breit wie sein Inhalt wird */
    gap: 4rem; /* Abstand zwischen den Logos */

    /* Die Animation selbst */
    animation: scroll 40s linear infinite;
}

/* Pausiert die Animation beim Hovern, damit man ein Logo anklicken kann */
.logo-scroller:hover .scroller-inner {
    animation-play-state: paused;
}

/* Die Keyframe-Animation, die den Container bewegt */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        /* Bewegt den Container um die Breite der ersten Logogruppe nach links */
        transform: translateX(-50%);
    }
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { padding: 1.5rem; text-align: left; }
.testimonial-card .quote-icon { margin-bottom: 1rem; color: var(--siq-orange); }
.testimonial-card .quote-icon svg { width: 2rem; height: 2rem; opacity: 0.5; }
.testimonial-card .quote-text { font-style: italic; color: var(--gray-300); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; }
.author-avatar { 
    width: 2.5rem; 
    height: 2.5rem; 
    border-radius: 9999px; 
    margin-right: 0.75rem; 
    object-fit: cover; /* NEU: Stellt sicher, dass das Bild den Kreis füllt, ohne sich zu verzerren */
}
.author-name { font-weight: 500; color: white; }
.author-title { font-size: 0.875rem; color: var(--gray-400); }

/* --- Modal & Tabs Styling --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8); z-index: 100; display: none;
    align-items: center; justify-content: center;
}
.modal-overlay.is-open { display: flex; }
.modal-content {
    background-color: var(--siq-dark-lighter); border: 1px solid var(--gray-700);
    border-radius: var(--radius); padding: 1.5rem; width: 90%;
    max-width: 425px; position: relative;
}
#book-meeting-modal .modal-close-btn {
    top: 1rem; right: 1rem; background-color: rgba(30, 30, 30, 0.7); 
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.modal-close-btn {
    position: absolute; top: -10px; right: -10px; width: 32px; height: 32px;
    border: none; border-radius: 50%; background-color: var(--siq-dark);
    color: white; font-size: 20px; line-height: 32px; text-align: center;
    cursor: pointer; z-index: 110; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, background-color 0.2s;
}
.modal-close-btn:hover { background-color: var(--siq-red); transform: scale(1.1); }
.modal-header h2 { text-align: center; font-size: 1.25rem; font-weight: 600; margin: 0 0 1.5rem 0; }
.tabs-list { display: grid; grid-template-columns: 1fr 1fr; background-color: var(--siq-dark); border-radius: 0.5rem; }
.tabs-trigger {
    background-color: transparent; border: none; color: var(--muted-foreground);
    padding: 0.5rem 1rem; cursor: pointer; font-size: 0.875rem; border-radius: 0.5rem;
    transition: background-color 0.2s, color 0.2s;
}
.tabs-trigger.is-active { background-color: var(--background); color: var(--foreground); }
.tabs-content { display: none; margin-top: 1rem; }
.tabs-content.is-active { display: block; }

/* --- Form Styling (Login/Signup) --- */
.form-wrapper { display: flex; flex-direction: column; gap: 1rem; padding-top: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-label { display: block; font-size: 0.875rem; color: var(--gray-300); margin-bottom: 0.5rem; font-weight: 500; }
.form-input {
    width: 100%; padding: 0.65rem 0.75rem; background-color: var(--siq-dark);
    border: 1px solid var(--gray-700); color: var(--foreground); border-radius: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s; font-size: 0.875rem;
}
.form-input::placeholder { color: var(--gray-400); }
.form-input:focus { outline: none; border-color: var(--siq-orange); box-shadow: 0 0 0 1px var(--siq-orange); }
.form-terms { font-size: 0.75rem; color: var(--gray-400); text-align: center; padding: 0 0.5rem; }
.form-terms a, .forgot-password-link a { color: var(--siq-blue); text-decoration: none; }
.form-terms a:hover, .forgot-password-link a:hover { text-decoration: underline; }
.forgot-password-link { text-align: right; font-size: 0.875rem; margin-top: -0.5rem; margin-bottom: 0.5rem; }
.button-icon { margin-left: 0.5rem; width: 1rem; height: 1rem; }
.form-error {
    display: none; color: #ff4d4d; background-color: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3); border-radius: 0.5rem; padding: 0.75rem;
    margin-bottom: 1rem; text-align: center; font-size: 0.875rem;
}

/* --- New Footer --- */
.new-footer {
    background-color: var(--siq-dark);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--gray-800);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: Eine Spalte */
    gap: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}
.footer-column-main {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-social-links { justify-content: center; }

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); text-align: left; gap: 2rem; }
    .footer-column-main { align-items: flex-start; }
    .footer-social-links { justify-content: flex-start; }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(5, 1fr); }
    .footer-column-main { grid-column: span 2 / span 2; }
}
.footer-logo-container { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-logo {
    width: 2.5rem; height: 2.5rem; border-radius: 0.375rem;
    background: linear-gradient(to bottom right, var(--siq-red), var(--siq-orange), var(--siq-blue));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: bold; font-size: 1.25rem;
}
.footer-brand-name { font-weight: 600; font-size: 1.25rem; letter-spacing: -0.025em; }
.footer-description { color: var(--gray-400); margin-bottom: 1rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.6; }
.footer-social-links { display: flex; gap: 1rem; }
.footer-social-links a { color: var(--gray-400); transition: color 0.2s ease; }
.footer-social-links a:hover { color: white; }
.footer-social-links svg { width: 1.25rem; height: 1.25rem; }
.footer-column h3 { color: white; font-weight: 600; margin-bottom: 1rem; margin-top: 0; }
.footer-column ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-column a { color: var(--gray-400); text-decoration: none; transition: color 0.2s ease; font-size: 0.875rem; }
.footer-column a:hover { color: white; }
.footer-bottom-bar {
    padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--gray-800);
    display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom-bar { flex-direction: row; } }
.copyright-text { color: var(--gray-500); font-size: 0.875rem; }
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a { color: var(--gray-500); text-decoration: none; transition: color 0.2s ease; font-size: 0.875rem; }
.legal-links a:hover { color: var(--gray-400); }


/* Language Switcher Styling */
.lang-switcher-container { position: relative; display: inline-block; }
.lang-switcher-container .button { display: flex; align-items: center; }
.lang-dropdown-menu {
    display: none; position: absolute; top: calc(100% + 10px); right: 0;
    background-color: var(--siq-dark-lighter); border: 1px solid var(--gray-700);
    border-radius: 0.5rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden; z-index: 110; min-width: 150px;
}
.lang-dropdown-menu.show { display: block; }
.lang-option {
    display: block; padding: 0.75rem 1rem; color: var(--gray-300); text-decoration: none;
    font-size: 0.875rem; transition: background-color 0.2s, color 0.2s;
}
.lang-option:hover { background-color: var(--gray-800); color: white; }


/* Sustainability & Privacy Section */
#sustainability { background-color: var(--siq-dark); }
.sustainability-showcase {
    max-width: 64rem; margin: auto; display: grid; grid-template-columns: 1fr;
    border-radius: var(--radius); overflow: hidden; padding: 0;
}
@media (min-width: 768px) { .sustainability-showcase { grid-template-columns: 1fr 1fr; } }

.showcase-partner { margin-top: 2rem; text-align: center; }

.partner-label { display: block; font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }

.partner-logo {
    height: 7.5rem; /* GEÄNDERT: Wert von 2.5rem auf 3.5rem erhöht */
    width: auto;
    max-width: 300px; /* GEÄNDERT: Etwas mehr maximale Breite erlaubt */
}

.showcase-column {
    padding: 3rem 2rem; display: flex; flex-direction: column; align-items: center; text-align: center;
}
.showcase-column:first-child { background: radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.05), transparent 40%); }
.showcase-column:last-child { background: radial-gradient(circle at 0% 0%, rgba(102, 155, 188, 0.05), transparent 40%); }
@media (min-width: 768px) { .showcase-column:first-child { border-right: 1px solid var(--border); } }
@media (max-width: 767px) { .showcase-column:first-child { border-bottom: 1px solid var(--border); } }

.showcase-icon {
    width: 4rem; height: 4rem; margin-bottom: 1.5rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background-color: var(--icon-bg); border: 1px solid rgba(255, 255, 255, 0.05);
}
.showcase-icon svg { width: 2rem; height: 2rem; color: var(--icon-color); }
.showcase-column h3 { font-size: 1.25rem; font-weight: 600; margin: 0 0 0.75rem; color: white; }
.showcase-column p { color: var(--muted-foreground); line-height: 1.6; margin: 0; max-width: 400px; }
/* ... (Alle Ihre bisherigen CSS-Regeln) ... */


/* --- NEU: Product Video Section Styling --- */
#product-video {
    background-color: var(--siq-dark);
}

.scroll-video-container {
    position: relative;
    width: 100%;
    max-width: 960px; /* Maximale Breite des Videos */
    margin: auto;
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    aspect-ratio: 16 / 9; /* Wichtig für eine stabile Video-Form */
    overflow: hidden;
    cursor: ns-resize; /* Zeigt an, dass vertikales Scrollen eine Aktion auslöst */
    background-color: var(--siq-dark-lighter); /* Hintergrundfarbe, während das erste Bild lädt */
}

.video-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.scroll-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Lässt Klicks und Scroll-Events zum Container durch */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)); /* Leichter Schatten für bessere Lesbarkeit */
    transition: opacity 0.5s ease;
    opacity: 1;
}

.scroll-video-overlay span {
    padding: 0.75rem 1.5rem;
    background-color: rgba(18, 18, 18, 0.8);
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-weight: 500;
    color: var(--foreground);
    backdrop-filter: blur(5px);
}

.form-message {
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.875rem;
    display: none; /* Standardmäßig versteckt */
}

.form-error {
    color: #ff4d4d;
    background-color: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.form-success {
    color: #22c55e;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}
/* ---Account Dropdown & Trigger Styling --- */
.account-menu-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.account-icon-trigger {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    line-height: 1; /* Verhindert zusätzlichen Leerraum */
}

.account-icon-trigger i {
    font-size: 24px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    color: var(--muted-foreground);
    transition: color 0.2s, border-color 0.2s;
    height: 38px;
    width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.account-icon-trigger:hover i, .account-icon-trigger.is-open i {
    color: var(--foreground);
    border-color: var(--siq-blue);
}

.account-dropdown {
    display: none; /* Standardmäßig versteckt */
    position: absolute;
    top: calc(100% + 10px); /* 10px unterhalb des Containers */
    right: -20px;
    width: 220px;
    background-color: var(--siq-dark-lighter);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 110; /* Muss über dem Header-Inhalt liegen */
}

.account-dropdown.is-open {
    display: block;
}

.account-dropdown-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.account-dropdown-body .lang-switcher-container .button {
    width: 100%;
    justify-content: space-between;
}
.account-dropdown-body .lang-dropdown-menu {
    width: 100%;
}

/* --- About Us Page Styling --- */
#about-us .section-header {
    margin-bottom: 2rem;
}

.team-photo-placeholder {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 3rem auto;
    aspect-ratio: 16 / 7;
    background-color: var(--siq-dark-lighter);
    border: 1px dashed var(--gray-700);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-style: italic;
}
.team-photo-placeholder img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: var(--radius); 
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: left;
    line-height: 1.7;
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.founders-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 Spalte auf Mobile */
    gap: 2.5rem;
    max-width: 80rem; /* Etwas mehr Platz für 4 Karten */
    margin: auto;
}

@media (min-width: 640px) { /* breitere Handys / kleine Tablets */
    .founders-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
    }
}

@media (min-width: 1200px) { /* breite Desktops */
    .founders-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 Spalten */
    }
}

.founder-card {
    text-align: center;
}

.founder-photo-placeholder {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    background-color: var(--gray-800);
    border: 2px solid var(--gray-700);
    overflow: hidden;
}
.founder-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 0.25rem 0;
}

.founder-card .founder-title {
    color: var(--siq-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-card .founder-bio {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.founder-card .founder-email {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.founder-card .founder-email a {
    color: var(--muted-foreground);
    text-decoration: none;
    border-bottom: 1px dotted var(--gray-700);
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.founder-card .founder-email a:hover {
    color: var(--siq-blue);
    border-bottom-color: var(--siq-blue);
}

.general-contact-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-800);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.general-contact-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 1rem 0;
}

.general-contact-section p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.general-contact-section .general-email {
    margin-top: 1.5rem;
}

.general-contact-section .general-email a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--siq-dark);
    border: 1px solid var(--gray-700);
    border-radius: 9999px; /* Pill-Form */
    color: var(--foreground);
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.general-contact-section .general-email a:hover {
    background-color: var(--gray-800);
    border-color: var(--siq-blue);
}
/* --- Stats Section --- */
.stats-section { background-color: var(--siq-dark); }
.stats-grid {display: grid; gap: 1.25rem; grid-template-columns: 1fr; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat-card { padding: 1.75rem; text-align: center; border: 1px solid var(--gray-800); }
.stat-number { display: inline-flex; align-items: baseline; gap: 0.25rem; font-weight: 900; font-size: 3rem; letter-spacing: -0.02em; line-height: 1; }
.stat-number .count { background: linear-gradient(to right, var(--siq-orange), var(--siq-red), var(--siq-blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-number .suffix { color: var(--foreground); opacity: 0.9; }
.stat-label { margin-top: 0.5rem; color: var(--muted-foreground); font-weight: 500; }
/* --- Legal Pages Styling (Imprint, ToS, Privacy) --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.7;
    color: var(--muted-foreground);
    background-color: var(--siq-dark-lighter);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-content .last-updated {
    text-align: center;
    font-style: italic;
    color: var(--gray-500);
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.legal-content h1 {
    color: var(--foreground);
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.legal-content h2 {
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    color: var(--gray-300);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.legal-content p {
    margin: 0;
    padding: 0;
}

.legal-content ul {
    list-style-type: disc; 
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content code {
    background-color: var(--siq-dark);
    padding: 0.2em 0.4em;
    margin: 0 0.1em;
    border-radius: 0.25rem;
    font-family: monospace;
    color: var(--siq-orange);
}

/* --- FAQ Section --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: rgba(255, 255, 255, 0.05); /* Behält den Glass-Panel-Look bei */
    transition: background-color 0.2s ease;
}

.faq-item[open] {
    background-color: rgba(102, 155, 188, 0.1); /* Leichte Akzentfarbe im offenen Zustand */
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none; /* Entfernt den Standard-Pfeil */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    text-align: left; /* Stellt sicher, dass der Text linksbündig ist */
}

.faq-question::-webkit-details-marker {
    display: none; /* Entfernt den Standard-Pfeil in Chrome/Safari */
}

.faq-question .chevron {
    transition: transform 0.3s ease;
    color: var(--muted-foreground);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question .chevron {
    transform: rotate(180deg);
    color: var(--siq-blue);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    text-align: left;
}

.faq-answer p {
    margin: 0;
}

.faq-answer strong {
    color: var(--gray-300);
}

/* --- Newsletter CTA Section --- */
#newsletter-cta {
    background-color: var(--siq-dark);
}

.newsletter-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .newsletter-content {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 0.5rem 0;
}

.newsletter-text p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form-wrapper {
    flex: 1;
    width: 100%;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .newsletter-form {
        flex-direction: row;
        gap: 0.5rem;
    }
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    background-color: var(--siq-dark);
    border: 1px solid var(--gray-700);
    color: var(--foreground);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    min-width: 0; /* Wichtig für Flexbox in einigen Browsern */
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--siq-orange);
    box-shadow: 0 0 0 2px rgba(219, 124, 38, 0.3);
}

.newsletter-form button {
    white-space: nowrap; /* Verhindert, dass der Button-Text umbricht */
}

.newsletter-message {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    min-height: 1.25em; /* Verhindert Layout-Sprünge */
    text-align: center;
}

.newsletter-message.success {
    color: var(--green-500);
}

.newsletter-message.error {
    color: var(--siq-red);
}