/* ============================================================
   Fonts (self-hosted, DSGVO-konform)
   ============================================================ */
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/bricolage/bricolage-grotesque-v9-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/bricolage/bricolage-grotesque-v9-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/bricolage/bricolage-grotesque-v9-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/inter/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter/inter-v20-latin-600.woff2') format('woff2');
}

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
    --bg-outer: #EFEEEA;
    --bg-card: #FFFFFF;
    --bg-soft: #F5F4F0;
    --text: #0F0F12;
    --text-muted: #6B6B70;
    --accent: #5B2EFF;
    --accent-soft: #EFEAFE;
    --accent-dark: #4520CC;
    --border: #E4E2DC;
    --border-strong: #C9C7C0;

    --font-display: 'Bricolage Grotesque', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --gap-card: 24px;
    --pad-card-y: 120px;
    --pad-card-x: 104px;
    --radius-card: 32px;
    --radius-inner: 20px;
    --container-max: 1800px;
}

/* ============================================================
   Reset
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
img, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
}
button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}
a {
    color: inherit;
    text-decoration: none;
}
ul, ol { list-style: none; }

/* ============================================================
   Base
   ============================================================ */
body {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-outer);
    padding: 12px;
    padding-top: 144px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

main {
    display: flex;
    flex-direction: column;
    gap: var(--gap-card);
    max-width: var(--container-max);
    margin: 0 auto;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: var(--pad-card-y) var(--pad-card-x);
    position: relative;
    overflow: hidden;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--text);
    text-wrap: balance;
}

h1 {
    font-size: clamp(48px, 8.4vw, 124px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.96;
}

h2 {
    font-size: clamp(40px, 5.5vw, 80px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.0;
}

h3 {
    font-size: clamp(22px, 1.9vw, 28px);
    font-weight: 700;
    line-height: 1.15;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 7px 16px;
    border-radius: 999px;
    letter-spacing: 0.005em;
    margin-bottom: 24px;
}

/* Marker-Highlight für einzelne Wörter in Headlines */
.mark {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    z-index: 0;
    isolation: isolate;
    padding: 0 0.06em;
}
.mark::before {
    content: '';
    position: absolute;
    left: -0.04em;
    right: -0.04em;
    bottom: 0.08em;
    height: 0.32em;
    background: var(--accent);
    opacity: 0.45;
    border-radius: 4px;
    transform: skew(-3deg, -1deg);
    z-index: -1;
}

/* Inline-Pictogramm-Slot in Headlines */
.headline-icon {
    display: inline-grid;
    place-items: center;
    width: 0.9em;
    height: 0.9em;
    border-radius: 0.25em;
    background: var(--accent-soft);
    color: var(--accent);
    margin: 0 0.08em;
    vertical-align: -0.05em;
    padding: 0.1em;
}
.headline-icon svg {
    width: 100%;
    height: 100%;
}

/* ============================================================
   Section Head (Eyebrow + Headline + Lead)
   ============================================================ */
.section-head {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}
.section-head-text { min-width: 0; }
.section-lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 420px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.005em;
    border: 1.5px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}
.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}
.btn-secondary:hover {
    background: var(--text);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--text);
    border-color: #fff;
}
.btn-light:hover {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.btn-large {
    padding: 22px 40px;
    font-size: 17px;
}

.btn svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.btn:hover svg {
    transform: translateX(2px);
}

/* ============================================================
   Navigation – Floating Pill (vergrößert)
   ============================================================ */
.nav {
    position: fixed;
    top: 16px;
    left: 12px;
    right: 12px;
    margin: 0 auto;
    max-width: var(--container-max);
    background: var(--bg-card);
    border-radius: 999px;
    padding: 16px 16px 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 100;
    box-shadow: 0 10px 36px rgba(15, 15, 18, 0.08), 0 1px 0 rgba(15, 15, 18, 0.03);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: var(--text);
    flex-shrink: 0;
}

.nav-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.04em;
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 500;
    color: var(--text);
    padding: 14px 24px;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-links a:hover {
    color: var(--accent);
    background: var(--bg-outer);
}

.nav-cta {
    padding: 18px 32px;
    font-size: 19px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    position: relative;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero (zentriert, vertikal gestapelt)
   ============================================================ */
.hero {
    padding-top: 88px;
    padding-bottom: 96px;
    text-align: center;
}

.hero-top {
    margin-bottom: 56px;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}
.hero-trust-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent);
    position: relative;
    flex-shrink: 0;
}
.hero-trust-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.35;
    animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
    0%   { transform: scale(0.6); opacity: 0.5; }
    100% { transform: scale(2.4); opacity: 0; }
}
.hero-trust-sep {
    color: var(--border-strong);
    font-weight: 400;
}

.hero-headline {
    margin: 0 auto 32px;
    max-width: 1400px;
}

.hero-spec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 0 0 40px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.hero-spec-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
}
.hero-spec-badge img {
    height: 22px;
    width: auto;
}

.hero-subline {
    font-size: clamp(19px, 1.3vw, 22px);
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 56px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 88px;
}

.hero-photo-wrap {
    display: flex;
    justify-content: center;
}

.hero-photo {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 32px;
    transform: rotate(-1.2deg);
    box-shadow: 0 28px 72px rgba(15, 15, 18, 0.16);
}

/* ============================================================
   Logos
   ============================================================ */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.logo-card {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 36px 24px;
    display: grid;
    place-items: center;
    min-height: 120px;
    transition: background-color 0.3s ease;
}
.logo-card:hover {
    background: var(--accent-soft);
}
.logo-card img {
    max-height: 32px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 96px;
    align-items: start;
}
.about-content { min-width: 0; }
.about-lead {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--text);
    margin: 32px 0 32px;
    max-width: 560px;
}
.about-text p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong {
    color: var(--text);
    font-weight: 600;
}
.about-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    transition: color 0.2s ease;
}
.about-text a:hover { color: var(--accent-dark); }

.about-photo-wrap {
    position: relative;
    align-self: start;
}
.about-photo-wrap::before {
    content: '';
    position: absolute;
    top: 24px;
    right: -16px;
    bottom: -16px;
    left: 24px;
    background: var(--accent);
    border-radius: 28px;
    z-index: 0;
}
.about-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(15, 15, 18, 0.12);
}
.about-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
}
.about-signature-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid var(--bg-card);
    box-shadow: 0 0 0 1px var(--border);
}
.about-signature-name {
    font-weight: 600;
    color: var(--text);
}
.about-signature-role {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================================
   Stats (Lila-Block + 2x2 Beweisstücke)
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
}
.stats-block {
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-inner);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}
.stats-block-item .number {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}
.stats-block-item .label {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 10px;
}
.stats-block-item + .stats-block-item {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
@media (max-width: 1024px) {
    .stats-block-item + .stats-block-item {
        padding-top: 0;
        border-top: none;
    }
}
.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.stat-card {
    background: var(--bg-soft);
    border-radius: var(--radius-inner);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    min-height: 180px;
    transition: background-color 0.3s ease;
}
.stat-card:hover {
    background: var(--accent-soft);
}
.stat-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
}
.stat-card-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}
.stat-card h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}
.stat-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================================
   Prozess (3 Karten mit Mockup-Bereich)
   ============================================================ */
.prozess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.prozess-card {
    background: var(--bg-soft);
    border-radius: var(--radius-inner);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease;
}
.prozess-card:hover { transform: translateY(-4px); }
.prozess-mockup {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 16px rgba(15, 15, 18, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prozess-mockup-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.prozess-mockup-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
}
.prozess-mockup-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}
.prozess-mockup-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-soft);
    border-radius: 8px;
    font-size: 11px;
    color: var(--text-muted);
}
.prozess-mockup-row svg { flex-shrink: 0; }
.prozess-mockup-row > span {
    flex-shrink: 0;
    color: var(--text);
    font-weight: 500;
}
.prozess-mockup-bar {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: var(--border);
    overflow: hidden;
    position: relative;
}
.prozess-mockup-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    width: var(--fill, 60%);
    background: var(--accent);
    border-radius: 999px;
}
.prozess-mockup-chart {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 8px 0;
}
.prozess-mockup-chart svg { width: 100%; height: 100%; }
.prozess-card h3 { font-size: 24px; }
.prozess-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.03em;
}
.prozess-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ============================================================
   Leistungen (4 Service-Karten 2x2)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.service-card {
    background: var(--bg-soft);
    border-radius: var(--radius-inner);
    padding: 44px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: background-color 0.3s ease;
}
.service-card:hover {
    background: var(--accent-soft);
}
.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 4px;
}
.service-card-icon svg {
    width: 26px;
    height: 26px;
}
.service-card h3 {
    font-size: 28px;
}
.service-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 460px;
}
.service-card ul {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-card li {
    display: flex;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}
.service-card li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    margin-top: 0.55em;
}

/* ============================================================
   Podcast
   ============================================================ */
.podcast-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}
.podcast-text { min-width: 0; }
.podcast-text h2 { font-size: clamp(36px, 4.6vw, 64px); }
.podcast-lead {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 28px 0 36px;
    max-width: 520px;
}
.podcast-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.podcast-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--bg-card);
    border: 1.5px solid var(--text);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.podcast-link:hover {
    background: var(--text);
    color: #fff;
    transform: translateY(-1px);
}
.podcast-link svg { flex-shrink: 0; }

.podcast-cover {
    aspect-ratio: 1 / 1;
    background: var(--accent);
    border-radius: 28px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    box-shadow: 0 24px 64px rgba(91, 46, 255, 0.25);
    position: relative;
    overflow: hidden;
    max-width: 460px;
    margin-left: auto;
}
.podcast-cover::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
    pointer-events: none;
}
.podcast-cover-tag {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    position: relative;
}
.podcast-cover-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    position: relative;
}
.podcast-cover-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
}
.podcast-cover-wave {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 24px;
}
.podcast-cover-wave span {
    width: 3px;
    background: #fff;
    border-radius: 999px;
    opacity: 0.85;
    animation: wave 1.4s ease-in-out infinite;
}
.podcast-cover-wave span:nth-child(1) { height: 60%; animation-delay: 0s; }
.podcast-cover-wave span:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.podcast-cover-wave span:nth-child(3) { height: 40%; animation-delay: 0.3s; }
.podcast-cover-wave span:nth-child(4) { height: 80%; animation-delay: 0.45s; }
.podcast-cover-wave span:nth-child(5) { height: 50%; animation-delay: 0.6s; }
@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* ============================================================
   Werte (3 Werte rechts neben Headline)
   ============================================================ */
.werte-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 96px;
    align-items: start;
}
.werte-headline { min-width: 0; }
.werte-headline h2 { font-size: clamp(40px, 5vw, 72px); }
.werte-list {
    display: flex;
    flex-direction: column;
}
.wert {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}
.wert:first-child { padding-top: 0; }
.wert:last-child { border-bottom: none; padding-bottom: 0; }
.wert-icon {
    color: var(--accent);
    width: 28px;
    height: 28px;
    margin-top: 4px;
}
.wert h3 {
    font-size: 28px;
    margin-bottom: 10px;
}
.wert p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 520px;
}

/* ============================================================
   Contact (lila CTA-Card)
   ============================================================ */
.contact {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 120px var(--pad-card-x);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}
.contact::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}
.contact-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.contact .eyebrow {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.contact h2 {
    color: #fff;
    font-size: clamp(40px, 5.6vw, 80px);
    margin-bottom: 28px;
}
.contact-sub {
    font-size: 19px;
    line-height: 1.55;
    opacity: 0.92;
    max-width: 520px;
    margin: 0 auto 48px;
}
.contact-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.contact-alt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 15px;
    flex-wrap: wrap;
}
.contact-alt a {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255,255,255,0.4);
    transition: text-decoration-color 0.2s ease;
}
.contact-alt a:hover {
    text-decoration-color: #fff;
}
.contact-alt-sep {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.4);
}

/* ============================================================
   Legal Pages (Impressum, Datenschutz)
   ============================================================ */
.legal {
    padding-top: 88px;
    padding-bottom: 96px;
}
.legal-inner {
    max-width: 800px;
    margin: 0 auto;
}
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.legal-back:hover {
    color: var(--accent);
}
.legal-back:hover svg {
    transform: translateX(-2px);
}
.legal-back svg {
    transition: transform 0.2s ease;
}
.legal h1 {
    font-size: clamp(40px, 5vw, 72px);
    margin-bottom: 16px;
}
.legal-meta {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 56px;
}
.legal h2 {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 700;
    margin-top: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.legal h3 {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.005em;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text);
    text-wrap: balance;
}
.legal p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.legal p strong {
    color: var(--text);
    font-weight: 600;
}
.legal a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    transition: color 0.2s ease;
}
.legal a:hover {
    color: var(--accent-dark);
}
.legal ul {
    margin: 0 0 16px;
    padding-left: 0;
    list-style: none;
}
.legal li {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    padding-left: 22px;
    margin-bottom: 8px;
    position: relative;
}
.legal li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 999px;
}

@media (max-width: 540px) {
    .legal { padding-top: 56px; padding-bottom: 64px; }
    .legal h2 { margin-top: 40px; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    padding: 80px var(--pad-card-x) 32px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 64px;
}
.footer-brand .nav-brand {
    margin-bottom: 20px;
}
.footer-claim {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 360px;
    line-height: 1.55;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col a {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--border-strong);
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.footer-bottom a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
    :root {
        --pad-card-x: 80px;
        --pad-card-y: 100px;
    }
    .about-grid { gap: 64px; }
    .werte-layout { gap: 64px; }
    .podcast-grid { gap: 56px; }
    .section-head { gap: 56px; }
}

@media (max-width: 1024px) {
    :root {
        --pad-card-x: 56px;
        --pad-card-y: 80px;
    }
    .hero-headline { margin-bottom: 32px; }
    .hero-cta { margin-bottom: 64px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-block { padding: 40px; }
    .stats-block { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .logos-grid { grid-template-columns: repeat(3, 1fr); }
    .logo-card:nth-child(4) { grid-column: 1 / span 2; max-width: none; }
    .logo-card:nth-child(5) { grid-column: 3; }
}

@media (max-width: 820px) {
    body { padding-top: 128px; }
    :root {
        --pad-card-x: 36px;
        --pad-card-y: 64px;
        --radius-card: 24px;
        --gap-card: 16px;
    }
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-cta { display: none; }
    .nav {
        padding: 12px 12px 12px 24px;
        position: fixed;
    }
    .nav-links.is-open {
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-radius: 24px;
        padding: 14px;
        box-shadow: 0 10px 36px rgba(15, 15, 18, 0.08), 0 1px 0 rgba(15, 15, 18, 0.03);
    }
    .nav-links.is-open li { width: 100%; }
    .nav-links.is-open a {
        display: block;
        text-align: center;
        padding: 16px 20px;
        border-radius: 16px;
        font-size: 18px;
    }
    .nav-links.is-open a:hover {
        background: var(--bg-outer);
    }
    .nav-brand-mark { width: 42px; height: 42px; font-size: 16px; }
    .nav-brand { font-size: 18px; }

    .hero { padding-top: 56px; padding-bottom: 72px; }
    .hero-top { margin-bottom: 40px; }
    .hero-headline { margin-bottom: 28px; }
    .hero-subline { margin-bottom: 40px; }
    .hero-cta { margin-bottom: 56px; }
    .hero-photo { max-width: 320px; }

    .section-head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }

    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .about-photo-wrap { max-width: 420px; }

    .stats-block { grid-template-columns: 1fr; gap: 28px; padding: 36px; }

    .prozess-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 36px; }

    .podcast-grid { grid-template-columns: 1fr; gap: 56px; }
    .podcast-cover { margin: 0 auto; }

    .werte-layout { grid-template-columns: 1fr; gap: 48px; }

    .footer-main { grid-template-columns: 1fr; gap: 48px; }
    .footer { padding: 56px 36px 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
    body {
        padding: 8px;
        padding-top: 100px;
    }
    :root {
        --pad-card-x: 24px;
        --pad-card-y: 56px;
        --radius-card: 20px;
    }
    .nav {
        top: 8px;
        left: 8px;
        right: 8px;
        padding-left: 16px;
    }
    .nav-brand { font-size: 15px; gap: 10px; }
    .nav-brand-mark { width: 36px; height: 36px; font-size: 13px; }

    .hero-trust {
        font-size: 13px;
        padding: 8px 14px 8px 12px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-trust-sep:nth-of-type(2) { display: none; }
    .hero-trust > span:last-of-type { display: none; }

    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }

    .logos-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-card:nth-child(4) { grid-column: auto; }
    .logo-card:nth-child(5) { grid-column: 1 / span 2; }

    .stats-cards { grid-template-columns: 1fr; }
    .stat-card { padding: 28px; min-height: 0; }

    .service-card { padding: 32px 24px; }

    .podcast-cover { padding: 36px; }

    .contact { padding: 80px 24px; }
    .contact-alt { flex-direction: column; gap: 8px; }
    .contact-alt-sep { display: none; }
}
