/* ============================================================
   VEMARO – DESIGN SYSTEM 2026
   Autor: Leard Mucolli
   Helles Design-System mit Premium-Glassmorphismus,
   Farbverlauf-Rahmen, Mikro-Interaktionen & Scroll-Enthüllung
   ============================================================ */

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

:root {
    /* ── Farbpalette ── */
    --bg-deep: #020203;
    --bg: #050506;
    --bg-elevated: #0a0a0c;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #EDEDEF;
    --text-secondary: #8A8F98;
    --text-subtle: rgba(255, 255, 255, 0.60);
    --accent-rgb: 59, 130, 246;
    --accent: rgb(var(--accent-rgb));
    --accent-bright: #60a5fa;
    --accent-glow: rgba(var(--accent-rgb), 0.25);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.10);
    --border-accent: rgba(var(--accent-rgb), 0.25);

    /* ── Glassmorphismus (Dunkelmodus) ── */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.07);
    --glass-blur: 16px;
    --glass-blur-heavy: 24px;
    --glass-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 0, 0, 0.2);
    --glass-shadow-lg: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(var(--accent-rgb), 0.1);

    /* ── Radien ── */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* ── Abstände ── */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-2xl: 120px;

    /* ── Typografie (clamp für fließende Skalierung) ── */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --fs-h1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --fs-h2: clamp(1.8rem, 3vw + 0.5rem, 2.75rem);
    --fs-h3: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
    --fs-body: clamp(0.95rem, 0.5vw + 0.8rem, 1.125rem);
    --fs-small: clamp(0.8rem, 0.3vw + 0.7rem, 0.88rem);
    --fw-heading: 700;
    --fw-subheading: 600;
    --fw-body: 400;
    --lh-body: 1.7;

    /* ── Übergänge ── */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg);
    font-size: var(--fs-body);
    font-weight: var(--fw-body);
    line-height: var(--lh-body);
    overflow-x: clip;
    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;
}

/* ============================================================
   ANIMATED MESH BACKGROUND (Linear / Modern Deep Space)
   ============================================================ */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: var(--bg-deep);
    overflow: hidden;
    background-image: radial-gradient(ellipse at top, #0a0a0f 0%, #050506 50%, #020203 100%);
}

/* Subtiles Rauschen/Körnungs-Textur-Overlay via SVG-Filter */
.mesh-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
}

/* Gitter-Overlay für technische Präzision */
.mesh-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.02;
    background-size: 64px 64px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    pointer-events: none;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    animation: blobFloat 25s ease-in-out infinite;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 900px;
    height: 1400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -20%;
    left: 15%;
    filter: blur(150px);
    opacity: 0.25;
    animation-duration: 28s;
}

.blob-2 {
    width: 600px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    top: 25%;
    left: -10%;
    filter: blur(120px);
    opacity: 0.15;
    animation-duration: 32s;
    animation-delay: -5s;
}

.blob-3 {
    width: 500px;
    height: 700px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    filter: blur(100px);
    opacity: 0.12;
    animation-duration: 36s;
    animation-delay: -10s;
}

.blob-4 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    bottom: -15%;
    left: 20%;
    filter: blur(130px);
    opacity: 0.10;
    animation-duration: 30s;
    animation-delay: -15s;
}

.blob-5 {
    display: none;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 40px) rotate(180deg);
    }
}

/* ============================================================
   GLASS CARD BASE (Glassmorphism + Gradient Borders)
   ============================================================ */
.glass-card {
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

/* Pseudo-Element für Farbverlauf-Rahmen */
.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.01)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    transition: background var(--transition-smooth);
}

/* Maus-verfolgendes Scheinwerfer-Glühen */
.glass-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
        300px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
        rgba(var(--accent-rgb), 0.12),
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-lg);
    border-color: rgba(var(--accent-rgb), 0.2);
}

.glass-card:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(var(--accent-rgb), 0.4),
        rgba(var(--accent-rgb), 0.05)
    );
}

.glass-card:hover::after {
    opacity: 1;
}

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

/* ============================================================
   FLOATING NAVIGATION – Clean Premium Glass
   ============================================================ */
.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: 22px;
    transition: all var(--transition-smooth);
}

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

/* Stärker beim Scrollen */
.glass-nav.scrolled::before {
    background: rgba(5, 5, 6, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    gap: 16px;
}

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

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

.nav-logo-img {
    height: 74px;
    width: auto;
    display: block;
    padding: 6px 16px;
    margin: -14px 0;
    border-radius: 14px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(var(--accent-rgb), 0.45));
    opacity: 1;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity var(--transition-fast), filter var(--transition-fast);
}

.footer-logo-img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(var(--accent-rgb), 0.3));
}

/* ── Navigations-Links ── */
.nav-links {
    display: flex;
    gap: 2px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s var(--ease-reveal);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* ── CTA-Button ── */
.nav-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: 
        0 0 0 1px rgba(var(--accent-rgb), 0.4), 
        0 2px 8px rgba(var(--accent-rgb), 0.2), 
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: skewX(-25deg);
    transition: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        left: -75%;
    }
    50% {
        left: 125%;
    }
}

.nav-cta:hover {
    transform: translateY(-1px);
    background: var(--accent-bright);
    box-shadow: 
        0 0 0 1px rgba(var(--accent-rgb), 0.5), 
        0 4px 14px rgba(var(--accent-rgb), 0.3), 
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

/* ── Mobiler Menü-Umschalter ── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

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

/* Hero treibende Hintergrundelemente für Parallaxe-Tiefe */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    will-change: transform;
}

.hero::before {
    width: 400px;
    height: 400px;
    background: rgba(var(--accent-rgb), 0.15);
    top: 10%;
    right: 5%;
    opacity: 0.1;
    animation: heroDrift1 25s ease-in-out infinite;
}

.hero::after {
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.12);
    bottom: 15%;
    left: 8%;
    opacity: 0.08;
    animation: heroDrift2 30s ease-in-out infinite;
}

@keyframes heroDrift1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, 30px); }
    66% { transform: translate(30px, -20px); }
}

@keyframes heroDrift2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -25px); }
    66% { transform: translate(-25px, 35px); }
}

.hero-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 28px;
}

.badge-dot {
    display: none;
    width: 8px;
    height: 8px;
    background: var(--accent);
    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-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-weight: var(--fw-heading);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.title-accent {
    background: linear-gradient(to right, var(--accent), var(--accent-bright), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero-description {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: var(--lh-body);
    font-weight: 300;
}

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

/* ============================================================
   BUTTONS (Linear Accent + Premium Shimmer)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 1.02rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 
        0 0 0 1px rgba(var(--accent-rgb), 0.5), 
        0 4px 12px rgba(var(--accent-rgb), 0.3), 
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

/* Schimmernder Glanz-Effekt beim Hovern */
.btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: skewX(-25deg);
    animation: btnShimmer 4s ease-in-out infinite;
}

@keyframes btnShimmer {
    0%, 100% { left: -75%; }
    50% { left: 125%; }
}

.btn-primary:hover {
    background: var(--accent-bright);
    box-shadow: 
        0 0 0 1px rgba(var(--accent-rgb), 0.6), 
        0 6px 20px rgba(var(--accent-rgb), 0.4), 
        inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.02);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-primary);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.06), 
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1), 
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.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(--border);
}

.stat {
    text-align: center;
}

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

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

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

/* ============================================================
   SECTION STYLES (General)
   ============================================================ */
.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(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 999px;
    font-size: var(--fs-small);
    font-weight: var(--fw-subheading);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-heading);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--lh-body);
    font-weight: 300;
}

/* ============================================================
   SERVICES SLIDER
   ============================================================ */

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

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

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

.slide-nav-arrow {
    display: none;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    font-size: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slide-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

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

.slide-nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
    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(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

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

.slide-tab.active {
    background: rgba(var(--accent-rgb), 0.15);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}

/* 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;
    touch-action: pan-y;
}

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

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

/* Indigo-Farbton-Overlay auf Bildern */
.slide-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.03));
    pointer-events: none;
}

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

/* Folien-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(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.03));
    border-radius: var(--radius-md);
}

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

.slide-content h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: var(--fw-heading);
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

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

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#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(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.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.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-hover);
}

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

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

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

/* ============================================================
   CONTACT FORM
   ============================================================ */
.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(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: #0f0f12;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.file-drop-area {
    border: 2px dashed rgba(var(--accent-rgb), 0.3);
    border-radius: var(--radius-md);
    background: rgba(var(--accent-rgb), 0.02);
    padding: 36px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.file-drop-area:hover, .file-drop-area.dragover {
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.08);
}

.file-drop-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    color: #ffffff;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.25);
}

.file-drop-icon svg {
    width: 26px;
    height: 26px;
}

.file-drop-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.file-drop-browse {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color var(--transition-fast);
}

.file-drop-area:hover .file-drop-browse {
    text-decoration-color: var(--accent-bright);
}

.file-drop-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
}

.file-input-native {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.file-chip {
    margin-top: 12px;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.file-chip-main {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.upload-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.upload-progress-track {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.upload-progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transition: width var(--transition-fast);
}

.upload-progress-text {
    min-width: 36px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: right;
}

.file-icon {
    width: 34px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.file-icon.is-pdf {
    background: linear-gradient(135deg, #b42318, #7a271a);
}

.file-icon.is-png {
    background: linear-gradient(135deg, #175cd3, #1849a9);
}

.file-icon.is-img {
    background: linear-gradient(135deg, #0f766e, #115e59);
}

.file-icon.is-file {
    background: linear-gradient(135deg, #475467, #344054);
}

.file-name {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(50vw, 300px);
}

.file-remove-btn {
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin-left: auto;
}

.file-remove-btn:hover {
    background: #ef4444;
    color: #ffffff;
}

.file-remove-btn svg {
    width: 16px;
    height: 16px;
}

.form-group input[type="file"]::file-selector-button {
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    background: var(--accent);
    color: #ffffff;
    border-radius: 6px;
    padding: 8px 12px;
    margin-right: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.2);
}

.form-group input[type="file"]::file-selector-button:hover {
    transform: translateY(-1px);
    background: var(--accent-bright);
    box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.3);
}

.form-group input[type="file"]::-webkit-file-upload-button {
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    background: var(--accent);
    color: #ffffff;
    border-radius: 6px;
    padding: 8px 12px;
    margin-right: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.2);
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
    transform: translateY(-1px);
    background: var(--accent-bright);
    box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #121217;
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.25);
}

.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='%238A8F98' 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-Zustimmungs-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(--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.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

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

.checkbox-container input:checked~.checkmark {
    background: var(--accent);
    border-color: var(--accent);
    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(--text-secondary);
    margin-bottom: 24px;
    margin-top: -8px;
}

/* --- Kontakt-Info-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: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    text-align: center;
}

.contact-info-item:hover {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    transform: translateY(-5px);
    border-color: rgba(var(--accent-rgb), 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 8px 16px rgba(var(--accent-rgb), 0.3);
}

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

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

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

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

/* ============================================================
   CAREER PAGE
   ============================================================ */
.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.career-about-card {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.career-about-card .section-title {
    margin-bottom: 14px;
}

.career-about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 760px;
}

.job-card {
    padding: 0;
    align-self: start;
}

.job-card-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.job-toggle {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    padding: 0;
}

.job-toggle-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.job-toggle-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.job-toggle-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(var(--accent-rgb), 0.08);
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.job-card.is-open .job-toggle-icon {
    transform: rotate(45deg);
    background: rgba(var(--accent-rgb), 0.2);
}

.job-ref {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.job-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.job-details {
    display: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.job-card.is-open .job-details {
    display: block;
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.job-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.job-meta span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
}

.job-types {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.job-types strong {
    color: var(--text-primary);
}

.job-detail-block {
    margin-bottom: 16px;
}

.job-detail-block h4 {
    font-size: 0.92rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.job-list {
    margin-left: 18px;
    color: var(--text-secondary);
    list-style-type: disc;
}

.job-list li {
    margin-bottom: 4px;
    line-height: 1.55;
}

.jobs-empty {
    padding: 28px;
    text-align: center;
    color: var(--text-secondary);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
}

.application-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.application-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: -10px;
}

.application-note a {
    color: var(--accent);
    font-weight: 600;
}

.form-feedback {
    min-height: 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-feedback.is-error {
    color: #f87171;
}

.form-feedback.is-success {
    color: #34d399;
}

.thanks-card {
    max-width: 760px;
    margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.glass-footer {
    background: var(--bg-deep);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 24px;
    margin-top: var(--space-lg);
}

.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;
}

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

.footer-creator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.footer-creator:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.footer-creator-logo {
    height: 20px;
    width: auto;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 999px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.footer-creator:hover .footer-creator-logo {
    opacity: 0.95;
}

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

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

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-reveal);
}

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

.footer-links a:hover::after {
    transform: scaleX(1);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.glass-card {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s var(--ease-reveal),
        transform 0.7s var(--ease-reveal),
        box-shadow var(--transition-smooth);
}

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

/* Gestaffelte Verzögerung für Listen-Elemente */
.glass-card:nth-child(2) { transition-delay: 0.1s; }
.glass-card:nth-child(3) { transition-delay: 0.2s; }
.glass-card:nth-child(4) { transition-delay: 0.3s; }
.glass-card:nth-child(5) { transition-delay: 0.4s; }

/* ============================================================
   LEGAL PAGES (Impressum + Datenschutz) – inline style overrides
   ============================================================ */
.about-content h2 {
    color: var(--accent);
}

.about-content h3 {
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content a {
    color: var(--accent);
    transition: color var(--transition-fast);
}

.about-content a:hover {
    color: var(--accent-bright);
}

.about-content ul {
    color: var(--text-secondary);
}

.about-content strong {
    color: var(--text-primary);
}

/* ============================================================
   RESPONSIVE – Mobile First Approach
   Breakpoints: 480px, 768px, 1024px, 1280px
   ============================================================ */

/* ── Großer Desktop (max 1280px) ── */
@media (max-width: 1280px) {
    .section-container {
        max-width: 1000px;
    }
}

/* ── Tablet / Kleiner Desktop (max 1024px) ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mesh-blob {
        display: none !important;
        animation: none !important;
        opacity: 0 !important;
    }

    .mesh-bg {
        background: var(--bg) !important;
    }

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

    .hero::before,
    .hero::after {
        display: none;
    }
}

/* ── Tablet (max 768px) ── */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mobile-toggle {
        display: flex;
    }

    /* Einblendbares mobiles Menü */
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: rgba(5, 5, 6, 0.96);
        backdrop-filter: blur(24px) saturate(1.4);
        -webkit-backdrop-filter: blur(24px) saturate(1.4);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        padding: 80px 24px 32px;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: slideInRight 0.35s var(--ease-reveal) forwards;
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .nav-links.open .nav-link {
        padding: 14px 20px;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-links.open .nav-link::after {
        bottom: 10px;
        left: 20px;
        right: 20px;
    }

    .about-card {
        padding: 60px 32px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 20px;
    }

    /* Mobile Formular-Fixes */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 32px 20px;
        max-width: 100%;
    }

    .file-upload-row {
        flex-direction: column;
        align-items: stretch;
    }

    .file-select-btn {
        width: 100%;
        min-width: unset;
    }

    .upload-progress-wrap {
        width: 100%;
    }

    .upload-progress-track {
        width: 100%;
        flex: 1;
    }

    /* ── Mobiles Slider-Redesign ── */
    .slide-nav-wrapper {
        padding: 16px 16px 0 !important;
        gap: 0;
    }

    .slide-nav-arrow {
        display: none !important;
    }

    .slide-nav {
        width: 100%;
        gap: 4px;
        padding: 5px 6px;
        border-radius: 16px;
        justify-content: stretch;
    }

    .slide-tab {
        flex: 1;
        padding: 10px 8px;
        font-size: 0.72rem;
        text-align: center;
        border-radius: 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }

    .slide {
        flex-direction: column;
        padding: 16px;
        gap: 0;
    }

    .slide-img {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 16px 16px 0 0;
    }

    .slide-content {
        width: 100%;
        padding: 20px 4px 8px;
    }

    .slide-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .slide-icon {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16/9;
    }

    /* ── Mobile Footer Redesign ── */
    .glass-footer {
        padding: 32px 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo-img {
        height: 36px;
    }

    .footer-copy {
        font-size: 0.8rem;
        order: 3;
        opacity: 0.7;
    }

    .footer-creator {
        order: 2;
    }

    .footer-links {
        order: 1;
        gap: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        width: 100%;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.82rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ── Phone (max 480px) ── */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 32px 16px;
    }

    #leistungen-hero {
        padding-top: 130px;
    }

    #leistungen-hero .hero-title {
        line-height: 1.24;
        padding-top: 2px;
    }

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

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

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

    .about-card {
        padding: 32px 16px;
    }

    .contact-card {
        padding: 24px 14px;
        max-width: 100%;
    }

    .upload-progress-track {
        width: 120px;
    }

    .file-name {
        max-width: 150px;
    }

    .section {
        padding: 40px 14px;
    }

    .nav-container {
        padding: 8px 12px;
    }

    .hero {
        padding: 100px 14px 48px;
    }

    .slide-tab {
        font-size: 0.68rem;
        padding: 8px 6px;
    }

    .slide {
        padding: 12px;
    }

    .slide-content {
        padding: 16px 2px 4px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .glass-footer {
        padding: 24px 14px;
    }
}