/* =============================================
   byjemayn – Design System v2.0
   Dark UI · Purple/Pink Gradient · Premium
   ============================================= */

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0B0B12;
    --bg-elevated: #0F0F18;
    --bg-card: #111827;
    --fg: #E5E7EB;
    --fg-muted: #9CA3AF;
    --white: #FFFFFF;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --primary: #7C3AED;
    --primary-hover: #6D28D9;
    --accent: #A78BFA;
    --purple-400: #A78BFA;
    --purple-500: #8B5CF6;
    --purple-600: #7C3AED;
    --purple-700: #6D28D9;
    --pink-500: #EC4899;
    --pink-600: #DB2777;
    --green-500: #22C55E;
    --blue-500: #3B82F6;
    --yellow-500: #EAB308;
    --orange-500: #F97316;
    --red-500: #EF4444;
    --radius: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(124,58,237,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html, body { overflow-x: hidden; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section {
    padding: 5rem 0;
    position: relative;
}
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
@media (min-width: 768px) { .section-header h2 { font-size: 2.75rem; } }
.section-header p {
    color: var(--fg-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    line-height: 1.15;
    font-weight: 700;
    color: var(--white);
}
.gradient-text {
    background: linear-gradient(135deg, var(--purple-400), var(--pink-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
}
.btn-primary {
    background: var(--purple-600);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(124,58,237,0.3);
}
.btn-primary:hover {
    background: var(--purple-700);
    box-shadow: 0 6px 20px rgba(124,58,237,0.4);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--border-hover);
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.btn-ghost {
    background: transparent;
    color: var(--fg-muted);
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
    border: none;
    cursor: pointer;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.0625rem; font-weight: 700; }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.w-full { width: 100%; }

/* === BADGE === */
.badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 9999px;
    border: 1px solid rgba(139,92,246,0.25);
    background: rgba(139,92,246,0.08);
    color: var(--purple-400);
}

/* =============================================
   HEADER
   ============================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: #0F0F12;
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
    overflow-x: clip;
}

main, .site-footer { overflow-x: clip; }
#site-header.scrolled {
    background: rgba(11,11,18,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}
@media (min-width: 768px) { .header-inner { height: 5rem; } }

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--fg);
    transition: color var(--transition);
}
.logo:hover { color: var(--primary); }
@media (min-width: 768px) { .logo { font-size: 1.375rem; } }

/* Desktop Nav */
.desktop-nav { display: none; gap: 2.5rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.desktop-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fg-muted);
    transition: color var(--transition);
    position: relative;
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a.active { color: var(--white); }

.desktop-cta { display: none; }
@media (min-width: 768px) { .desktop-cta { display: flex; align-items: center; } }

/* Mobile Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    color: var(--fg);
}
@media (min-width: 768px) { .mobile-menu-toggle { display: none; } }
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile Menu – Full dark, no blur/overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #0F0F12;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.mobile-menu-close {
    font-size: 2rem;
    color: var(--fg);
    line-height: 1;
    padding: 0.5rem;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}
.mobile-nav a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--fg);
    transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--purple-400); }
.mobile-nav .btn { margin-top: auto; }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}
@media (min-width: 768px) { .hero { padding-top: 12rem; padding-bottom: 8rem; } }

.hero-glow {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: min(800px, 100vw); height: 500px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; } }

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
@media (min-width: 768px) { .hero-text h1 { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero-text h1 { font-size: 4rem; } }

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--fg-muted);
    max-width: 36rem;
    line-height: 1.7;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }

.hero-checks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #D1D5DB;
    font-weight: 500;
}
@media (min-width: 640px) { .hero-checks { flex-direction: row; gap: 1.5rem; } }
.hero-checks li { display: flex; align-items: center; gap: 0.5rem; }
.icon-check { width: 1rem; height: 1rem; color: var(--purple-400); }

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
    width: 100%;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; width: auto; } }

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--fg-muted);
}
.avatar-stack { display: flex; }
.avatar-stack .avatar {
    width: 2rem; height: 2rem;
    border-radius: 50%;
    border: 2px solid var(--bg);
    background: #1F2937;
    overflow: hidden;
    margin-left: -0.5rem;
    flex-shrink: 0;
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.avatar-stack .avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* Hero Dashboard */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1;
}
@media (min-width: 768px) { .hero-visual { aspect-ratio: 4/3; } }
@media (min-width: 1024px) { .hero-visual { aspect-ratio: 1; margin-right: 0; } }

.dashboard-glow {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.08));
    border-radius: var(--radius-xl);
    filter: blur(20px);
}
.dashboard-card {
    position: absolute; inset: 0;
    background: rgba(17,17,24,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-hover);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}
.dashboard-header {
    height: 2.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
    background: rgba(255,255,255,0.03);
}
.dot { height: 0.75rem; width: 0.75rem; border-radius: 50%; }
.dot.red { background: rgba(239,68,68,0.5); }
.dot.yellow { background: rgba(234,179,8,0.5); }
.dot.green { background: rgba(34,197,94,0.5); }
.url-bar { margin-left: 1rem; height: 0.5rem; width: 5rem; border-radius: 9999px; background: rgba(255,255,255,0.08); }
.dashboard-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

/* Automation overlay in hero */
.hero--automation .dashboard-header,
.hero--automation .dashboard-content { display: none; }

.automation-overlay {
    position: absolute; inset: 0; z-index: 6;
    pointer-events: none;
    display: flex;
    align-items: stretch;
}
.automation-window {
    position: absolute; inset: 0;
    background: rgba(17,17,24,0.6);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(14px);
    overflow: hidden;
}
.automation-window-header { display: none; }
.automation-steps {
    position: relative;
    padding: 1.25rem;
    display: grid;
    gap: 0.6rem;
}
.automation-steps::before {
    content: '';
    position: absolute;
    left: 1.52rem; top: 1.55rem; bottom: 1.35rem;
    width: 2px;
    background: rgba(255,255,255,0.06);
}
.automation-step { display: flex; align-items: flex-start; gap: 0.7rem; }
.automation-step-dot {
    width: 0.6rem; height: 0.6rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-top: 0.25rem;
    flex: 0 0 auto;
}
.automation-step.is-active .automation-step-dot {
    background: var(--purple-500);
    box-shadow: 0 0 0 4px rgba(139,92,246,0.2), 0 0 16px rgba(139,92,246,0.3);
    animation: automationPulse 1.2s ease-in-out infinite;
}
@keyframes automationPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.automation-step-name { font-size: 0.78rem; font-weight: 700; color: var(--white); }
.automation-step-sub { margin-top: 0.1rem; font-size: 0.7rem; color: var(--fg-muted); }
.automation-progress {
    padding: 0.85rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
    display: grid; gap: 0.55rem;
}
.automation-progress-bar {
    height: 0.35rem; border-radius: 9999px;
    background: rgba(255,255,255,0.06); overflow: hidden;
}
.automation-progress-fill {
    height: 100%; width: 25%; border-radius: 9999px;
    background: linear-gradient(90deg, var(--purple-500), var(--pink-500));
    transition: width 500ms ease;
}
.automation-progress-meta { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--fg-muted); }

/* =============================================
   GLASS CARDS (Services, Why, etc.)
   ============================================= */
.glass-card {
    background: rgba(17,17,30,0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.03), transparent 60%);
    pointer-events: none;
}
.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}
.glass-card .card-icon {
    width: 3rem; height: 3rem;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.glass-card .card-icon svg { width: 1.5rem; height: 1.5rem; }
.glass-card .card-icon.purple { background: rgba(139,92,246,0.15); color: var(--purple-400); }
.glass-card .card-icon.pink { background: rgba(236,72,153,0.15); color: var(--pink-500); }
.glass-card .card-icon.blue { background: rgba(59,130,246,0.15); color: var(--blue-500); }
.glass-card .card-icon.green { background: rgba(34,197,94,0.15); color: var(--green-500); }
.glass-card .card-icon.orange { background: rgba(249,115,22,0.15); color: var(--orange-500); }
.glass-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; font-weight: 700; }
.glass-card p { color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.7; }

/* Services grid (Startseite Kernleistungen) */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================
   WHY SECTION
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-grid .glass-card.span-2 {
    grid-column: 1;
}
@media (min-width: 768px) { .why-grid .glass-card.span-2 { grid-column: span 2; } }

/* =============================================
   REFERENZEN PREVIEW (Startseite)
   ============================================= */
.referenz-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .referenz-grid { grid-template-columns: repeat(2, 1fr); } }

.referenz-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.referenz-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
}
.referenz-card-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.referenz-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.referenz-card-body {
    padding: 1.5rem;
}
.referenz-card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.referenz-card-body p {
    color: var(--fg-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}
.referenz-card-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-top: 1rem;
}
.referenz-card-tags span {
    font-size: 0.7rem; font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    background: rgba(139,92,246,0.1);
    color: var(--purple-400);
    border: 1px solid rgba(139,92,246,0.15);
}

/* =============================================
   REVIEWS
   ============================================= */
.review-section { border-top: 1px solid var(--border); }
.review-slider { position: relative; overflow: hidden; }
.review-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.review-card {
    flex-shrink: 0;
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
@media (min-width: 768px) { .review-card { width: calc(50% - 0.75rem); } }
@media (min-width: 1024px) { .review-card { width: calc(33.333% - 1rem); } }
.review-stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; }
.review-stars svg { width: 1rem; height: 1rem; color: var(--yellow-500); }
.review-text { color: var(--fg); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.5rem; }
.review-author-wrap { display: flex; align-items: center; gap: 0.75rem; }
.review-author-avatar {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.875rem; color: var(--white);
}
.review-author { font-weight: 600; color: var(--white); font-size: 0.875rem; }
.review-author-info em { display: block; font-size: 0.75rem; color: var(--fg-muted); font-style: normal; }
.review-slider-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 2rem;
}
.review-nav-btn {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--fg);
    transition: all var(--transition);
    cursor: pointer;
}
.review-nav-btn:hover { border-color: var(--border-hover); color: var(--white); }
.review-nav-btn:disabled { opacity: 0.3; cursor: default; }
.review-nav-btn svg { width: 1rem; height: 1rem; }
.review-dots { display: flex; gap: 0.5rem; }
.review-dot {
    width: 0.5rem; height: 0.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none; cursor: pointer;
    transition: all var(--transition);
}
.review-dot.active { background: var(--purple-500); transform: scale(1.3); }
.review-cta { text-align: center; margin-top: 3rem; }

/* =============================================
   FAQ
   ============================================= */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border: none;
}
.faq-question span { flex: 1; }
.faq-chevron {
    width: 1.25rem; height: 1.25rem;
    color: var(--fg-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--fg-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 768px) { .kontakt-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.kontakt-text h2 {
    font-size: 2rem; font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .kontakt-text h2 { font-size: 2.5rem; } }
.kontakt-text > p { color: var(--fg-muted); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2rem; }
.kontakt-bullets {
    display: flex; flex-direction: column; gap: 1rem;
    margin-bottom: 2rem;
}
.kontakt-bullets > div {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9375rem; color: var(--fg);
}
.green-dot {
    width: 0.5rem; height: 0.5rem;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 6px rgba(34,197,94,0.4);
    flex-shrink: 0;
}
.kontakt-alt { margin-top: 2rem; }
.kontakt-alt p { color: var(--fg-muted); font-size: 0.875rem; margin-bottom: 1rem; }

/* Form styles */
.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.kontakt-form-wrap {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
    font-size: 0.8125rem; font-weight: 600;
    color: var(--fg); letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 0.9375rem;
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* Checkbox */
.form-checkbox {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    align-items: flex-start;
}
.checkbox-box {
    width: 1.25rem; height: 1.25rem;
    border: 1px solid var(--border-hover);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    transition: all var(--transition);
    position: relative;
}
.checkbox-box.checked {
    background: var(--purple-600);
    border-color: var(--purple-600);
}
.checkbox-box.checked::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}
.form-checkbox p {
    font-size: 0.8125rem;
    color: var(--fg-muted);
    line-height: 1.5;
}
.form-checkbox p a { color: var(--purple-400); text-decoration: underline; }

/* Submit */
#submitBtn:disabled,
#wizSubmitBtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}
.success-icon {
    width: 4rem; height: 4rem;
    border-radius: 50%;
    background: rgba(34,197,94,0.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.success-icon svg { width: 2rem; height: 2rem; color: var(--green-500); }
.form-success h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--fg-muted); }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
    text-align: center;
    border-top: 1px solid var(--border);
}
.final-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(600px, 100vw); height: 400px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .final-cta h2 { font-size: 3rem; } }
.final-cta p {
    color: var(--fg-muted);
    font-size: 1.0625rem;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
@media (min-width: 640px) { .final-cta-buttons { flex-direction: row; justify-content: center; } }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    background: var(--bg);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-brand p { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: var(--fg-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col a.highlight { color: var(--purple-400); }
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--fg-muted);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { color: var(--fg-muted); transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--white); }

/* =============================================
   STICKY CTAs
   ============================================= */
.sticky-ctas {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    pointer-events: none;
}
.sticky-ctas.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sticky-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}
.sticky-btn-contact { background: var(--purple-600); }
.sticky-btn-contact:hover { background: var(--purple-700); transform: scale(1.03); }
.sticky-btn-whatsapp { background: #25D366; }
.sticky-btn-whatsapp:hover { background: #20bd5a; transform: scale(1.03); }
.sticky-btn-icon { width: 1.125rem; height: 1.125rem; }
.sticky-btn-text { display: none; }
@media (min-width: 768px) { .sticky-btn-text { display: inline; } }

/* =============================================
   LEISTUNGEN PAGE
   ============================================= */
.leistungen-hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    text-align: center;
}
@media (min-width: 768px) { .leistungen-hero { padding-top: 12rem; padding-bottom: 5rem; } }
.leistungen-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .leistungen-hero h1 { font-size: 3.5rem; } }
.leistungen-hero p { color: var(--fg-muted); font-size: 1.0625rem; max-width: 36rem; margin: 0 auto; line-height: 1.7; }

.leistung-category {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}
.leistung-category-header {
    margin-bottom: 3rem;
}
.leistung-category-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .leistung-category-header h2 { font-size: 2.25rem; } }
.leistung-category-header p { color: var(--fg-muted); font-size: 1rem; max-width: 42rem; line-height: 1.7; }

.leistung-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .leistung-items { grid-template-columns: repeat(2, 1fr); } }

.leistung-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}
.leistung-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}
.leistung-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.leistung-item h3 .li-icon {
    width: 2.25rem; height: 2.25rem;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.leistung-item h3 .li-icon svg { width: 1.125rem; height: 1.125rem; }

.leistung-detail { display: flex; flex-direction: column; gap: 1rem; }
.leistung-detail dt {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple-400);
}
.leistung-detail dd {
    color: var(--fg-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.leistung-vorteile {
    display: flex; flex-direction: column; gap: 0.5rem;
    margin-top: 0.5rem;
}
.leistung-vorteile li {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; color: var(--fg);
}
.leistung-vorteile li svg { width: 0.875rem; height: 0.875rem; color: var(--green-500); flex-shrink: 0; }

.leistung-mini-faq { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.leistung-mini-faq summary {
    font-size: 0.8125rem; font-weight: 600; color: var(--fg);
    cursor: pointer; padding: 0.5rem 0;
    list-style: none;
    display: flex; align-items: center; gap: 0.5rem;
}
.leistung-mini-faq summary::before {
    content: '▸'; color: var(--purple-400); font-size: 0.75rem;
    transition: transform var(--transition);
}
.leistung-mini-faq[open] summary::before { transform: rotate(90deg); }
.leistung-mini-faq p {
    color: var(--fg-muted); font-size: 0.8125rem;
    line-height: 1.7; padding: 0.5rem 0 0 1.125rem;
}

/* =============================================
   REFERENZEN PAGE
   ============================================= */
.referenzen-hero {
    padding-top: 10rem; padding-bottom: 4rem; text-align: center;
}
@media (min-width: 768px) { .referenzen-hero { padding-top: 12rem; padding-bottom: 5rem; } }
.referenzen-hero h1 {
    font-size: 2.5rem; font-weight: 800;
    letter-spacing: -0.03em; margin-bottom: 1rem;
}
@media (min-width: 768px) { .referenzen-hero h1 { font-size: 3.5rem; } }
.referenzen-hero p { color: var(--fg-muted); font-size: 1.0625rem; max-width: 36rem; margin: 0 auto; line-height: 1.7; }

.referenz-detail-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 3rem;
    transition: all var(--transition);
}
.referenz-detail-card:hover { border-color: var(--border-hover); }
.referenz-screenshot {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(236,72,153,0.04));
    overflow: hidden;
}
.referenz-screenshot img {
    width: 100%; height: 100%; object-fit: cover;
}
.referenz-detail-body { padding: 2rem; }
@media (min-width: 768px) { .referenz-detail-body { padding: 2.5rem; } }
.referenz-detail-body h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.referenz-detail-body p { color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1rem; }
.referenz-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.referenz-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.referenz-meta-item dt { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple-400); }
.referenz-meta-item dd { font-size: 0.9375rem; color: var(--fg); }

/* =============================================
   ÜBER MICH PAGE
   ============================================= */
.about-hero {
    padding-top: 10rem; padding-bottom: 4rem; text-align: center;
}
@media (min-width: 768px) { .about-hero { padding-top: 12rem; padding-bottom: 5rem; } }

.about-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
@media (min-width: 768px) { .about-profile { grid-template-columns: auto 1fr; gap: 4rem; } }
.about-avatar-lg {
    width: 180px; height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-hover);
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(124,58,237,0.15);
}
@media (min-width: 768px) { .about-avatar-lg { width: 220px; height: 220px; } }
.about-avatar-lg img { width: 100%; height: 100%; object-fit: cover; }
.about-bio h1 {
    font-size: 2rem; font-weight: 800;
    letter-spacing: -0.03em; margin-bottom: 1rem;
}
@media (min-width: 768px) { .about-bio h1 { font-size: 2.75rem; } }
.about-bio p {
    color: var(--fg-muted); font-size: 1.0625rem;
    line-height: 1.7; margin-bottom: 1rem;
}

.about-skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .about-skills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .about-skills-grid { grid-template-columns: repeat(3, 1fr); } }

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.about-tags span {
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid var(--border-hover);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--fg);
    background: rgba(255,255,255,0.03);
}

/* =============================================
   KONTAKT PAGE
   ============================================= */
.kontakt-hero {
    padding-top: 10rem; padding-bottom: 4rem; text-align: center;
}
@media (min-width: 768px) { .kontakt-hero { padding-top: 12rem; padding-bottom: 5rem; } }
.kontakt-hero h1 {
    font-size: 2.5rem; font-weight: 800;
    letter-spacing: -0.03em; margin-bottom: 1rem;
}
@media (min-width: 768px) { .kontakt-hero h1 { font-size: 3.5rem; } }
.kontakt-hero p { color: var(--fg-muted); font-size: 1.0625rem; max-width: 36rem; margin: 0 auto; line-height: 1.7; }

.kontakt-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) { .kontakt-info-grid { grid-template-columns: repeat(3, 1fr); } }
.kontakt-info-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: border-color var(--transition);
}
.kontakt-info-item:hover { border-color: var(--border-hover); }
.kontakt-info-item .ki-icon {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: rgba(139,92,246,0.1);
    color: var(--purple-400);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.kontakt-info-item .ki-icon svg { width: 1.125rem; height: 1.125rem; }
.kontakt-info-item h3 { font-size: 0.9375rem; margin-bottom: 0.375rem; }
.kontakt-info-item p { color: var(--fg-muted); font-size: 0.8125rem; }
.kontakt-info-item a { color: var(--purple-400); font-size: 0.875rem; }

/* =============================================
   WIZARD / PROJEKT-CHECK PAGE
   ============================================= */
.wizard-page { background: var(--bg); }
.wizard-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.25rem 2rem;
}
.wizard-container {
    width: 100%;
    max-width: 600px;
}
.wizard-progress { margin-bottom: 2.5rem; }
.wizard-progress-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
}
.purple-text { color: var(--purple-400); }
.muted-text { color: var(--fg-muted); }
.wizard-progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 9999px;
    overflow: hidden;
}
.wizard-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--purple-500), var(--pink-500));
    border-radius: 9999px;
    transition: width 0.4s ease;
}
.wizard-step {
    display: none;
}
.wizard-step.active { display: block; }
.wizard-step h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.wizard-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.wizard-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--fg);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
    width: 100%;
}
.wizard-option:hover { border-color: var(--purple-500); }
.wizard-option.selected {
    border-color: var(--purple-500);
    background: rgba(139,92,246,0.08);
}
.wizard-option-radio {
    width: 1.25rem; height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--border-hover);
    flex-shrink: 0;
    transition: all var(--transition);
    position: relative;
}
.wizard-option.selected .wizard-option-radio {
    border-color: var(--purple-500);
    background: var(--purple-600);
}
.wizard-option.selected .wizard-option-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--white);
}
.wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Assessment */
.assessment-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
}
.assessment-card h3 {
    font-size: 0.9375rem;
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--fg);
}
.assessment-grid {
    display: grid;
    gap: 0.75rem;
}
.assessment-item-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--fg-muted);
}
.assessment-item-value {
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 500;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page { background: var(--bg); }
.legal-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 8rem 1.25rem 4rem;
}
@media (min-width: 768px) { .legal-content { padding: 10rem 2rem 5rem; } }
.legal-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}
.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
}
.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}
.legal-content p {
    color: var(--fg-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.legal-content a { color: var(--purple-400); text-decoration: underline; }
.legal-content strong { color: var(--fg); }

/* =============================================
   DANKE PAGE
   ============================================= */
.danke-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.danke-inner {
    text-align: center;
    padding: 2rem;
    max-width: 480px;
}
.danke-icon {
    width: 5rem; height: 5rem;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
}
.danke-icon svg { width: 2.5rem; height: 2.5rem; color: var(--green-500); }
.danke-inner h1 {
    font-size: 1.75rem; font-weight: 800;
    margin-bottom: 1rem;
}
.danke-inner p { color: var(--fg-muted); font-size: 1rem; line-height: 1.7; }

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-fade-up {
    animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-scale-in {
    animation: scaleIn 0.8s ease 0.2s forwards;
    opacity: 0;
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 1rem; height: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   PROCESS SECTION (Scroll-based)
   ============================================= */
.process { padding: 0; }
.process-scroll-container { height: 300vh; position: relative; }

@media (max-width: 1023px) {
    .process { padding: 5rem 0 !important; }
    .process-scroll-container { height: auto !important; position: static !important; }
    .process-sticky { position: static !important; height: auto !important; }
    .process-layout { flex-direction: column !important; gap: 2rem !important; }
    .process-left { position: static !important; width: 100% !important; text-align: center; }
    .process-left .animate-on-scroll { display: flex; flex-direction: column; align-items: center; }
    .process-right { position: static !important; width: 100% !important; height: auto !important; overflow: visible !important; }
    .process-cards-track { display: flex !important; flex-direction: column !important; gap: 1rem !important; transform: none !important; }
    .process-card { position: static !important; width: 100% !important; flex-shrink: 1 !important; opacity: 1 !important; transform: none !important; }
    .process-card-inner { padding: 1.25rem !important; }
    .process-card-dot, .process-bg-glow, .process-nav, .process-progress-footer { display: none !important; }
}

.process-sticky {
    position: sticky; top: 0;
    height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.process-layout {
    display: flex; flex-direction: column;
    gap: 2rem; height: 100%; padding: 4rem 0;
}
@media (min-width: 1024px) { .process-layout { flex-direction: row; gap: 4rem; } }

.process-left {
    display: flex; flex-direction: column;
    justify-content: center; position: relative; z-index: 10;
}
@media (min-width: 1024px) { .process-left { width: 50%; } }

.process-title {
    font-size: 2.25rem; font-weight: 800;
    letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .process-title { font-size: 3rem; } }
@media (min-width: 1024px) { .process-title { font-size: 3.5rem; } }

.process-subtitle {
    color: var(--fg-muted);
    font-size: 1.0625rem; max-width: 28rem;
    line-height: 1.7; margin-bottom: 3rem;
}

.process-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.process-nav-item { display: flex; align-items: center; gap: 1rem; cursor: pointer; }
.process-line {
    position: relative; width: 3rem; height: 3px;
    background: rgba(255,255,255,0.08); border-radius: 9999px; overflow: hidden;
}
.process-line-fill {
    position: absolute; inset: 0; border-radius: 9999px;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
}
.process-nav-item.active .process-line-fill { transform: scaleX(1); }

.blue-cyan { background: linear-gradient(to right, #3B82F6, #06B6D4); }
.yellow-orange { background: linear-gradient(to right, #EAB308, #F97316); }
.purple-pink { background: linear-gradient(to right, #8B5CF6, #EC4899); }
.green-emerald { background: linear-gradient(to right, #22C55E, #10B981); }
.red-pink { background: linear-gradient(to right, #EF4444, #EC4899); }

.process-num {
    font-size: 0.75rem; font-family: monospace; font-weight: 700;
    color: rgba(255,255,255,0.25); transition: color var(--transition);
}
.process-nav-item.active .process-num { color: var(--white); }
.process-nav-title {
    font-size: 0.875rem; font-weight: 500;
    color: rgba(255,255,255,0.35); transition: all var(--transition);
}
.process-nav-item.active .process-nav-title { color: var(--white); }
.process-active-dot {
    width: 0.5rem; height: 0.5rem; border-radius: 50%;
    margin-left: auto; opacity: 0; transform: scale(0);
    transition: all var(--transition);
}
.process-nav-item.active .process-active-dot { opacity: 1; transform: scale(1); }
.blue-cyan-dot { background: linear-gradient(to right, #3B82F6, #06B6D4); }
.yellow-orange-dot { background: linear-gradient(to right, #EAB308, #F97316); }
.purple-pink-dot { background: linear-gradient(to right, #8B5CF6, #EC4899); }
.green-emerald-dot { background: linear-gradient(to right, #22C55E, #10B981); }
.red-pink-dot { background: linear-gradient(to right, #EF4444, #EC4899); }

.process-progress-footer {
    margin-top: 2rem; padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.process-progress-labels {
    display: flex; justify-content: space-between;
    font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 0.5rem;
}
.progress-bar {
    height: 0.375rem; width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 9999px; overflow: hidden;
}
.progress-fill {
    height: 100%; border-radius: 9999px;
    background: linear-gradient(to right, var(--purple-500), var(--pink-500));
    transition: width 0.5s ease;
}
.process-main-bar {
    background: linear-gradient(to right, var(--purple-500), var(--pink-500));
    transition: width 0.5s ease;
}

.process-right {
    display: flex; align-items: center;
    justify-content: flex-start; overflow: hidden;
}
@media (min-width: 1024px) { .process-right { width: 50%; } }
.process-cards-track {
    display: flex; gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.process-card {
    flex-shrink: 0; width: 320px;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    opacity: 0.5; transform: scale(0.92);
}
@media (min-width: 768px) { .process-card { width: 380px; } }
@media (min-width: 1024px) { .process-card { width: 420px; } }
.process-card.active { opacity: 1; transform: scale(1); }
.process-card.past { opacity: 0.25; }
.process-card-inner {
    background: linear-gradient(135deg, #1a1a2e, #0f0f18);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative; overflow: hidden;
}
.process-card-icon {
    width: 3rem; height: 3rem;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.process-card-icon svg { width: 1.25rem; height: 1.25rem; color: var(--white); }
.process-card-number {
    font-size: 0.7rem; font-family: monospace;
    font-weight: 700; color: rgba(255,255,255,0.2);
    margin-bottom: 0.5rem;
}
.process-card-inner h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.process-card-inner p { color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.7; }
.process-card-glow {
    position: absolute; inset: 0;
    opacity: 0.06; pointer-events: none;
}
.process-card-dot {
    width: 0.75rem; height: 0.75rem;
    border-radius: 50%;
    margin: 1rem auto 0;
}

/* Card color variants */
.blue-cyan-card { border-color: rgba(59,130,246,0.15); }
.yellow-orange-card { border-color: rgba(234,179,8,0.15); }
.purple-pink-card { border-color: rgba(139,92,246,0.15); }
.green-emerald-card { border-color: rgba(34,197,94,0.15); }
.red-pink-card { border-color: rgba(239,68,68,0.15); }

.blue-cyan-bg { background: rgba(59,130,246,0.15); }
.yellow-orange-bg { background: rgba(234,179,8,0.15); }
.purple-pink-bg { background: rgba(139,92,246,0.15); }
.green-emerald-bg { background: rgba(34,197,94,0.15); }
.red-pink-bg { background: rgba(239,68,68,0.15); }

.blue-cyan-glow { background: radial-gradient(circle at center, rgba(59,130,246,0.3), transparent 70%); }
.yellow-orange-glow { background: radial-gradient(circle at center, rgba(234,179,8,0.3), transparent 70%); }
.purple-pink-glow { background: radial-gradient(circle at center, rgba(139,92,246,0.3), transparent 70%); }
.green-emerald-glow { background: radial-gradient(circle at center, rgba(34,197,94,0.3), transparent 70%); }
.red-pink-glow { background: radial-gradient(circle at center, rgba(239,68,68,0.3), transparent 70%); }

.process-bg-glow {
    position: absolute; width: 400px; height: 400px;
    border-radius: 50%; pointer-events: none;
    transition: background 0.5s ease;
}
.process-bg-glow-left { left: 0; top: 30%; }
.process-bg-glow-right { right: 0; bottom: 20%; }

/* =============================================
   SYSTEMS GRID (Startseite)
   ============================================= */
.systems { border-top: 1px solid var(--border); }
.systems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .systems-grid { grid-template-columns: repeat(12, 1fr); } }
.systems-card {
    background: #111118;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 280px;
    transition: all var(--transition);
}
.systems-card:hover { border-color: var(--border-hover); }

.systems-card-wide { grid-column: span 1; }
.systems-card-narrow { grid-column: span 1; }
@media (min-width: 768px) {
    .systems-card-wide:nth-child(1) { grid-column: span 7; }
    .systems-card-narrow:nth-child(2) { grid-column: span 5; }
    .systems-card-narrow:nth-child(3) { grid-column: span 6; }
    .systems-card-wide:nth-child(4) { grid-column: span 6; }
}
@media (min-width: 1024px) {
    .systems-card-wide:nth-child(1) { grid-column: span 8; }
    .systems-card-narrow:nth-child(2) { grid-column: span 4; }
    .systems-card-narrow:nth-child(3) { grid-column: span 4; }
    .systems-card-wide:nth-child(4) { grid-column: span 8; }
}

.systems-card:nth-child(1) {
    background: linear-gradient(135deg, #1c1c2e, #0f0f16);
    padding: 2rem;
    display: flex; flex-direction: column; gap: 1.5rem;
}
.systems-card-text { padding: 2rem; position: relative; z-index: 2; }
.systems-card:nth-child(1) .systems-card-text { padding: 0; }

.systems-icon {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.systems-icon svg { width: 1.25rem; height: 1.25rem; }
.systems-icon.blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.systems-icon.purple { background: rgba(139,92,246,0.15); color: var(--purple-400); }
.systems-icon.orange { background: rgba(249,115,22,0.15); color: #fb923c; }
.systems-icon.green-icon { background: rgba(34,197,94,0.15); color: #4ade80; }

.systems-card h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
.systems-card p { color: var(--fg-muted); max-width: 28rem; }

/* Browser mockup */
.systems-visual-browser {
    position: relative;
    width: 100%; height: auto; aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 1rem; overflow: hidden;
}
@media (min-width: 1024px) {
    .systems-card:nth-child(1) { flex-direction: row; align-items: stretch; gap: 2rem; }
    .systems-card:nth-child(1) .systems-card-text { flex: 1; }
    .systems-card:nth-child(1) .systems-visual-browser { flex: 0 0 400px; width: 400px; aspect-ratio: 4/3; }
}

.browser-chrome {
    display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.75rem;
}
.browser-body {
    background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex; flex-direction: column; gap: 0.75rem;
    position: relative; height: calc(100% - 2rem);
}
.mock-hero {
    height: 6rem;
    background: linear-gradient(to right, rgba(139,92,246,0.15), rgba(236,72,153,0.15));
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-weight: 700; font-size: 1rem;
}
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.mock-block { height: 4rem; background: rgba(255,255,255,0.04); border-radius: 0.25rem; }
.pixel-perfect-badge {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white); color: #000;
    padding: 0.375rem 0.75rem; border-radius: 9999px;
    font-size: 0.75rem; font-weight: 700;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 0.5rem;
}

/* Card 2 - Meta Ads / Performance */
.systems-card:nth-child(2) { padding: 1.5rem; display: flex; flex-direction: column; }
.systems-badge-roas {
    position: absolute; top: 1.5rem; right: 1.5rem;
    padding: 0.25rem 0.5rem; border-radius: 9999px;
    font-size: 0.75rem; font-weight: 600;
    background: rgba(34,197,94,0.08); color: #4ade80;
    border: 1px solid rgba(34,197,94,0.15);
}
.stats-block { margin-top: auto; }
.stat-row {
    display: flex; justify-content: space-between;
    font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 0.25rem;
}
.stat-row .mono { font-family: monospace; color: var(--white); }
.bar-chart {
    display: flex; align-items: flex-end; justify-content: space-between;
    height: 4rem; margin-top: 1.5rem; gap: 0.25rem;
}
.bar-chart .bar {
    flex: 1; background: rgba(255,255,255,0.08);
    border-radius: 2px; transition: background var(--transition);
}
.bar-chart .bar:hover { background: var(--purple-500); }

/* Card 3 - Email */
.systems-card:nth-child(3) {
    background: linear-gradient(180deg, #151520, #0c0c12);
    padding: 1.5rem; display: flex; flex-direction: column;
}
.workflow-steps { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; flex: 1; }
.workflow-step {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem; border-radius: var(--radius);
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
}
.workflow-step.faded { opacity: 0.5; }
.workflow-step span { font-size: 0.875rem; font-weight: 500; color: var(--white); }
.workflow-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; flex-shrink: 0; }
.workflow-dot.green-glow { background: var(--green-500); box-shadow: 0 0 8px rgba(34,197,94,0.4); }
.workflow-dot.purple { background: var(--purple-500); }
.workflow-dot.blue { background: var(--blue-500); }
.workflow-connector { width: 1px; height: 1rem; background: rgba(255,255,255,0.08); margin: 0 auto; }

/* Card 4 */
.systems-card:nth-child(4) { padding: 2rem; }
.systems-card-row {
    display: flex; flex-direction: column; gap: 2rem; align-items: center;
}
@media (min-width: 768px) { .systems-card-row { flex-direction: row; } }
.check-items { display: flex; gap: 1rem; padding-top: 0.5rem; }
.check-items span {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; color: rgba(255,255,255,0.8);
}
.check-items svg { width: 1rem; height: 1rem; color: var(--green-500); }

/* =============================================
   WHY CARDS (extended – Startseite)
   ============================================= */
.why { border-top: 1px solid var(--border); }
.why-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative; overflow: hidden;
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.why-card-main { grid-column: 1; }
@media (min-width: 768px) { .why-card-main { grid-column: span 2; } }
@media (min-width: 1024px) { .why-card-main { grid-column: span 3; } }
.why-card-inner { position: relative; z-index: 1; }
.why-icon-lg {
    width: 3.5rem; height: 3.5rem;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.why-icon-lg svg { width: 1.5rem; height: 1.5rem; }
.purple-bg { background: rgba(139,92,246,0.15); color: var(--purple-400); }
.why-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.why-card p { color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.7; }
.why-card-bg-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139,92,246,0.06), transparent 60%);
    pointer-events: none;
}
.tech-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.tech-tags span {
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--border-hover);
    font-size: 0.75rem; font-weight: 500; color: var(--fg);
    background: rgba(255,255,255,0.03);
}

.why-card-performance { text-align: left; }
.why-card-performance .usp-icon { margin-left: 0; margin-right: 0; }
.why-card-performance h3,
.why-card-performance p { text-align: left; }

.usp-icon {
    width: 2.5rem; height: 2.5rem;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.usp-icon svg { width: 1.25rem; height: 1.25rem; }
.blue-cyan-usp { background: rgba(59,130,246,0.12); color: #60a5fa; }
.yellow-usp { background: rgba(234,179,8,0.12); color: var(--yellow-500); }
.purple-pink-usp { background: rgba(139,92,246,0.12); color: var(--purple-400); }
.green-usp { background: rgba(34,197,94,0.12); color: #4ade80; }

.why-card-design {
    grid-column: 1;
    display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 768px) {
    .why-card-design { grid-column: span 2; flex-direction: row; align-items: center; }
}
@media (min-width: 1024px) { .why-card-design { grid-column: span 3; } }
.design-text { flex: 1; }
.design-text h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.pink-text { color: var(--pink-500); }
.design-phone { flex-shrink: 0; }
.phone-mockup {
    width: 180px; height: 320px;
    border: 2px solid var(--border-hover);
    border-radius: 2rem;
    overflow: hidden;
    background: var(--bg);
    padding: 0.75rem;
    margin: 0 auto;
}
.phone-content { display: flex; flex-direction: column; gap: 0.75rem; }
.phone-bar { height: 0.375rem; width: 3rem; border-radius: 9999px; background: rgba(255,255,255,0.1); margin: 0 auto; }
.phone-hero-block {
    height: 5rem; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.1));
}
.phone-lines { display: flex; flex-direction: column; gap: 0.375rem; }
.phone-line { height: 0.375rem; border-radius: 9999px; background: rgba(255,255,255,0.08); }
.phone-line.short { width: 60%; }
.phone-cta {
    padding: 0.5rem 1rem; border-radius: var(--radius);
    background: var(--purple-600); color: var(--white);
    text-align: center; font-size: 0.75rem; font-weight: 600;
}

/* About section on startseite */
.about { border-top: 1px solid var(--border); }
.about-inner {
    text-align: center;
    max-width: 640px; margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center; gap: 1.5rem;
}
.about-avatar {
    width: 6rem; height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-hover);
    box-shadow: 0 0 30px rgba(124,58,237,0.1);
}
.about-avatar img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: inherit;
}
.about-inner h2 {
    font-size: 2rem; font-weight: 800;
    letter-spacing: -0.03em;
}
@media (min-width: 768px) { .about-inner h2 { font-size: 2.5rem; } }
.about-inner > p {
    color: var(--fg-muted);
    font-size: 1.0625rem; line-height: 1.7;
    max-width: 36rem;
}

/* =============================================
   PAGE HERO (Subpages)
   ============================================= */
.page-hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .page-hero { padding: 10rem 0 5rem; } }
.page-hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.page-hero-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
@media (min-width: 768px) { .page-hero-content h1 { font-size: 3.25rem; } }
.page-hero-content p {
    color: var(--fg-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 560px;
}

/* Page meta (author / date) */
.page-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--fg-muted);
    opacity: 0.7;
    margin-top: -0.25rem;
}
.page-meta time,
.page-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.alt-bg { background: var(--bg-elevated); }

/* =============================================
   LEISTUNGEN PAGE
   ============================================= */
.leistung-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.leistung-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.leistung-icon svg { width: 1.5rem; height: 1.5rem; }
.leistung-icon.purple { background: rgba(124,58,237,0.15); color: var(--purple-400); }
.leistung-icon.pink { background: rgba(236,72,153,0.15); color: var(--pink-500); }
.leistung-icon.green { background: rgba(34,197,94,0.15); color: var(--green-500); }
.leistung-header h2 { font-size: 2rem; font-weight: 800; }
@media (min-width: 768px) { .leistung-header h2 { font-size: 2.5rem; } }
.leistung-tagline { color: var(--fg-muted); font-size: 1.0625rem; }

/* Problem → Lösung → Ergebnis Grid */
.pse-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .pse-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.pse-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.pse-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}
.pse-problem .pse-label { background: rgba(239,68,68,0.15); color: var(--red-500); }
.pse-solution .pse-label { background: rgba(124,58,237,0.15); color: var(--purple-400); }
.pse-result .pse-label { background: rgba(34,197,94,0.15); color: var(--green-500); }
.pse-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.pse-card p { color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.7; }

/* Vorteile Grid */
.leistung-vorteile h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.vorteile-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 640px) { .vorteile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vorteile-grid { grid-template-columns: repeat(3, 1fr); } }
.vorteil-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.vorteil-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.vorteil-item strong { display: block; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.vorteil-item p { color: var(--fg-muted); font-size: 0.8125rem; line-height: 1.6; }

/* Mini-FAQ in Leistungen */
.mini-faq {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.mini-faq h4 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 1.25rem; }

/* =============================================
   REFERENZEN PAGE
   ============================================= */
.referenz-detail {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}
.referenz-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
@media (min-width: 768px) { .referenz-detail { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } }
@media (min-width: 768px) { .referenz-detail-reverse { direction: rtl; } .referenz-detail-reverse > * { direction: ltr; } }

.referenz-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    aspect-ratio: 3 / 4;
}
.referenz-detail-img a {
    display: block;
    width: 100%;
    height: 100%;
}
.referenz-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.referenz-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
}
.referenz-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fg-muted);
}

.referenz-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.referenz-detail-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(124,58,237,0.12);
    color: var(--purple-400);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}
.referenz-detail-body h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.referenz-detail-subtitle { color: var(--fg-muted); font-size: 1rem; margin-bottom: 1.5rem; }

.referenz-detail-pse { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.referenz-pse-item strong { font-size: 0.8125rem; color: var(--purple-400); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.25rem; }
.referenz-pse-item p { color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.6; }

.referenz-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-value { display: block; font-size: 1.25rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Referenz Preview Cards (index) */
.referenz-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) { .referenz-grid { grid-template-columns: repeat(2, 1fr); } }
.referenz-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
}
.referenz-card:hover { border-color: var(--border-hover); }
.referenz-card-body { padding: 1.5rem; }
.referenz-card-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.referenz-card-body p { color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1rem; }
.referenz-card-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.referenz-card-tags span {
    font-size: 0.6875rem;
    font-weight: 600;
    background: rgba(124,58,237,0.1);
    color: var(--purple-400);
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
}

/* =============================================
   ÜBER MICH PAGE
   ============================================= */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}
.about-img-wrapper img { width: 100%; height: auto; object-fit: cover; }
.about-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-text h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .about-text h2 { font-size: 2.25rem; } }
.about-text p { color: var(--fg-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }

/* Werte Grid */
.werte-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) { .werte-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.werte-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color var(--transition);
}
.werte-card:hover { border-color: var(--border-hover); }
.werte-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.werte-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.werte-card p { color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.7; }

/* Tech Stack Grid */
.tech-stack-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 640px) { .tech-stack-grid { grid-template-columns: repeat(2, 1fr); } }
.tech-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.tech-category h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 1rem; color: var(--purple-400); }
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tech-tags span {
    font-size: 0.8125rem;
    font-weight: 500;
    background: rgba(124,58,237,0.08);
    color: var(--fg);
    padding: 0.375rem 0.875rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}
.tech-tags span:hover { border-color: var(--purple-500); }

/* Location Section */
.about-location-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) { .about-location-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-location-text h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
@media (min-width: 768px) { .about-location-text h2 { font-size: 2.25rem; } }
.about-location-text > p { color: var(--fg-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.about-location-text .badge { margin-bottom: 0.75rem; }

.location-details { display: flex; flex-direction: column; gap: 0.75rem; }
.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--fg-muted);
    font-size: 0.9375rem;
}
.location-item svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; color: var(--purple-400); }

.location-card { padding: 2rem; }
.location-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--green-500);
}
.online-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--green-500);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.location-card-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.location-card-body p { color: var(--fg-muted); font-size: 0.9375rem; margin-bottom: 1.25rem; }

/* =============================================
   KONTAKT PAGE
   ============================================= */
.kontakt-section { padding-top: 0; }
.kontakt-card { padding: 2rem; }
@media (min-width: 768px) { .kontakt-card { padding: 2.5rem; } }
.kontakt-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.kontakt-card > p { color: var(--fg-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; }

.kontakt-info { display: flex; flex-direction: column; gap: 1.5rem; }
.kontakt-info-card { padding: 2rem; }
.kontakt-info-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; }
.kontakt-info-items { display: flex; flex-direction: column; gap: 1rem; }
.kontakt-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}
.kontakt-info-item:hover { border-color: var(--border-hover); }
.kontakt-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.12);
    color: var(--purple-400);
    flex-shrink: 0;
}
.kontakt-info-icon.whatsapp { background: rgba(37,211,102,0.12); color: #25D366; }
.kontakt-info-icon svg { width: 1.125rem; height: 1.125rem; }
.kontakt-info-item strong { display: block; font-size: 0.875rem; margin-bottom: 0.125rem; }
.kontakt-info-item span { color: var(--fg-muted); font-size: 0.8125rem; }

.kontakt-projekt-check { padding: 2rem; text-align: center; }
.projekt-check-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(124,58,237,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
}
.projekt-check-icon svg { width: 1.25rem; height: 1.25rem; }
.kontakt-projekt-check h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.kontakt-projekt-check p { color: var(--fg-muted); font-size: 0.875rem; margin-bottom: 1.25rem; }

.kontakt-response { padding: 1.5rem; text-align: center; }
.response-indicator { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.8125rem; color: var(--fg-muted); }
.response-time { font-size: 1.5rem; font-weight: 800; color: var(--green-500); }

/* =============================================
   FORM STYLES (updated)
   ============================================= */
.form-row {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--fg);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--fg);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-muted); opacity: 0.6; }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    accent-color: var(--purple-500);
    flex-shrink: 0;
}
.form-checkbox label {
    font-size: 0.8125rem;
    color: var(--fg-muted);
    line-height: 1.5;
}
.form-checkbox label a { color: var(--purple-400); text-decoration: underline; }

.w-full { width: 100%; }
.highlight { color: var(--purple-400) !important; font-weight: 600; }