:root {
    --color-bg: #FFFFFF;
    --color-bg-subtle: #F7F5F1;
    --color-surface: #FFFFFF;
    --color-border: #E7E3DC;
    --color-text: #403525;
    --color-text-body: #3A3A3A;
    --color-muted: #888888;
    --color-accent: #403525;
    --color-dark: #2e2d2d; /* Logo-Anthrazit für die dunklen Akzent-Abschnitte */

    --text-xs: 11px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 20px;
    --text-xl: 28px;
    --text-2xl: 42px;
    --text-3xl: 64px;

    --max: 1140px;
    --shadow-card: 0 1px 2px rgba(17, 17, 17, .04), 0 1px 1px rgba(17, 17, 17, .03);
    /* Shape system: cards 14px · inputs/icons 10px · pills+buttons full */
    --radius: 14px;
    --radius-sm: 10px;
    --radius-pill: 999px;

    /* Easing curves — stronger than CSS defaults (Emil) */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* scroll-behavior: smooth; */ /* Deaktiviert, da JS-Smooth-Scroll mit Offset verwendet wird */
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--color-bg);
    color: var(--color-text-body);
    font-size: var(--text-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

::selection {
    background: #403525;
    color: #fff;
}

.wrap {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    display: block;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: var(--text-sm);
    padding: 13px 24px;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid var(--color-accent);
    transition: background .2s var(--ease-out), color .2s var(--ease-out), filter .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s var(--ease-out), transform .14s var(--ease-out);
}

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

.btn:active {
    transform: scale(0.97);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-link {
    font-weight: 600;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-link svg {
    transition: transform .2s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        filter: brightness(1.06);
        transform: translateY(-1px);
        box-shadow: 0 8px 22px rgba(17, 17, 17, .14);
    }

    .btn-ghost:hover {
        border-color: var(--color-text);
    }

    .btn-link:hover svg {
        transform: translateX(4px);
    }
}

.btn-primary:active {
    transform: scale(0.97);
    box-shadow: none;
}

/* Pill badge */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: transparent;
    color: var(--color-text-body);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 15px;
    line-height: 1;
    white-space: nowrap;
}

.pill-mono {
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pill-dark {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* NAV */
header.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 110px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

header.nav:not(.scrolled) {
    background: #FFFFFF !important;
    backdrop-filter: none !important;
}

header.nav.scrolled {
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom-color: var(--color-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: height .25s ease;
    width: 100%;
}

header.nav.scrolled .nav-inner {
    height: 80px;
}

.logo {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text);
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 101;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-slogan {
    font-size: 16px;
    font-weight: 700;
    color: #d4ad63; /* Goldton passend zu .shiny */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 2px;
    margin-left: 15px;
    transition: margin-top .25s ease, font-size .25s ease;
}

header.nav.scrolled .logo-slogan {
    font-size: 9px;
    margin-top: -2px;
}

@media (max-width: 768px) {
    header.nav.scrolled .logo-slogan {
        margin-top: 4px;
        font-size: 10px;
    }
}

.logo img {
    height: 52px; /* 40px * 1.3 = 52px */
    width: auto;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

header.nav.scrolled .logo img {
    height: 52px; /* Konsistent mit Desktop oder leicht verkleinert */
}

header.nav .logo img {
    transition: height .25s ease;
}

.logo .logo-light {
    display: none !important;
}

header.nav .logo .logo-dark {
    display: block !important;
}

header.nav.scrolled .logo .logo-dark {
    display: block !important;
}

header.nav:not(.scrolled) .nav-links a {
    color: #a9854f;
}

header.nav:not(.scrolled) .nav-links a:hover {
    color: #8c6d3e;
}

header.nav:not(.scrolled) .menu-toggle {
    color: #a9854f;
}

header.nav:not(.scrolled) .nav-cta {
    border-color: rgba(169, 133, 79, .38);
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-right: 0;
    margin-left: auto;
}

.nav-links a {
    font-size: 18px;
    color: #a9854f;
    font-weight: 600;
    transition: color .18s;
}

.nav-links a:hover {
    color: #8c6d3e;
}

header.nav.scrolled .nav-links a {
    color: #a9854f;
}

header.nav.scrolled .nav-links a:hover {
    color: #8c6d3e;
}

.nav-cta {
    padding: 12px 28px;
    margin-left: 40px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 6px;
}

/* HERO */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: #f4eee4;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.hero .wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.hero-inner {
    max-width: 730px;
    text-align: left;
    margin: 0;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-eyebrow span {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--color-muted);
}

.hero h1 {
    font-weight: 600;
    font-size: clamp(40px, 6vw, 84px);
    color: #5c4b37; /* Dunklerer Gold/Braun-Ton für Lesbarkeit auf hellem Grund */
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    max-width: 100%;
}

.hero h1 .shiny {
    color: #a68a64; /* Etwas dunklerer Gold-Ton für bessere Lesbarkeit */
    background: none;
    -webkit-text-fill-color: initial;
    animation: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Subtiler Schatten für mehr Definition */
    font-weight: 700;
}

.hero .subline {
    font-size: 22px;
    color: #5c4b37;
    font-weight: 400;
    max-width: 600px;
    margin: 0 0 50px 0;
    line-height: 1.5;
    text-align: left;
}

.hero .subline strong {
    color: #a9854f;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.hero-secondary-text {
    text-align: right;
    font-family: 'DM Mono', monospace;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: #a9854f;
    opacity: 0.7;
    margin-top: 20px;
}

.trust-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: var(--text-sm);
    color: var(--color-text-body);
}

.trust-row svg {
    color: var(--color-text);
    flex-shrink: 0;
}

/* USP BAR */
.usp-bar {
    background: var(--color-bg-subtle);
    border-bottom: 1px solid var(--color-border);
    padding: 30px 0;
}

.usp-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.usp-label {
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-muted);
    margin-right: 14px;
}

.usp-inner .pill {
    background: var(--color-surface);
}

/* SECTIONS */
section {
    padding: 110px 0;
}

/* GHOST-WORDMARK (großes VSBL im Hintergrund) */
.section-mark {
    position: relative;
    overflow: hidden;
}

.section-mark > .wrap {
    position: relative;
    z-index: 1;
}

.bg-wordmark {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    white-space: nowrap;
    font-size: clamp(160px, 33vw, 600px);
    color: var(--color-text);
    opacity: .04;
}

.bg-wordmark.bg-wordmark-dark {
    color: #B39875;
    opacity: .06;
}

/* Signature: shimmernde Gold-Akzentlinie (Wiedererkennungs-Motiv der dunklen Abschnitte) */
.signature-line {
    display: block;
    width: 64px;
    height: 2px;
    border-radius: 2px;
    margin-bottom: 26px;
    background: linear-gradient(90deg, #403525 0%, #a9854f 30%, #B39875 50%, #a9854f 70%, #403525 100%);
    background-size: 220% auto;
}

@media (prefers-reduced-motion: no-preference) {
    .signature-line {
        animation: shine 4s linear infinite;
    }
}

/* Editorialer Section-Head der dunklen Abschnitte: große Mono-Nummer + linksbündig */
.sec-num {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #caa765;
    margin-bottom: 16px;
}

.dark-head {
    max-width: 920px;
}

.dark-head .eyebrow {
    margin-bottom: 14px;
}

.section-head {
    margin-bottom: 60px;
}

.section-head.center {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-head h2 {
    font-weight: 800;
    font-size: var(--text-2xl);
    letter-spacing: -0.03em;
}

/* WAS WIR TUN (Philo Section) */
.philo {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
}

.philo-left {
    display: flex;
    flex-direction: column;
}

.philo-left .eyebrow {
    margin-bottom: 16px;
}

.philo-left h2 {
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.philo-divider {
    width: 60px;
    height: 3px;
    background: #a9854f;
    margin-bottom: 30px;
}

.philo-left p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-body);
    margin-bottom: 60px;
    max-width: 520px;
}

/* Benefits below text */
.philo-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.philo-benefit {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.philo-benefit-icon {
    color: #a9854f;
    width: 32px;
    height: 32px;
}

.philo-benefit-icon svg {
    width: 100%;
    height: 100%;
}

.philo-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.philo-benefit-text strong {
    font-size: 12px;
    letter-spacing: 0.05em;
    font-weight: 800;
    color: var(--color-text);
}

.philo-benefit-text span {
    font-size: 13px;
    color: var(--color-muted);
}

/* Timeline (Right Column) */
.philo-right {
    position: relative;
    padding-left: 40px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
}

.process-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 2px dotted #a9854f;
    opacity: 0.4;
}

.process-item {
    position: relative;
    padding-bottom: 0;
}

.process-dot {
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #a9854f;
    border-radius: 50%;
    z-index: 2;
}

.process-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-left: 40px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(169, 133, 79, 0.1);
}

.process-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: grid;
    place-items: center;
    color: var(--color-text);
}

.process-card-icon svg {
    width: 28px;
    height: 28px;
}

.process-card-number {
    font-family: 'DM Mono', monospace;
    font-size: 36px;
    font-weight: 400;
    color: #a9854f;
    opacity: 0.6;
    font-style: italic;
    line-height: 1;
}

.process-card-content {
    flex: 1;
}

.process-card-content h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--color-text);
}

.process-card-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-muted);
    margin: 0;
}

/* Connector between cards */
.process-connector {
    height: 60px;
    position: relative;
    margin-left: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
}

.process-connector-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    display: grid;
    place-items: center;
    color: #a9854f;
    z-index: 3;
}

.process-connector-arrow svg {
    width: 18px;
    height: 18px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .philo {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .philo-left p {
        max-width: 100%;
    }
}

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

    .process-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 16px;
    }

    .process-card-number {
        position: absolute;
        top: 24px;
        right: 24px;
    }
}

/* PAKETE */
.featured-card {
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    padding: 44px;
    box-shadow: var(--shadow-card);
    margin-bottom: 28px;
}

.featured-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
}

.featured-top h3 {
    font-weight: 800;
    font-size: 32px;
    margin: 16px 0 14px;
    letter-spacing: -0.03em;
}

.featured-top .desc {
    color: var(--color-text-body);
    max-width: 460px;
}

.featured-price {
    text-align: right;
    flex-shrink: 0;
}

.featured-price .amount {
    font-weight: 800;
    font-size: var(--text-xl);
    color: var(--color-text);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.featured-price .note {
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    margin-bottom: 34px;
}

.feature-grid li {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: var(--text-sm);
    color: var(--color-text-body);
}

.feature-grid svg {
    color: var(--color-text);
    flex-shrink: 0;
    margin-top: 3px;
}

/* SETUP TIMELINE */
.setup-timeline {
    margin: 0 0 34px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.setup-timeline-head {
    margin-bottom: 26px;
}

.setup-timeline-head h4 {
    font-weight: 800;
    font-size: var(--text-lg);
    letter-spacing: -0.02em;
    margin-top: 8px;
}

.timeline {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}

.timeline-step {
    position: relative;
    padding-top: 74px;
}

.timeline-step .tl-node {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: var(--color-text);
    color: var(--color-bg);
    box-shadow: var(--shadow-card);
}

.timeline-step .tl-node small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 2px;
}

.timeline-step .tl-node b {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.timeline-step .tl-node--check svg {
    width: 24px;
    height: 24px;
}

.timeline-step::after {
    content: "";
    position: absolute;
    top: 27px;
    left: 56px;
    right: -22px;
    height: 2px;
    background: var(--color-border);
}

.timeline-step:last-child::after {
    display: none;
}

.timeline-step .tl-title {
    display: block;
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--color-text);
    margin-bottom: 6px;
}

.timeline-step .tl-desc {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-body);
    line-height: 1.45;
}

@media (max-width: 768px) {
    .timeline {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .timeline-step {
        padding: 4px 0 28px 72px;
        min-height: 56px;
    }

    .timeline-step:last-child {
        padding-bottom: 0;
    }

    .timeline-step::after {
        content: "";
        top: 56px;
        left: 27px;
        right: auto;
        bottom: -2px;
        width: 2px;
        height: auto;
    }
}

/* MID-PAGE CTA */
.midcta-sec {
    padding: 40px 0;
}

.midcta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    padding: 44px;
    box-shadow: var(--shadow-card);
    width: 100%;
}

.midcta-text h2 {
    font-weight: 800;
    font-size: var(--text-xl);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.midcta-text p {
    color: var(--color-text-body);
    max-width: 540px;
    margin: 0;
}

.midcta .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .midcta {
        padding: 32px 26px;
    }
}

.modules-head {
    text-align: center;
    margin: 64px 0 32px;
}

.modules-head .eyebrow {
    margin-bottom: 12px;
}

.modules-head h3 {
    font-weight: 800;
    font-size: var(--text-xl);
    letter-spacing: -0.02em;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.module-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    padding: 26px;
    box-shadow: var(--shadow-card);
    transition: border-color .2s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

.module-card .pill {
    margin-bottom: 16px;
}

.module-card h4 {
    font-weight: 700;
    font-size: var(--text-lg);
    margin-bottom: 8px;
}

.module-card p {
    font-size: var(--text-sm);
    color: var(--color-text-body);
    line-height: 1.6;
}

.module-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.module-card .beam {
    opacity: 0;
    transition: opacity .3s ease;
}

.mod-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    margin-bottom: 18px;
    transition: background .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
}

.mod-icon svg {
    width: 21px;
    height: 21px;
}

.module-card .pill {
    align-self: flex-start;
}

@media (hover: hover) and (pointer: fine) {
    .module-card:hover {
        box-shadow: 0 14px 34px rgba(17, 17, 17, .09);
        transform: translateY(-3px);
    }

    .module-card:hover .beam {
        opacity: 1;
    }

    .module-card:hover .mod-icon {
        background: var(--color-accent);
        color: #fff;
        border-color: var(--color-accent);
    }
}

/* WAS SIE DAVON HABEN — Vorher/Nachher-Vergleich */
.benefit-sec {
    background: var(--color-bg-subtle);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.compare-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 38px 34px;
}

.compare-before {
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.compare-after {
    background: var(--color-dark);
    border-color: rgba(233, 205, 156, .20);
    color: #f4eee4;
    box-shadow: 0 18px 44px rgba(64, 53, 37, .18);
}

.compare-after::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 72% 60% at 70% 18%, rgba(169, 133, 79, .16), rgba(169, 133, 79, .03) 50%, transparent 74%);
}

.compare-card > * {
    position: relative;
    z-index: 1;
}

.compare-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .1em;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 6px 13px;
    margin-bottom: 18px;
}

.compare-before .compare-label {
    color: var(--color-muted);
}

.compare-after .compare-label {
    color: #B39875;
    border-color: rgba(233, 205, 156, .32);
}

.compare-card h3 {
    font-weight: 800;
    font-size: var(--text-xl);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.compare-after h3 {
    color: #f4eee4;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compare-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    align-items: start;
    font-size: var(--text-sm);
    line-height: 1.5;
}

.compare-list .ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    margin-top: 1px;
}

.compare-list .ico svg {
    width: 13px;
    height: 13px;
}

.compare-before .compare-list li {
    color: var(--color-muted);
}

.compare-before .ico {
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    color: #b0a99e;
}

.compare-after .compare-list li {
    color: rgba(244, 238, 228, .86);
}

.compare-after .ico {
    background: linear-gradient(135deg, #a9854f, #B39875);
    color: #2e2d2d;
}

/* HERO BACKGROUND (dynamische Lichter / Aurora in VSBL-Gold) */
/* Gelöscht zugunsten des neuen Bild-Hintergrunds */

/* HERO BADGE + STATS (auf dunklem Grund) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 7px 16px;
    margin-bottom: 24px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: #f3ecdd;
}

.hero-badge svg {
    width: 15px;
    height: 15px;
}

.hero .subline {
    color: #5c4b37;
}

.hero .btn-link {
    color: #f3ecdd;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat .num {
    font-weight: 800;
    font-size: var(--text-xl);
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.hero-stats .stat .lbl {
    font-size: var(--text-sm);
    color: rgba(244, 238, 228, .65);
    margin-top: 3px;
}

.hero-stats .divider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, .2);
}

@media (max-width: 768px) {
    .logo-slogan {
        font-size: 10px;
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .logo-wrapper {
        align-items: center;
        margin-bottom: 5px;
    }

    .nav-inner {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
        gap: 8px;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero .subline {
        font-size: 18px;
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-eyebrow {
        margin-bottom: 15px;
        justify-content: center;
    }

    .hero-inner {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* Staggered hero entrance (first-paint delight) */
.hero-badge, .hero h1, .hero .subline, .hero-actions {
    opacity: 0;
    animation: heroIn .7s var(--ease-out) forwards;
}

.hero-badge {
    animation-delay: .05s;
}

.hero h1 {
    animation-delay: .12s;
}

.hero .subline {
    animation-delay: .22s;
}

.hero-actions {
    animation-delay: .30s;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* PROOF STRIP (stats, aus dem Hero-Stack ausgelagert) */
.proof-strip {
    background: var(--color-bg-subtle);
    border-bottom: 1px solid var(--color-border);
    padding: 26px 0;
}

.proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.proof-inner .stat {
    text-align: center;
}

.proof-inner .stat .num {
    font-weight: 800;
    font-size: var(--text-xl);
    color: var(--color-text);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.proof-inner .stat .lbl {
    font-size: var(--text-sm);
    color: var(--color-muted);
    margin-top: 3px;
}

.proof-inner .divider {
    width: 1px;
    height: 34px;
    background: var(--color-border);
}

@media (max-width: 768px) {
    .wrap {
        padding: 0 20px;
    }
    .proof-inner .divider {
        display: none;
    }
}

/* SHINY TEXT */
.shiny {
    background: linear-gradient(90deg, #e7cd9c 0%, #fff 38%, #d4ad63 50%, #fff 62%, #e7cd9c 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: -220% center;
    }
}

.btn-shine {
    color: inherit;
}

/* TEXT REVEAL — dunkler Anker-Abschnitt (Wort-für-Wort, scrubbt mit Scroll, JS-gesteuert) */
.reveal-sec {
    padding: 120px 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(233, 205, 156, .16);
    border-bottom: 1px solid rgba(233, 205, 156, .16);
}

.reveal-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(247, 245, 241, .10), transparent 20%),
    linear-gradient(to top, rgba(247, 245, 241, .10), transparent 20%),
    radial-gradient(ellipse 72% 58% at 28% 42%, rgba(169, 133, 79, .14), rgba(169, 133, 79, .04) 48%, transparent 72%);
}

.reveal-sec > .wrap {
    position: relative;
    z-index: 1;
}

.reveal-text {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: var(--text-2xl);
    line-height: 1.4;
    letter-spacing: -0.02em;
    max-width: 920px;
    color: #f4eee4;
}

.reveal-text .rw {
    margin-right: 0.28em;
    will-change: opacity;
}

/* TEAM — COVERFLOW SWIPER */
.team-sec {
    background: var(--color-bg-subtle);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 100px 0;
}

.team-sec .section-head{
    max-width: var(--max);
}

.coverflow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .coverflow {
        grid-template-columns: 1.05fr 1fr;
        gap: 64px;
    }
}

.cf-stage {
    position: relative;
    width: 100%;
    height: 440px;
    perspective: 1100px;
}

.cf-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 290px;
    height: 390px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(64, 53, 37, .18);
    cursor: pointer;
    user-select: none;
    will-change: transform, opacity;
    transition: transform .8s var(--ease-out), opacity .8s var(--ease-out);
}

.cf-content {
    display: flex;
    flex-direction: column;
}

.cf-heading {
    font-weight: 800;
    font-size: var(--text-2xl);
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.cf-name {
    font-weight: 800;
    font-size: var(--text-xl);
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.15;
    min-height: 1.2em;
}

.cf-role {
    font-size: var(--text-base);
    color: var(--color-muted);
    margin-top: 6px;
    min-height: 1.5em;
}

.cf-arrows {
    display: flex;
    gap: 14px;
    margin-top: 34px;
}

.cf-arrow {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-pill);
    background: var(--color-accent);
    color: #f3ecdd;
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .25s var(--ease-out), transform .14s var(--ease-out);
}

.cf-arrow:hover {
    background: #5c4d36;
}

.cf-arrow:active {
    transform: scale(0.94);
}

.cf-arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes cfFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes cfWord {
    from {
        filter: blur(10px);
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        filter: blur(0);
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 767px) {
    .cf-stage {
        height: 380px;
    }

    .cf-img {
        width: 230px;
        height: 320px;
    }
}

/* ROTIERENDE GRADIENT-BORDER (Goldbraun) */
@property --gradient-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.border-beam {
    position: relative;
}

.beam {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(from var(--gradient-angle, 0deg),
    #403525 0%, #a9854f 18%, #B39875 25%, #a9854f 32%, #403525 50%,
    #403525 60%, #a9854f 78%, #B39875 85%, #a9854f 92%, #403525 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradient-rotate 6s linear infinite;
}

@keyframes gradient-rotate {
    from {
        --gradient-angle: 0deg;
    }
    to {
        --gradient-angle: 360deg;
    }
}

/* TESTIMONIALS */
.testi-head {
    margin-bottom: 8px;
}

.testi-cols {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    max-height: 720px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.testi-col {
    width: 330px;
    flex: none;
}

.testi-col.col-md, .testi-col.col-lg {
    display: none;
}

.testi-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: testiScroll 24s linear infinite;
}

@keyframes testiScroll {
    to {
        transform: translateY(-50%);
    }
}

.testi-card {
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    box-shadow: 0 8px 24px rgba(64, 53, 37, 0.06);
}

.testi-card .quote {
    font-size: var(--text-sm);
    color: var(--color-text-body);
    line-height: 1.65;
}

.testi-card .who {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 20px;
}

.testi-card .who img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .who .nm {
    font-weight: 600;
    color: var(--color-text);
    font-size: var(--text-sm);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.testi-card .who .rl {
    font-size: var(--text-xs);
    color: var(--color-muted);
}

@media (min-width: 768px) {
    .testi-col.col-md {
        display: block;
    }
}

@media (min-width: 1024px) {
    .testi-col.col-lg {
        display: block;
    }
}

/* RECHTSSICHERHEIT / BGH */
.legal-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.legal-l {
    padding: 44px;
}

.legal-l .ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 6px 13px;
    margin-bottom: 22px;
}

.legal-l .ribbon .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-text);
}

.legal-l h2 {
    font-weight: 800;
    font-size: var(--text-2xl);
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.legal-l p {
    color: var(--color-text-body);
    margin-bottom: 16px;
}

.legal-l p:last-child {
    margin-bottom: 0;
}

.legal-l .src {
    font-size: 13px;
    color: var(--color-muted);
}

.legal-r {
    padding: 44px;
    background: var(--color-bg-subtle);
    border-left: 1px solid var(--color-border);
}

.legal-r .rh {
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 22px;
}

.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.legal-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.legal-list svg {
    color: var(--color-text);
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-list b {
    display: block;
    color: var(--color-text);
    font-weight: 700;
    font-size: var(--text-sm);
    margin-bottom: 2px;
}

.legal-list span.t {
    font-size: var(--text-sm);
    color: var(--color-text-body);
    line-height: 1.5;
}

/* ANFRAGE */
#kontakt {
    background: var(--color-bg-subtle);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.form-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1040px;
    margin: 0 auto;
}

.contact-grid .form-wrap {
    max-width: none;
    margin: 0;
}

.contact-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    min-height: 420px;
}

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

.contact-visual .cv-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 24px 22px;
    color: #fff;
    font-weight: 600;
    font-size: var(--text-base);
    line-height: 1.45;
    background: linear-gradient(to top, rgba(26, 21, 14, .82), rgba(26, 21, 14, .35) 55%, rgba(26, 21, 14, 0));
}

.form-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.field {
    margin-bottom: 18px;
}

.field.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    font-family: inherit;
    font-size: var(--text-sm);
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: border-color .18s ease;
}

input::placeholder, textarea::placeholder {
    color: var(--color-muted);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-text);
}

textarea {
    resize: vertical;
    min-height: 92px;
}

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 8px 0 22px;
}

.consent input {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.consent label {
    font-weight: 400;
    font-size: 13px;
    color: var(--color-text-body);
    margin: 0;
}

.consent a {
    text-decoration: underline;
    color: var(--color-text);
}

.form-card .btn {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-muted);
    margin-top: 14px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px 8px;
}

.form-success.show {
    display: block;
    animation: successIn .4s var(--ease-out) both;
}

@keyframes successIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-success .check {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--color-text);
    animation: checkPop .45s var(--ease-out) .08s both;
}

@keyframes checkPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-success h3 {
    font-weight: 800;
    font-size: var(--text-xl);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--color-text-body);
}

/* WORAN SIE UNS MESSEN — dunkler Anker-Abschnitt */
.messen-sec {
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(233, 205, 156, .16);
    border-bottom: 1px solid rgba(233, 205, 156, .16);
}

.messen-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(247, 245, 241, .10), transparent 20%),
    linear-gradient(to top, rgba(247, 245, 241, .10), transparent 20%),
    radial-gradient(ellipse 70% 60% at 72% 40%, rgba(169, 133, 79, .14), rgba(169, 133, 79, .04) 48%, transparent 72%);
}

.messen-sec > .wrap {
    position: relative;
    z-index: 1;
}

.messen-sec .eyebrow {
    color: #b89a6a;
}

.messen-sec .section-head h2 {
    color: #f4eee4;
}

.messen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 56px;
}

.messen-col {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: var(--radius);
    background: rgba(247, 245, 241, .035);
    border: 1px solid rgba(233, 205, 156, .16);
}

.messen-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -44px;
    width: 44px;
    height: 1px;
    z-index: 2;
    background: linear-gradient(90deg, rgba(233, 205, 156, .45), rgba(233, 205, 156, .15));
}

.messen-col h3 {
    font-weight: 700;
    font-size: var(--text-lg);
    margin: 0 0 12px;
    color: #f4eee4;
}

.messen-col .rule {
    width: 36px;
    height: 2px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #a9854f, #B39875);
}

.messen-col p {
    font-size: var(--text-sm);
    color: rgba(244, 238, 228, .62);
    margin: 0;
}

@media (max-width: 768px) {
    .messen-grid {
        gap: 28px;
    }

    .messen-col:not(:last-child)::after {
        top: auto;
        bottom: -28px;
        right: 50%;
        transform: translateX(50%);
        width: 1px;
        height: 28px;
        background: linear-gradient(180deg, rgba(233, 205, 156, .45), rgba(233, 205, 156, .15));
    }
}

/* FAQ */
/* FAQ (Tabs + Akkordeon-Karten) */
.faq-head {
    position: relative;
}

.faq-head .faq-sub {
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #403525, #9a7b4f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.faq-glow {
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 420px;
    max-width: 90vw;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(closest-side, rgba(64, 53, 37, .12), rgba(64, 53, 37, .03), transparent);
    filter: blur(40px);
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 44px;
    position: relative;
    z-index: 1;
}

.faq-tab {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-muted);
    padding: 9px 17px;
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: color .3s ease, border-color .3s ease;
}

.faq-tab:hover {
    color: var(--color-text);
}

.faq-tab .lbl {
    position: relative;
    z-index: 1;
}

.faq-tab .fill {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: translateY(101%);
    background: linear-gradient(90deg, var(--color-accent), #5c4d36);
    transition: transform .45s cubic-bezier(.3, .7, .2, 1);
}

.faq-tab.active {
    color: #fff;
    border-color: var(--color-accent);
}

.faq-tab.active .fill {
    transform: translateY(0);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: opacity .35s ease;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    transition: background .25s ease, border-color .25s ease;
}

.faq-item[hidden] {
    display: none;
}

.faq-item.open {
    background: var(--color-bg-subtle);
    border-color: var(--color-border);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: var(--text-lg);
    color: var(--color-muted);
    transition: color .2s ease;
}

.faq-item.open .faq-q {
    color: var(--color-text);
}

.faq-q .ico {
    flex-shrink: 0;
    color: var(--color-muted);
    transition: transform .25s ease, color .2s ease;
}

.faq-item.open .faq-q .ico {
    transform: rotate(45deg);
    color: var(--color-text);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease-out);
}

.faq-a-inner {
    padding: 0 22px 22px;
    color: var(--color-text-body);
    font-size: var(--text-base);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}

.faq-item.open .faq-a-inner {
    opacity: 1;
    transform: none;
    transition-delay: .06s;
}

/* FOOTER */
footer {
    background: var(--color-bg-subtle);
    border-top: 1px solid var(--color-border);
    padding: 56px 0 36px;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--color-border);
}

.foot-brand {
    max-width: 320px;
}

.foot-brand .logo {
    display: inline-block;
    margin-bottom: 12px;
}

.foot-brand p {
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.foot-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.foot-links a {
    font-size: var(--text-sm);
    color: var(--color-text-body);
    transition: color .18s;
}

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

.foot-bottom {
    padding-top: 24px;
    font-size: 13px;
    color: var(--color-muted);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .vd-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vd-comparison-hub {
        width: 100%;
        padding: 40px 0;
    }

    .vd-comparison-link {
        display: none;
    }

    .vd-card-body {
        grid-template-columns: 1fr !important;
    }

    .vd-image-container {
        min-height: 250px;
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --text-3xl: 40px;
        --text-2xl: 32px;
        --text-xl: 24px;
    }

    .nav-inner {
        height: 70px;
    }

    header.nav.scrolled .nav-inner {
        height: 60px;
    }

    .logo img {
        height: 42px; /* 32px * 1.3 ≈ 42px */
    }

    header.nav.scrolled .logo img {
        height: 36px; /* 28px * 1.3 ≈ 36px */
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    section {
        padding: 72px 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .philo {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .feature-grid, .modules-grid, .messen-grid, .compare-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-visual {
        min-height: 240px;
    }

    .legal-card {
        grid-template-columns: 1fr;
    }

    .legal-l, .legal-r {
        padding: 26px;
    }

    .legal-r {
        border-left: none;
        border-top: 1px solid var(--color-border);
    }

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

    .featured-card, .form-card {
        padding: 26px;
    }

    .featured-top {
        flex-direction: column;
    }

    .featured-price {
        text-align: left;
    }

    .usp-label {
        width: 100%;
        text-align: center;
        margin: 0 0 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .shiny, .beam, .testi-track {
        animation: none !important;
    }

    .hero-badge, .hero h1, .hero .subline, .hero-actions, .hero-stats,
    .form-success.show, .form-success .check {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .faq-a-inner {
        opacity: 1 !important;
        transform: none !important;
    }

    .shiny {
        -webkit-text-fill-color: var(--color-text);
        color: var(--color-text);
    }

    .reveal-text .rw {
        opacity: 1 !important;
    }
}

/* ============================================================
   ÜBERARBEITUNG · Logo, Farbschema (mehr Creme), neue Sektionen
   ============================================================ */

/* Smooth-Scroll: Offset, damit Anker nicht unter dem Header landen */
html {
    scroll-padding-top: 88px;
}

/* HERO: großes Logo über dem Claim, Nav-Logo am Seitenanfang ausgeblendet */
header.nav:not(.scrolled) .logo {
    pointer-events: none;
}

header.nav:not(.scrolled) .logo img {
    height: 80px;
}

.hero-logo {
    display: block;
    margin: 0 auto 22px;
    width: clamp(220px, 40vw, 420px);
    height: auto;
    filter: drop-shadow(0 2px 22px rgba(0, 0, 0, .45));
    opacity: 0;
    animation: heroIn .7s var(--ease-out) forwards;
    animation-delay: .02s;
}

.hero-claim {
    display: block;
    margin-bottom: 24px;
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(244, 238, 228, .78);
    opacity: 0;
    animation: heroIn .7s var(--ease-out) forwards;
    animation-delay: .10s;
}

/* NUTZEN · drei Benefit-Karten */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .benefit-cards {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    padding: 32px 30px;
    box-shadow: var(--shadow-card);
    transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
    .benefit-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 34px rgba(17, 17, 17, .09);
    }
}

.benefit-card .bc-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    margin-bottom: 20px;
}

.benefit-card .bc-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    font-weight: 800;
    font-size: var(--text-lg);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.benefit-card p {
    font-size: var(--text-sm);
    color: var(--color-text-body);
    line-height: 1.6;
}

/* SCHAUBILD · mehr Zeit ohne mehr Patienten */
.value-diagram {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 0;
    background: transparent;
    border: none;
}

/* HEUTE / MORGEN Comparison */
.vd-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
}

.vd-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.vd-card-header h4 {
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a9854f;
    margin-bottom: 4px;
}

.vd-card-header p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

.vd-card-body {
    display: grid;
    gap: 20px;
    flex: 1;
}

.vd-card--heute .vd-card-body {
    grid-template-columns: 1.1fr 1fr;
}

.vd-card--morgen .vd-card-body {
    grid-template-columns: 1fr 1.1fr;
}

.vd-image-container {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.vd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.vd-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    justify-content: space-between;
}

.vd-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text);
    flex: 1;
}

.vd-list-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vd-list-item small {
    display: block;
    font-weight: 400;
    font-size: 10px;
    color: var(--color-muted);
    margin-top: 1px;
}

.vd-list-ico {
    width: 24px;
    height: 24px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.vd-list-ico svg {
    width: 14px;
    height: 14px;
}

.vd-comparison-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 220px;
    padding: 0 20px;
}

.vd-hub-node {
    width: 120px;
    height: 120px;
    background: #a9854f;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    margin: 15px 0;
    box-shadow: 0 10px 25px rgba(169, 133, 79, 0.25);
    position: relative;
    z-index: 2;
}

.vd-hub-node b {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 700;
}

.vd-hub-node span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 6px;
    opacity: 0.9;
}

.vd-hub-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.4;
    margin-top: 20px;
}

.vd-hub-text strong {
    display: block;
    font-size: 16px;
    margin-top: 4px;
}

.vd-hub-tags {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a9854f;
    margin-top: 24px;
    line-height: 1.8;
}

.vd-comparison-link {
    height: 60px;
    width: 2px;
    display: flex;
    justify-content: center;
}

.vd-comparison-link svg {
    height: 100%;
    width: 100%;
    color: var(--color-border);
}

/* WACHSTUM SYSTEM (Circular Diagram) */
#system-info {
    background: var(--color-bg-subtle);
}

.vd-system {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
    padding: 40px 0;
}

.vd-system-info h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.vd-system-info h2 i {
    font-style: italic;
    color: #a9854f;
    font-weight: 400;
}

.vd-system-info hr {
    width: 50px;
    border: none;
    height: 1px;
    background: #a9854f;
    margin: 25px 0;
    opacity: 0.5;
}

.vd-system-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-body);
    max-width: 380px;
}

.vd-system-diagram {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.vd-system-center {
    font-size: 36px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.vd-system-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
}

.vd-system-node-content {
    display: flex;
    flex-direction: column;
}

.vd-system-node-title {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.vd-system-node-desc {
    font-size: 10px;
    color: var(--color-muted);
    line-height: 1.2;
}

.vd-system-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2e2d2d;
    color: #a9854f;
    display: grid;
    place-items: center;
    flex: none;
    border: 1px solid rgba(233, 205, 156, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vd-system-circle svg {
    width: 18px;
    height: 18px;
}

/* Node positions - refined for 500px container */
.vd-node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    text-align: center;
}

/* Sichtbarkeit */
.vd-node-2 {
    top: 22%;
    right: -5%;
    text-align: left;
}

/* Patientenanfragen */
.vd-node-3 {
    bottom: 22%;
    right: -5%;
    text-align: left;
}

/* Terminbuchungen */
.vd-node-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column-reverse;
    text-align: center;
}

/* Behandlungen */
.vd-node-5 {
    bottom: 22%;
    left: -5%;
    flex-direction: row-reverse;
    text-align: right;
}

/* Bewertungen */
.vd-node-6 {
    top: 22%;
    left: -5%;
    flex-direction: row-reverse;
    text-align: right;
}

/* Mehr Sichtbarkeit */

.vd-system-arrows {
    position: absolute;
    width: 70%;
    height: 70%;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .vd-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vd-comparison-hub {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .vd-system {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vd-system-info p {
        margin: 0 auto;
    }

    .vd-system-diagram {
        margin-top: 40px;
    }

    .vd-node-2 {
        right: 0;
    }

    .vd-node-3 {
        right: 0;
    }

    .vd-node-5 {
        left: 0;
    }

    .vd-node-6 {
        left: 0;
    }
}

.vd-node-mark {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #f4eee4;
}

.vd-node-sub {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #caa765;
}

.vd-node-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    pointer-events: none;
    background: conic-gradient(from var(--gradient-angle, 0deg), transparent 0%, #a9854f 20%, #B39875 30%, transparent 55%, transparent 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
}

@media (prefers-reduced-motion: no-preference) {
    .vd-node-ring {
        animation: gradient-rotate 5s linear infinite;
    }
}

/* Ergebnis-Diagramm */
.vd-chart {
    width: 100%;
    height: 150px;
    margin-bottom: 18px;
}

.vd-chart svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.vd-grid {
    stroke: rgba(233, 205, 156, .12);
    stroke-width: 1;
}

.vd-line-flat {
    stroke: rgba(244, 238, 228, .4);
}

.vd-legend {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vd-legend li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(244, 238, 228, .8);
}

.vd-key {
    width: 18px;
    height: 4px;
    border-radius: 2px;
    flex: none;
}

.vd-key--gold {
    background: linear-gradient(90deg, #a9854f, #B39875);
}

.vd-key--flat {
    background: rgba(244, 238, 228, .4);
}

/* Linien-Zeichen-Animation beim Sichtbarwerden */
.vd-line-gold, .vd-area, .vd-dot {
    transition: none;
}

@media (prefers-reduced-motion: no-preference) {
    .vd-line-gold {
        stroke-dasharray: 360;
        stroke-dashoffset: 360;
    }

    .vd-area {
        opacity: 0;
    }

    .vd-dot {
        opacity: 0;
        transform: scale(0.5);
        transform-origin: 292px 16px;
    }

    .value-diagram.in .vd-line-gold {
        animation: vdDraw 1.3s var(--ease-out) forwards;
    }

    .value-diagram.in .vd-area {
        animation: vdFade .9s ease .5s forwards;
    }

    .value-diagram.in .vd-dot {
        animation: vdPop .4s var(--ease-out) 1.15s forwards;
    }
}

@keyframes vdDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes vdFade {
    to {
        opacity: 1;
    }
}

@keyframes vdPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .value-diagram {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px;
    }

    .vd-hub {
        flex-direction: row;
        gap: 14px;
    }

    .vd-link {
        transform: rotate(90deg);
        width: 40px;
    }
}

/* FOMO · Reaktivierung */
.fomo-sec {
    background: var(--color-bg-subtle);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.fomo-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.fomo-text h2 {
    font-weight: 800;
    font-size: var(--text-2xl);
    letter-spacing: -0.03em;
    margin: 6px 0 22px;
}

.fomo-text p {
    color: var(--color-text-body);
    margin-bottom: 18px;
}

.fomo-text .fomo-claim {
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--color-text);
    line-height: 1.4;
    padding-left: 18px;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #a9854f, #B39875) 1;
}

.fomo-text .btn {
    margin-top: 10px;
}

.fomo-visual {
    display: flex;
    justify-content: center;
}

.fomo-stat {
    width: 100%;
    max-width: 440px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 36px;
}

.fomo-stat .fs-label {
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-muted);
    display: block;
    margin-bottom: 16px;
}

.fs-bar {
    height: 20px;
    border-radius: 999px;
    background: var(--color-bg-subtle);
    overflow: hidden;
    display: flex;
}

.fs-bar .fs-fill {
    width: 20%;
    background: var(--color-text);
}

.fs-bar::after {
    content: "";
    flex: 1;
    background: linear-gradient(135deg, #a9854f, #B39875);
}

.fs-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 16px;
}

.fs-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--color-text-body);
}

.fs-row b {
    color: var(--color-text);
    font-weight: 700;
}

.fs-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex: none;
}

.fs-dot.active {
    background: var(--color-text);
}

.fs-dot.dormant {
    background: linear-gradient(135deg, #a9854f, #B39875);
}

.fs-note {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .fomo-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* TRUST · Hier sind wir + Kennzahlen */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.kpi-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kpi-num {
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -0.03em;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 10px;
}

.kpi-lbl {
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.45;
}

.kpi-chart-card {
    gap: 14px;
}

.kpi-chart-lbl {
    margin-bottom: 4px;
}

.kpi-chart {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 64px;
}

.kpi-chart span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #B39875, #a9854f);
    opacity: .55;
}

.kpi-chart span:last-child {
    opacity: 1;
}

.kpi-chart-foot {
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--color-muted);
}

.trust-factors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.trust-factors .pill {
    background: var(--color-surface);
}

.trust-factors .pill svg {
    color: #a9854f;
}

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

@media (max-width: 768px) {
    .kpi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .kpi-num {
        font-size: 32px;
    }
}

/* Testimonials: anonymisiertes Monogramm statt Foto */
.testi-card .who .who-mono {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    color: #a9854f;
}

/* BUTTON-REDESIGN · schlichte Prozess-Nummern statt grelles Gold */
.process-step .step-num {
    background: var(--color-bg-subtle);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    box-shadow: none;
    font-size: 20px;
    font-weight: 700;
}

/* FARBSCHEMA · flächiges Braun → Creme (Effekte bleiben) */
/* "80/20"-Statement bleibt dunkel — im Logo-Anthrazit (über --color-dark) */

/* "Unsere Expertise" (dunkler Abschnitt) — 2×2 mit Symbolen, ohne Verbinder-Linien */
.messen-col:not(:last-child)::after {
    display: none !important;
}

.messen-col .mc-ico {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: rgba(247, 245, 241, .05);
    border: 1px solid rgba(233, 205, 156, .20);
    color: #B39875;
    margin-bottom: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 34px;
}

.messen-footer {
    text-align: center;
    margin-top: 80px;
    color: #B39875;
    font-size: 20px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    opacity: 0.9;
}

.messen-footer .highlight {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    position: relative;
    padding: 0 4px;
}

.messen-footer .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #B39875;
    opacity: 0.5;
}

.messen-col .mc-ico svg {
    width: 24px;
    height: 24px;
}

/* KONTAKT: Formular ohne Foto, zentriert */
.form-wrap--solo {
    max-width: 640px;
    margin: 0 auto;
}

/* ALLES IN EINEM SYSTEM */
#system {
    padding: 100px 0;
    background-color: var(--color-bg-subtle);
}

.system-header {
    text-align: center;
    margin-bottom: 60px;
}

.system-header .eyebrow {
    color: #a9854f;
    margin-bottom: 12px;
}

.system-header h2 {
    font-size: 52px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.system-header p {
    color: var(--color-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.system-header p strong {
    color: #a9854f;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #a9854f;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-muted);
}

.vorteil-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.vorteil-main {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.vorteil-main-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f1ede6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #a9854f;
}

.vorteil-main-icon svg {
    width: 32px;
    height: 32px;
}

.vorteil-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.vorteil-content p {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.6;
}

.vorteil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.vorteil-grid::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: var(--color-border);
}

.vorteil-item {
    text-align: center;
}

.vorteil-item-icon {
    margin-bottom: 20px;
    color: #a9854f;
    display: flex;
    justify-content: center;
}

.vorteil-item-icon svg {
    width: 32px;
    height: 32px;
}

.vorteil-item h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.vorteil-item p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vorteil-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vorteil-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .system-header h2 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vorteil-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* WARUM SICHTBARKEIT ZÄHLT */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.why-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-stat {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 55px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #B39875;
    margin-bottom: 16px;
}

.why-ico {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.why-ico svg {
    width: 50px;
    height: 50px;
}

.why-col h3 {
    font-weight: 700;
    font-size: var(--text-lg);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.why-col p {
    font-size: var(--text-sm);
    color: var(--color-text-body);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* SIE EXPERTE / WIR EXPERTEN */
.duo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto 56px;
}

.duo-col {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 30px 32px;
}

.duo-col--us {
    background: var(--color-dark);
    border-color: rgba(233, 205, 156, .22);
}

.duo-label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-muted);
    margin-bottom: 18px;
}

.duo-label--gold {
    color: #B39875;
}

.duo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.duo-list li {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.duo-col--us .duo-list li {
    color: #f4eee4;
}

.duo-plus {
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #a9854f, #B39875);
    color: #2e2d2d;
    box-shadow: 0 6px 18px rgba(169, 133, 79, .28);
}

.duo-plus svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .duo {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .duo-plus {
        transform: rotate(90deg);
        justify-self: center;
    }
}

/* CASCADE-REVEAL für Section-Headlines (Buchstaben rollen beim Reinscrollen) */
.cascade .cc-word {
    display: inline-block;
    white-space: nowrap;
}

.cascade .cc {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    height: 1.18em;
}

.cascade .cc-in {
    display: inline-block;
    line-height: 1.18em;
    text-shadow: 0 1.18em currentColor;
    transform: translateY(0);
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
    .cascade .cc-in {
        transition: transform .5s cubic-bezier(.6, 0, .2, 1);
    }

    .cascade.in .cc-in {
        transform: translateY(-1.18em);
    }
}

/* FOOTER · dunkel, mehrspaltig, Glow-Linie, Scroll-In-Blur */
.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
    border-top: 1px solid rgba(233, 205, 156, .16);
    padding: 72px 0 44px;
}

.footer-glow {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 36%;
    max-width: 540px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #B39875 50%, transparent);
    filter: blur(2px);
    opacity: .65;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 2fr;
    gap: 56px;
}

.footer-brand .logo img {
    height: 90px;
    width: auto;
}

.footer-brand .logo-slogan {
    font-size: 14px;
    margin-top: -6px;
    margin-left: 35px;
}

.footer-brand p {
    color: rgba(244, 238, 228, .6);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-top: 20px;
    max-width: 340px;
}

.footer-brand .foot-tagline {
    color: #B39875;
    margin-top: 16px;
}

.footer-copy {
    color: rgba(244, 238, 228, .4) !important;
    font-size: 13px;
    margin-top: 20px !important;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h3 {
    font-family: 'DM Mono', monospace;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(244, 238, 228, .5);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: var(--text-sm);
    color: rgba(244, 238, 228, .74);
    transition: color .2s var(--ease-out);
}

.footer-col a:hover {
    color: #fff;
}

.footer-col a svg {
    width: 17px;
    height: 17px;
    color: #caa765;
    flex: none;
}

@media (prefers-reduced-motion: no-preference) {
    .site-footer .reveal-up {
        opacity: 0;
        transform: translateY(-8px);
        filter: blur(4px);
        transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), filter .8s var(--ease-out);
    }

    .site-footer.in .reveal-up {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .site-footer.in .footer-brand {
        transition-delay: .05s;
    }

    .site-footer.in .footer-col:nth-child(1) {
        transition-delay: .15s;
    }

    .site-footer.in .footer-col:nth-child(2) {
        transition-delay: .25s;
    }

    .site-footer.in .footer-col:nth-child(3) {
        transition-delay: .35s;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

/* "Hier sind wir" nutzt das Vergleichs-Design — beide Seiten positiv */
.trust-sec .compare-grid {
    margin-bottom: 56px;
}

.trust-sec .compare-before .compare-list li {
    color: var(--color-text-body);
}

.trust-sec .compare-before .ico {
    background: var(--color-bg-subtle);
    border-color: var(--color-border);
    color: #a9854f;
}

/* WARUM SICHTBARKEIT ZÄHLT · dunkler Anthrazit-Abschnitt */
.why-sec {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
    border-top: 1px solid rgba(233, 205, 156, .16);
    border-bottom: 1px solid rgba(233, 205, 156, .16);
}

.why-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(247, 245, 241, .08), transparent 20%),
    radial-gradient(ellipse 70% 60% at 30% 38%, rgba(169, 133, 79, .14), rgba(169, 133, 79, .04) 48%, transparent 72%);
}

.why-sec > .wrap {
    position: relative;
    z-index: 1;
}

.why-sec .section-head h2 {
    color: #f4eee4;
}

.why-sec .section-head p {
    color: rgba(244, 238, 228, .62) !important;
}

.why-sec .why-stat {
    color: #B39875;
}

.why-sec .why-ico {
    border-color: rgba(233, 205, 156, .20);
    color: #B39875;
}

.why-sec .why-col h3 {
    color: #f4eee4;
}

.why-sec .why-col p {
    color: rgba(244, 238, 228, .66);
}

/* MID-PAGE CTA · dunkler Anthrazit-Banner */
.midcta {
    background: var(--color-dark);
    border-color: rgba(233, 205, 156, .22);
}

.midcta-text h2 {
    color: #f4eee4;
}

.midcta-text p {
    color: rgba(244, 238, 228, .82);
}

.midcta .btn-primary {
    background: #f4eee4;
    color: #2e2d2d;
    border-color: #f4eee4;
}

@media (hover: hover) and (pointer: fine) {
    .midcta .btn-primary:hover {
        filter: brightness(1.04);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 60px;
        text-align: center;
    }

    .hero .wrap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .hero-inner {
        text-align: center;
        max-width: 100%;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero .subline {
        text-align: center;
        margin: 0 auto 30px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-secondary-text {
        text-align: center;
        font-size: 18px;
        margin-top: 0;
    }

    .hero-overlay {
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    }
}

/* Inline Link Style */
.inline-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    transition: font-weight 0.2s ease, border-bottom-style 0.2s ease;
    cursor: pointer;
}

.inline-link:hover {
    font-weight: 700;
    border-bottom-style: solid;
}
