:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #06b6d4;
    --purple: #a855f7;
    --pink: #ec4899;
    --blue: #3b82f6;
    --bg: #000000;
    --bg-light: #0a0a0a;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --card: #0f0f1e;
    --border: #1f2937;
    --max-width: 1100px;
    --radius: 10px;
    --shadow-soft: 0 18px 45px rgba(0,0,0,0.95);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #6366f1 0%, #000000 35%, #000000 100%);
    color: var(--text);
    line-height: 1.6;
    background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Header ── */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(0,0,0,0.85), transparent);
    border-bottom: 1px solid rgba(148,163,184,0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.logo-wrap { display: flex; align-items: center; gap: 0.6rem; }

.logo-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(99,102,241,0.4);
    transition: all 0.3s ease;
}
.logo-icon-img:hover {
    filter: brightness(1.1);
    box-shadow: 0 10px 30px rgba(168,85,247,0.5);
}

.logo-text { font-weight: 600; letter-spacing: 0.04em; font-size: 1.1rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
}
.nav-links a {
    color: var(--muted);
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.nav-links a:hover { color: #f9fafb; border-color: var(--accent); }

.nav-cta {
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: 1.5px solid rgba(99,102,241,0.8);
    color: #e5e7eb;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.1));
    box-shadow: 0 12px 30px rgba(99,102,241,0.2);
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(168,85,247,0.2));
    border-color: var(--purple);
    box-shadow: 0 12px 40px rgba(168,85,247,0.3);
}

/* ── Logo Hero ── */
.logo-hero {
    padding: 3.5rem 0 1.5rem;
    text-align: center;
    background: #000000;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    padding: 1rem;
}
.logo-wrapper::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(168,85,247,0.5) 0%, rgba(168,85,247,0.25) 35%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
    0%,100% { opacity: 0.7; }
    50%      { opacity: 1; }
}

.logo-large-xl {
    width: 520px;
    max-width: 90vw;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(168,85,247,0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}
.logo-large-xl:hover {
    transform: scale(1.05);
    box-shadow: 0 40px 100px rgba(168,85,247,0.6);
}

/* ── Hero ── */
.hero { padding: 3rem 0 3rem; }

.hero-content {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.18rem 0.7rem 0.18rem 0.18rem;
    border-radius: 999px;
    border: 1px solid rgba(99,102,241,0.5);
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(0,0,0,0.95));
    color: #e5e7eb;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    box-shadow: 0 0 0 1px rgba(168,85,247,0.9);
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 700;
}

.hero h1 {
    margin: 1.2rem 0 0.8rem;
    font-size: clamp(2.2rem, 3vw + 1.2rem, 3.2rem);
    letter-spacing: -0.03em;
}
.hero h1 span.highlight {
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #06b6d4);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}

.hero-sub {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 36rem;
    margin: 0 auto;
}
.hero-sub strong { color: #e5e7eb; font-weight: 600; }

.hero-meta {
    margin: 1.3rem 0 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.9rem;
    color: var(--muted);
    justify-content: center;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.dot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #06b6d4;
    box-shadow: 0 0 0 4px rgba(6,182,212,0.18);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    border: none; outline: none; cursor: pointer;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.97rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 20px 45px rgba(99,102,241,0.4);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(168,85,247,0.5);
}

.btn-secondary {
    border-radius: 999px;
    border: 1.5px solid rgba(168,85,247,0.6);
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(0,0,0,0.8));
    color: var(--muted);
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: #e5e7eb;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.1));
}

.avatar-stack {
    display: flex;
    align-items: center;
    margin-top: 1.6rem;
    gap: 0.9rem;
    justify-content: center;
}
.initials { display: flex; align-items: center; }
.initial-circle {
    width: 40px; height: 40px;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.95rem;
    border: 2px solid #000000;
    box-shadow: 0 8px 16px rgba(99,102,241,0.3);
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #ffffff;
}
.initial-circle + .initial-circle {
    margin-left: -15px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
}
.avatar-text { font-size: 0.85rem; color: var(--muted); text-align: left; }
.avatar-text strong { color: #e5e7eb; }

/* ── Sections ── */
section { padding: 3.5rem 0; }
section:nth-of-type(odd)  { background: #000000; }
section:nth-of-type(even) { background: linear-gradient(135deg, rgba(99,102,241,0.05), #000000); }

.section-header { text-align: center; margin-bottom: 2.3rem; }
.section-kicker {
    text-transform: uppercase; font-size: 0.8rem;
    letter-spacing: 0.18em; color: #a855f7; margin-bottom: 0.35rem;
}
.section-title {
    font-size: 1.7rem; letter-spacing: -0.03em; margin-bottom: 0.4rem;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text; color: transparent; background-clip: text;
}
.section-sub {
    max-width: 36rem; margin: 0.25rem auto 0;
    color: var(--muted); font-size: 0.96rem;
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.6rem;
}
.services-grid-wide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.4rem;
    margin-top: 1.6rem;
}

.card {
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(168,85,247,0.05));
    border: 1px solid rgba(168,85,247,0.3);
    padding: 1.2rem 1.2rem 1.3rem;
    box-shadow: 0 18px 40px rgba(99,102,241,0.2);
    position: relative; overflow: hidden;
    transition: all 0.3s ease;
}
.card:hover {
    border-color: rgba(168,85,247,0.6);
    box-shadow: 0 20px 50px rgba(168,85,247,0.3);
    transform: translateY(-5px);
}
.card::before {
    content: "";
    position: absolute; inset: -60%;
    background: radial-gradient(circle at 0 0, rgba(99,102,241,0.25), transparent 55%);
    opacity: 0.5; pointer-events: none;
}
.card-inner { position: relative; z-index: 1; }

.card-icon {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    box-shadow: 0 10px 24px rgba(168,85,247,0.3);
    margin-bottom: 0.6rem; font-size: 1.2rem;
}
.card-title { font-weight: 600; margin-bottom: 0.35rem; }
.card-text { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.8rem; }
.card-list {
    list-style: none; padding: 0; margin: 0;
    font-size: 0.85rem; color: #9ca3af;
}
.card-list li { margin: 0.22rem 0; display: flex; gap: 0.4rem; }
.card-list li::before { content: "•"; color: #06b6d4; margin-top: -1px; }

/* Addon badge */
.card-addon {
    display: inline-block;
    margin-top: 0.7rem;
    font-size: 0.7rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(236,72,153,0.6);
    background: rgba(236,72,153,0.1);
    color: #f9a8d4;
}

/* ── Über uns ── */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
    gap: 2.5rem;
    align-items: center;
}
.about-pill {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.18rem 0.6rem; border-radius: 999px;
    border: 1px solid rgba(168,85,247,0.5);
    font-size: 0.78rem; color: var(--muted); margin-bottom: 0.6rem;
}
.about-pill span { width:7px;height:7px;border-radius:999px;background:#a855f7; }
.about h2 {
    font-size: 1.7rem; letter-spacing: -0.03em; margin-bottom: 0.4rem;
    background: linear-gradient(90deg,#6366f1,#a855f7);
    -webkit-background-clip: text; color: transparent; background-clip: text;
}
.about-sub { color: var(--muted); font-size: 0.97rem; margin-bottom: 1.2rem; }
.about-cols { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; }
.about-cols p { font-size: 0.9rem; color: #d1d5db; }
.founders {
    margin-top: 1.4rem; padding-top: 1.1rem;
    border-top: 1px solid rgba(168,85,247,0.3);
    font-size: 0.9rem; color: var(--muted);
}
.founders strong { color: #e5e7eb; }

.about-badge {
    display: inline-flex; flex-direction: column; gap: 0.55rem;
    padding: 1rem 1.1rem; border-radius: 12px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(0,0,0,0.8));
    border: 1px solid rgba(168,85,247,0.4);
    box-shadow: 0 16px 30px rgba(99,102,241,0.2);
    font-size: 0.82rem; width: 100%;
}
.about-badge-header { display: flex; justify-content: space-between; align-items: center; }
.about-badge-title { font-weight: 600; font-size: 0.9rem; }
.about-badge-tag {
    font-size: 0.7rem; padding: 0.1rem 0.5rem; border-radius: 999px;
    border: 1px solid rgba(168,85,247,0.6);
    color: #e5e7eb; background: rgba(168,85,247,0.2);
}
.about-badge-list { list-style: none; margin: 0.2rem 0 0; padding: 0; color: #d1d5db; }
.about-badge-list li { margin: 0.15rem 0; }

/* ── Prozess ── */
.process-grid {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
    gap: 2.5rem; align-items: flex-start;
}
.steps { list-style: none; margin: 0; padding: 0; }
.step {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 0.9rem;
    padding: 0.9rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(168,85,247,0.3);
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(0,0,0,0.8));
    margin-bottom: 0.55rem;
    box-shadow: 0 14px 30px rgba(99,102,241,0.15);
    transition: all 0.3s ease;
}
.step:hover { border-color: rgba(168,85,247,0.6); box-shadow: 0 14px 40px rgba(168,85,247,0.25); }
.step-number {
    width: 28px; height: 28px; border-radius: 999px;
    background: linear-gradient(135deg,#6366f1,#a855f7);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: #ffffff; font-weight: 700;
    box-shadow: 0 8px 20px rgba(168,85,247,0.3);
}
.step-title { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.05rem; }
.step-text { font-size: 0.88rem; color: #d1d5db; }
.step-sub { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }
.process-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.8rem; }

.process-card {
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(0,0,0,0.9));
    border: 1px solid rgba(168,85,247,0.35);
    padding: 1.1rem;
    box-shadow: 0 18px 40px rgba(99,102,241,0.25);
    font-size: 0.87rem;
}
.process-card h3 {
    margin: 0 0 0.5rem; font-size: 1.0rem;
    background: linear-gradient(90deg,#6366f1,#a855f7);
    -webkit-background-clip: text; color: transparent; background-clip: text;
}
.process-highlight { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.5rem 0 0.7rem; }
.tag {
    font-size: 0.75rem; padding: 0.18rem 0.55rem; border-radius: 999px;
    border: 1px solid rgba(168,85,247,0.6);
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.1));
    color: #e5e7eb;
}

/* ── CTA / Kontakt ── */
.cta { text-align: center; }
.cta-box {
    max-width: 640px; margin: 0 auto;
    border-radius: 16px; padding: 1.6rem 1.6rem 1.8rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(0,0,0,0.95));
    border: 1px solid rgba(168,85,247,0.5);
    box-shadow: 0 24px 60px rgba(99,102,241,0.3);
}
.cta-title {
    font-size: 1.6rem; letter-spacing: -0.03em; margin-bottom: 0.3rem;
    background: linear-gradient(90deg,#6366f1,#a855f7,#ec4899);
    -webkit-background-clip: text; color: transparent; background-clip: text;
}
.cta-sub { font-size: 0.98rem; color: #e5e7eb; margin-bottom: 1.3rem; }
.cta-form {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 0.8rem 0.9rem; margin-bottom: 1.1rem;
}
.cta-form-full { grid-column: 1 / -1; }

label {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--muted);
    display: block; margin-bottom: 0.25rem;
}
input, textarea, select {
    width: 100%; padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(168,85,247,0.4);
    background: rgba(0,0,0,0.8);
    color: #e5e7eb; font-size: 0.9rem; outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}
input:focus, textarea:focus, select:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 2px rgba(168,85,247,0.2);
    background: rgba(0,0,0,0.9);
}
select option { background: #0f0f1e; }
textarea { min-height: 90px; resize: vertical; }

.cta-footer {
    display: flex; flex-wrap: wrap; gap: 0.8rem;
    align-items: center; justify-content: space-between;
    font-size: 0.8rem; color: var(--muted);
}
.cta-footer small { opacity: 0.9; }

/* ── Footer ── */
footer {
    padding: 1.8rem 0 1.4rem;
    background: #000000;
    border-top: 1px solid rgba(168,85,247,0.2);
    font-size: 0.8rem; color: var(--muted);
}
.footer-inner {
    display: flex; flex-wrap: wrap;
    gap: 1rem; justify-content: space-between; align-items: center;
}
.footer-note { max-width: 460px; }
.footer-contact { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(168,85,247,0.2); }
.footer-contact a { color: #a855f7; transition: all 0.3s ease; }
.footer-contact a:hover { color: #ec4899; }
.footer-legal { margin-top: 0.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: #e5e7eb; }

/* ── Responsive ── */
@media (max-width: 980px) {
    .about-grid, .process-grid { grid-template-columns: minmax(0,1fr); }
    .services-grid-wide { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 840px) {
    .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .nav-links { display: none; }
}
@media (max-width: 640px) {
    .services-grid, .services-grid-wide { grid-template-columns: minmax(0,1fr); }
    .cta-form { grid-template-columns: minmax(0,1fr); }
    .cta-footer { flex-direction: column; align-items: flex-start; }
    .about-cols { grid-template-columns: minmax(0,1fr); }
}
.ki-badge {
display: inline-flex;
flex-direction: column;
gap: 0.55rem;
padding: 1rem 1.1rem;
border-radius: 12px;
background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(0,0,0,0.8));
border: 1px solid rgba(168,85,247,0.4);
box-shadow: 0 16px 30px rgba(99,102,241,0.2);
font-size: 0.82rem;
width: 100%;
margin-top: 1rem;
}

.ki-badge-header {
display: flex;
justify-content: space-between;
align-items: center;
}

.ki-badge-title {
font-weight: 600;
font-size: 0.9rem;
background: linear-gradient(90deg, #6366f1, #a855f7);
-webkit-background-clip: text;
color: transparent;
background-clip: text;
}

.ki-badge-tag {
font-size: 0.7rem;
padding: 0.1rem 0.5rem;
border-radius: 999px;
border: 1px solid rgba(6,182,212,0.6);
color: #e5e7eb;
background: rgba(6,182,212,0.2);
}

.ki-badge-list {
list-style: none;
margin: 0.2rem 0 0;
padding: 0;
color: #d1d5db;
}

.ki-badge-list li {
margin: 0.2rem 0;
}