/**
 * Autor: Leard Mucolli
 * Version: 1.0
 * Beschreibung: Haupt-Stylesheet (CSS) für die Website, einschließlich Design-System und Responsive Layout.
 */
/* ============================================================
   SANOVA SERVICES – LIQUID GLASS DESIGN SYSTEM
   ============================================================ */

/* --- Reset & Basis --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-bg-hover: rgba(255, 255, 255, 0.18);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-border-subtle: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --glass-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --glass-blur: 24px;
    --glass-blur-heavy: 40px;

    --color-primary: #2b6cb0;
    --color-primary-light: #4da8da;
    --color-primary-dark: #1a365d;
    --color-accent: #3182ce;
    --color-text: #1a202c;
    --color-text-secondary: #4a5568;
    --color-text-light: #a0aec0;
    --color-white: #ffffff;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: clip;
    /* Verhindert Hängenbleiben bei Safari (besser als hidden) */
    min-height: 100vh;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Animierter Netz-Farbverlauf Hintergrund --- */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 30%, #e0f2fe 60%, #f0f9ff 100%);
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobFloat 20s ease-in-out infinite;
    will-change: transform;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #bfdbfe, #93c5fd);
    top: -10%;
    left: -5%;
    animation-duration: 18s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #bfdbfe, #60a5fa);
    top: 20%;
    right: -8%;
    animation-duration: 22s;
    animation-delay: -4s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #a5d8ff, #4da8da);
    bottom: 10%;
    left: 15%;
    animation-duration: 25s;
    animation-delay: -8s;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #c3dafe, #a3bffa);
    bottom: -5%;
    right: 20%;
    animation-duration: 20s;
    animation-delay: -12s;
}

.blob-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #bee3f8, #90cdf4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 28s;
    animation-delay: -6s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(60px, -40px) scale(1.05);
    }

    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }

    75% {
        transform: translate(-50px, -20px) scale(1.08);
    }
}

/* --- 3D Wasser Canvas --- */
.water-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* --- Glas-Karten-Basis --- */
.glass-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow:
        var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow:
        var(--glass-shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.glass-nav {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    width: calc(100% - 32px);
    max-width: 1200px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
}

.glass-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    border: 1px solid var(--glass-border);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all var(--transition-smooth);
    pointer-events: none;
}

.glass-nav.scrolled::before {
    background: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo-img {
    height: 64px;
    width: auto;
    display: block;
    margin: -12px 0;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 12px rgba(26, 54, 93, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.4);
}

/* Mobiler Schalter (Toggle) */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    position: absolute;
    left: 8px;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-toggle span:nth-child(1) {
    top: 13px;
}

.mobile-toggle span:nth-child(2) {
    top: 19px;
}

.mobile-toggle span:nth-child(3) {
    top: 25px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

/* ============================================================
   HERO-BEREICH
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
}

.hero-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-card {
    padding: 56px 48px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(43, 108, 176, 0.08);
    border: 1px solid rgba(43, 108, 176, 0.15);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--color-text);
}

.title-accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* --- Schaltflächen (Buttons) --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 54, 93, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Statistiken --- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border-subtle);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--glass-border-subtle);
}

/* ============================================================
   BEREICHE (Allgemein)
   ============================================================ */
.section {
    padding: 100px 24px;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(43, 108, 176, 0.08);
    border: 1px solid rgba(43, 108, 176, 0.15);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   LEISTUNGEN-SLIDER
   ============================================================ */

/* Tab-Navigation */
.slide-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.slide-nav {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-subtle);
    border-radius: var(--radius-lg);
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
}

.slide-nav::-webkit-scrollbar {
    display: none;
}

.slide-nav-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(43, 108, 176, 0.25);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-primary-dark);
    font-size: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.slide-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--color-primary-light);
    box-shadow: 0 4px 16px rgba(43, 108, 176, 0.15);
    transform: scale(1.05);
}

.slide-nav-arrow:active {
    transform: scale(0.95);
}

/* SVG-Pfeile (Chevron) innerhalb der Buttons */
.slide-nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary-dark);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slide-tab {
    flex-shrink: 0;
    padding: 10px 18px;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-text-secondary);
    font-family: var(--font-family);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.slide-tab:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.15);
}

.slide-tab.active {
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-primary-dark);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Slider-Container */
.slider-container {
    overflow: hidden;
    padding: 0;
    position: relative;
}

.slide-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Einzelner Slide */
.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

/* Slide-Bild */
.slide-img {
    flex: 0 0 45%;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide-Icon (für Leistungen ohne Bilder) */
.slide-icon {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.06), rgba(77, 168, 218, 0.04));
    border-radius: var(--radius-md);
}

/* Slide-Textinhalt */
.slide-content {
    flex: 1;
    min-width: 0;
}

.slide-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.slide-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
}

/* ============================================================
   ÜBER UNS BEREICH
   ============================================================ */
#ueber-uns {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-card {
    padding: 120px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    overflow-wrap: anywhere;
    word-break: break-space;
    hyphens: auto;
}

.about-content a {
    overflow-wrap: anywhere;
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border-subtle);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 2px;
}

.feature span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ============================================================
   KONTAKTFORMULAR
   ============================================================ */
.contact-card {
    padding: 48px;
    max-width: 680px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border-subtle);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary-light);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* --- Formular-Einwilligung (Checkbox) & Hinweise --- */
.form-consent {
    margin-top: 4px;
    margin-bottom: 16px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    user-select: none;
    gap: 12px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    top: 2px;
    flex: 0 0 18px;
    height: 18px;
    width: 18px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid var(--glass-border);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.checkbox-container:hover input~.checkmark {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--color-primary-light);
}

.checkbox-container input:checked~.checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.consent-text {
    line-height: 1.4;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    margin-top: -8px;
}

/* --- Kontaktinfo-Raster (Über uns) --- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px auto;
    width: 100%;
    max-width: 1000px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    text-align: center;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 8px 16px rgba(43, 108, 176, 0.2);
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.contact-info-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

.contact-info-value a {
    transition: color var(--transition-fast);
}

.contact-info-value a:hover {
    color: var(--color-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.glass-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid var(--glass-border-subtle);
    padding: 32px 24px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* ============================================================
   SCROLL-REVEAL (Einblend-Effekt)
   ============================================================ */
.glass-card {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow var(--transition-smooth);
}

.glass-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVES DESIGN
   ============================================================ */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        margin-top: 12px;
        background: rgba(255, 255, 255, 0.55);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(43, 108, 176, 0.25);
        border-radius: var(--radius-md);
        padding: 12px;
        box-shadow: var(--glass-shadow-lg);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 36px 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 24px 16px !important;
        width: 100%;
        overflow: hidden;
    }

    .contact-card {
        padding: 32px 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .slide {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    .slide-img,
    .slide-icon {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 1024px) {

    /* Leistungsoptimierungen für Mobil- und Tablet-Geräte */
    .mesh-blob {
        display: none !important;
        animation: none !important;
        opacity: 0 !important;
    }

    .mesh-bg {
        /* Hintergrund vereinfachen, um GPU-Speicher im mobilen Safari freizugeben */
        background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%) !important;
    }

    .glass-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: box-shadow 0.4s ease !important;
    }
}

/* ============================================================
   COOKIE-BANNER (DSGVO)
   ============================================================ */

/* Hintergrund-Overlay */
#cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#cookie-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

/* Haupt-Banner */
#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 680px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-xl);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    padding: 32px 36px;
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-banner.visible {
    bottom: 20px;
}

/* Inneres Schimmern */
#cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    pointer-events: none;
}

/* Cookie-Symbol */
.cookie-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-banner-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.cookie-banner-text {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.cookie-banner-text a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.cookie-banner-text a:hover {
    color: var(--color-primary-dark);
}

/* Button-Gruppe */
.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#cookie-accept {
    flex: 1;
    min-width: 140px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.28);
}

#cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 54, 93, 0.38);
}

#cookie-decline {
    flex: 0 0 auto;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-text-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

#cookie-decline:hover {
    background: rgba(255, 255, 255, 0.35);
    color: var(--color-text);
    transform: translateY(-1px);
}

/* Mobile Anpassungen */
@media (max-width: 480px) {
    #cookie-banner {
        padding: 24px 20px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    #cookie-accept,
    #cookie-decline {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   FORMULAR – ERFOLGS-/ FEHLERMELDUNGEN
   ============================================================ */
.form-status {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #991b1b;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.btn-loading {
    opacity: 0.75;
    pointer-events: none;
    cursor: not-allowed;
}