/* ==========================================================================
   Vermögensbrücke - Stylesheet v3
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    /* Akzentfarben */
    --gold: #C9A227;
    --gold-light: #D4B44A;
    --gold-dark: #A8871E;
    --salbei: #7A8B6E;
    --salbei-light: #8A9B7E;

    /* Texte & Graustufen */
    --black: #2B2B2B;
    --gray-dark: #4A4A4A;
    --gray-mid: #808080;
    --gray-light: #B8B8B8;

    /* Hintergründe */
    --beige-dark: #F1E2D3;
    --beige-light: #F6EDE4;
    --cream: #FDFBF9;
    --white: #FFFFFF;

    /* Semantische Farben (Mapping für Komponenten) */
    --color-primary: var(--black);
    --color-primary-light: var(--gray-dark);
    --color-primary-dark: var(--black);
    --color-accent: var(--gold);
    --color-accent-light: var(--gold-light);
    --color-accent-dark: var(--gold-dark);

    --color-white: var(--white);
    --color-gray-50: var(--cream);
    --color-gray-100: var(--beige-light);
    --color-gray-200: var(--beige-dark);
    --color-gray-300: var(--gray-light);
    --color-gray-400: var(--gray-mid);
    --color-gray-500: var(--gray-dark);
    --color-gray-600: var(--gray-dark);
    --color-gray-700: var(--black);
    --color-gray-800: var(--black);
    --color-gray-900: #1a1a1a;

    --color-success: var(--salbei);
    --color-error: #c0392b;

    /* Typografie */
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Abstände */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 80px;

    /* Schatten */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Übergänge */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-pill: 8px;
    --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--black);
    background-color: var(--beige-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2rem, 8.5vw, 4.5rem); line-height: 1.15; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

/* Inline-Links in Fließtext: Pfeil als Erkennungsmerkmal */
p a:not(.btn):not([class])::after,
li a:not(.btn):not([class])::after,
.pillar-body a:not(.btn)::after {
    content: ' \2192';
    font-size: 0.85em;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}
p a:not(.btn):not([class]):hover::after,
li a:not(.btn):not([class]):hover::after,
.pillar-body a:not(.btn):hover::after {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* --------------------------------------------------------------------------
   Eyebrow Labels
   -------------------------------------------------------------------------- */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 600;
}

.eyebrow--dark {
    display: inline-block;
    background: var(--black);
    color: var(--beige-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.eyebrow--light {
    display: inline-block;
    background: var(--beige-light);
    color: var(--black);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: var(--beige-light);
    border-bottom: 1px solid var(--gray-light);
    transition: height 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

/* Hide/Show on scroll direction */
.site-header.nav-hidden {
    transform: translateY(-100%) !important;
}

/* --------------------------------------------------------------------------
   Klarheitsbrücke – Transparent Header
   -------------------------------------------------------------------------- */
.page-klarheitsbruecke .site-header,
.page-ruhestand .site-header,
.page-geldanlage .site-header,
.page-immobilie .site-header,
.page-servicemodelle .site-header,
.page-begleitmodelle .site-header,
.page-case01-florian .site-header,
.page-case02-stefan-julia .site-header,
.page-case03-tobias-elena .site-header,
.page-case04-kathrin-jens .site-header,
.page-case05-hendrik-sandra .site-header,
.page-pionier .site-header {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 1s ease, transform 1s ease, height 0.8s ease, box-shadow 0.8s ease, background 0.8s ease, border-color 0.8s ease;
}

.page-klarheitsbruecke .site-header.scrolled,
.page-ruhestand .site-header.scrolled,
.page-geldanlage .site-header.scrolled,
.page-immobilie .site-header.scrolled,
.page-servicemodelle .site-header.scrolled,
.page-begleitmodelle .site-header.scrolled,
.page-case01-florian .site-header.scrolled,
.page-case02-stefan-julia .site-header.scrolled,
.page-case03-tobias-elena .site-header.scrolled,
.page-case04-kathrin-jens .site-header.scrolled,
.page-case05-hendrik-sandra .site-header.scrolled,
.page-pionier .site-header.scrolled {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}

/* Logo ausblenden im transparenten Zustand */
.page-klarheitsbruecke .header-logo {
    transition: opacity 0.8s ease;
}

.page-klarheitsbruecke .site-header:not(.scrolled) .header-logo {
    opacity: 0;
    pointer-events: none;
}

/* Nav-Links dunkel + volle Opazität */
.page-klarheitsbruecke .site-header:not(.scrolled) .header-nav > a,
.page-klarheitsbruecke .site-header:not(.scrolled) .header-nav .nav-dropdown > a {
    color: var(--black);
    opacity: 0.85;
}

.page-klarheitsbruecke .site-header:not(.scrolled) .header-nav > a:hover,
.page-klarheitsbruecke .site-header:not(.scrolled) .header-nav .nav-dropdown:hover > a {
    color: var(--gold);
    opacity: 1;
}

/* CTA Button – Glaseffekt */
.page-klarheitsbruecke .header-cta {
    transition: all 0.8s ease;
}

.page-klarheitsbruecke .site-header:not(.scrolled) .header-cta {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    color: var(--black);
}

.page-klarheitsbruecke .site-header:not(.scrolled) .header-cta:hover {
    background: rgba(255, 255, 255, 0.35);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Dropdown-Menüs bleiben im transparenten Zustand normal */
.page-klarheitsbruecke .site-header:not(.scrolled) .dropdown-menu {
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* Mobile: Hamburger-Icon dunkel halten */
.page-klarheitsbruecke .site-header:not(.scrolled) .mobile-toggle span {
    background: var(--black);
}

/* KB Hint Bar (Themenseiten) */
.kb-hint-bar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--salbei);
    border-bottom: none;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.82rem;
    color: var(--white);
    transition: top 0.3s ease, opacity 1s ease, transform 1s ease;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}
.kb-hint-bar.scrolled {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    top: 70px;
}
.site-header.nav-hidden ~ main .kb-hint-bar.scrolled {
    top: 0;
}
@media (max-width: 768px) {
    .kb-hint-bar { font-size: 0.75rem; padding: 6px 12px; }
    .kb-hint-bar.scrolled { top: var(--header-height); }
}
.kb-hint-bar a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}
.kb-hint-bar a:hover {
    text-decoration: underline;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 24px;
}

.header-logo img {
    height: 42px;
    width: auto;
    max-width: 75vw;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav > a,
.header-nav .nav-dropdown > a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
    position: relative;
}


/* Hover */
.header-nav > a:hover,
.header-nav .nav-dropdown:hover > a {
    opacity: 1;
    color: var(--gold);
}

/* Active State */
.header-nav > a.active {
    opacity: 1;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown > a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transition: opacity 0.2s ease;
}

.nav-dropdown:hover > a::after {
    opacity: 0.3;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(250, 247, 240, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(122, 139, 110, 0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 10px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-top: 16px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(250, 247, 240, 0.88);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.75;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 12px;
    margin: 2px 0;
}

.dropdown-menu a:hover {
    opacity: 1;
    background: rgba(122, 139, 110, 0.1);
    font-weight: 600;
}

/* Dropdown Separator */
.dropdown-separator {
    height: 1px;
    background: var(--gray-light);
    margin: 10px 12px;
}

/* Dropdown Featured Item (z.B. Klarheitsbrücke) */
.dropdown-menu a.dropdown-featured {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    color: var(--black);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 12px;
    margin: 2px 0;
    opacity: 1;
}

.dropdown-featured-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--black);
    white-space: nowrap;
    transition: font-weight 0.2s ease;
}

.dropdown-featured-slogan {
    font-size: 0.8rem;
    color: var(--gray-mid);
    line-height: 1.4;
    white-space: nowrap;
}

.dropdown-menu a.dropdown-featured:hover {
    background: rgba(122, 139, 110, 0.1);
    opacity: 1;
}

.dropdown-featured:hover .dropdown-featured-label {
    font-weight: 600;
}

/* Dropdown Items mit Sublabel */
.dropdown-sublabel-item {
    display: flex;
    flex-direction: column;
    padding: 10px 16px;
    color: var(--black);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 12px;
    margin: 2px 0;
}

.dropdown-item-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--black);
    transition: font-weight 0.2s ease;
}

.dropdown-item-sublabel {
    font-size: 0.78rem;
    color: var(--gray-mid);
    margin-top: 2px;
    line-height: 1.4;
}

.dropdown-sublabel-item:hover {
    background: rgba(122, 139, 110, 0.1);
}

.dropdown-sublabel-item:hover .dropdown-item-label {
    font-weight: 600;
}

/* Mobile Nav Separator (zwischen Hauptitems) */
.mobile-nav-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 16px 0;
}

/* Mobile Submenu Separator */
.mobile-submenu-separator {
    height: 1px;
    background: var(--gray-light);
    margin: 8px 0;
}

/* Header CTA Button */
.header-cta {
    margin-left: 28px;
    background: var(--gold);
    color: var(--black);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.25);
    flex-shrink: 0;
}

.header-cta:hover {
    background: var(--salbei);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(122, 139, 110, 0.35);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    background: none;
    border: none;
    padding: 0;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
}

.mobile-toggle span:nth-child(1) { transform: translateY(-7px); }
.mobile-toggle span:nth-child(2) { transform: translateY(0); }
.mobile-toggle span:nth-child(3) { transform: translateY(7px); }

.mobile-toggle.active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(122, 139, 110, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 100px 40px 40px;
    box-shadow: -6px 0 32px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu nav > a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    display: block;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu nav > a:hover {
    opacity: 1;
}

.mobile-menu-cta {
    margin-top: 40px;
}

.mobile-menu-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    background: rgba(250, 247, 240, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(122, 139, 110, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    color: var(--black);
}

.mobile-menu-cta .btn:hover {
    background: var(--salbei);
    color: var(--white);
    border-color: var(--salbei);
}

.mobile-menu-contact {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-contact p {
    font-size: 0.9rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.mobile-menu-contact a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.mobile-menu-contact a:hover {
    opacity: 1;
}

/* Mobile Submenu */
.mobile-nav-item {
    display: flex;
    flex-direction: column;
}

.mobile-nav-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-parent:hover,
.mobile-nav-parent:active {
    color: var(--white);
    opacity: 1;
}

.submenu-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.mobile-nav-item.open .submenu-dot {
    opacity: 0.3;
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 0;
    margin-top: 0;
}

.mobile-nav-item.open .mobile-submenu {
    max-height: 400px;
    padding: 6px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.mobile-submenu a {
    font-size: 1rem;
    opacity: 0.8;
    padding: 10px 14px;
    border-bottom: none;
    color: var(--black);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-submenu a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.35);
}

.mobile-submenu-featured {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-featured-slogan {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Sections & Content Blocks
   -------------------------------------------------------------------------- */
.section {
    padding: clamp(80px, 12vw, 140px) 0;
}

.section--hero {
    padding: calc(var(--header-height) + var(--space-24)) 0 var(--space-24);
    background: var(--black);
    color: var(--beige-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.section--hero h1,
.section--hero h2,
.section--hero h3 {
    color: var(--beige-light);
}

.section--hero .hero-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-light);
    max-width: 600px;
    line-height: 1.7;
}

.section--light {
    background: var(--cream);
}

.section--dark {
    background: var(--black);
    color: var(--beige-light);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--beige-light);
}

.section--beige {
    background: var(--beige-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--gray-dark);
}

/* Page Hero (Unterseiten) */
.section--page-hero {
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
    background: var(--black);
    color: var(--beige-light);
}

.section--page-hero.section--page-hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--header-height) 60px 0;
}

.section--page-hero-full .container {
    max-width: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.section--page-hero h1 {
    color: var(--beige-light);
    margin-bottom: var(--space-4);
}

.section--page-hero .page-hero-lead {
    font-size: var(--text-xl);
    color: var(--gray-light);
    max-width: 650px;
}

/* Page Hero with Image Grid */
.page-hero-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--beige-dark);
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - var(--header-height) - 60px);
}

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

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card-grid {
    display: grid;
    gap: var(--space-8);
    align-items: stretch;
}

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

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

a.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
}

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

.card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.card p {
    color: var(--gray-dark);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 20px 40px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn--gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn--gold:hover {
    background: var(--salbei);
    color: var(--white);
    border-color: var(--salbei);
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: var(--salbei);
    color: var(--white);
    border-color: var(--salbei);
    transform: translateY(-2px);
}

.btn--black {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn--black:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--salbei {
    background: var(--salbei);
    color: var(--white);
    border-color: var(--salbei);
}

.btn--salbei:hover {
    background: var(--salbei-light);
    border-color: var(--salbei-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122, 139, 110, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn--outline:hover {
    background: var(--black);
    color: var(--beige-light);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.btn--secondary {
    background: transparent;
    color: var(--beige-light);
    border-color: rgba(246, 237, 228, 0.4);
}

.btn--secondary:hover {
    background: rgba(246, 237, 228, 0.1);
    border-color: rgba(246, 237, 228, 0.7);
    color: var(--beige-light);
}

.btn--white {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: var(--black);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.btn--lg {
    padding: 20px 48px;
    font-size: var(--text-base);
}

.btn--sm {
    padding: 12px 24px;
    font-size: var(--text-sm);
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* Text link button */
.btn-text {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding-bottom: 2px;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-text:hover {
    gap: 14px;
}

.btn-text:hover::after {
    width: 100%;
}

.btn-text--light {
    color: var(--beige-light);
}

.btn-text--light::after {
    background: var(--beige-light);
}

/* --------------------------------------------------------------------------
   Features / Content Rows
   -------------------------------------------------------------------------- */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    margin-bottom: var(--space-16);
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row--reverse .feature-content {
    order: 2;
}

.feature-row--reverse .feature-visual {
    order: 1;
}

.feature-content h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.feature-content p {
    font-size: var(--text-lg);
    color: var(--gray-dark);
    line-height: 1.8;
}

.feature-visual {
    background: var(--beige-dark);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   Stats / Numbers
   -------------------------------------------------------------------------- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stat-item {
    padding: var(--space-6);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--gold);
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-mid);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.section--cta {
    background: var(--black);
    color: var(--beige-light);
    text-align: center;
    padding: var(--space-20) 0;
}

.section--cta h2 {
    color: var(--beige-light);
    margin-bottom: var(--space-4);
}

.section--cta p {
    color: var(--gray-light);
    font-size: var(--text-lg);
    max-width: 550px;
    margin: 0 auto var(--space-8);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Honeypot field */
.form-honey {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   FAQ / Accordion
   -------------------------------------------------------------------------- */
.accordion {
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.section--light .accordion {
    background: var(--white);
}
.section--light .accordion .accordion-item.open .accordion-trigger {
    background: var(--black);
    color: var(--white);
}
.section:not(.section--light):not(.section--dark) .accordion {
    background: var(--cream);
}
.section:not(.section--light):not(.section--dark) .accordion .accordion-trigger {
    background: var(--cream);
}
.section:not(.section--light):not(.section--dark) .accordion .accordion-trigger:hover,
.section:not(.section--light):not(.section--dark) .accordion .accordion-item.open .accordion-trigger {
    background: var(--black);
    color: var(--white);
}

.accordion-item {
    border-bottom: none;
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-5) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--black);
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition-fast), color var(--transition-fast), padding-left 0.25s ease;
}

.accordion-trigger:hover {
    background: var(--black);
    color: var(--white);
}

.accordion-trigger::before {
    content: none;
}

.accordion-trigger::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-left: var(--space-3);
    transition: opacity 0.2s ease;
}

.accordion-item.open .accordion-trigger {
    background: var(--black);
    color: var(--white);
}

.accordion-item.open .accordion-trigger::after {
    background: var(--gold);
    opacity: 1;
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease, padding 0.35s ease;
    padding: 0 var(--space-6);
}

.accordion-content > * {
    overflow: hidden;
}

.accordion-item.open .accordion-content {
    grid-template-rows: 1fr;
    padding-bottom: var(--space-5);
}

.accordion-content p {
    color: var(--gray-dark);
    line-height: 1.8;
}

/* Mobile: Chevron → X */
@media (max-width: 768px) {
    .accordion-trigger {
        position: relative;
        padding-right: 48px;
    }

    .accordion-trigger::before,
    .accordion-trigger::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 10px;
        height: 2px;
        background: var(--gold);
        border-radius: 1px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        /* Reset dot styles */
        display: block;
        min-width: 0;
        min-height: 0;
        margin: 0;
        flex-shrink: 0;
    }

    .accordion-trigger::before {
        right: 20px;
        transform: translate(-3px, -2px) rotate(45deg);
    }

    .accordion-trigger::after {
        right: 20px;
        transform: translate(3px, -2px) rotate(-45deg);
    }

    .accordion-item.open .accordion-trigger::before {
        transform: translate(0, 0) rotate(45deg);
        opacity: 1;
    }

    .accordion-item.open .accordion-trigger::after {
        transform: translate(0, 0) rotate(-45deg);
    }
}

/* --------------------------------------------------------------------------
   Servicemodelle / Pricing
   -------------------------------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

/* kein hover effekt bei pricing cards */

.pricing-card--featured {
    border-color: var(--gold);
    position: relative;
}

.pricing-card--featured::before {
    content: 'Empfohlen';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: var(--black);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.pricing-card .pricing-desc {
    color: var(--gray-dark);
    font-size: var(--text-sm);
    margin-bottom: var(--space-8);
}

.pricing-features {
    text-align: left;
    margin-bottom: var(--space-8);
}

.pricing-features li {
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--gray-dark);
    border-bottom: 1px solid var(--cream);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--salbei);
    margin-right: var(--space-3);
    font-weight: 700;
}

/* Dark-Kontext: Checkmark-Farbe anpassen */
.section--dark .pricing-features li::before {
    color: var(--gold);
}

/* Kreuze statt Häkchen */
.pricing-features--cross li::before {
    content: '\2717';
    color: var(--color-error);
}
.section--dark .pricing-features--cross li::before {
    color: #c0392b;
}

/* --------------------------------------------------------------------------
   Klarheitsbrücke Pricing-Rechner
   -------------------------------------------------------------------------- */
.kb-pricing {
    max-width: 680px;
    margin: 0 auto;
}

/* Basis-Auswahl */
.kb-pricing-basis {
    max-width: 480px;
    margin: 0 auto var(--space-10);
}

.kb-pricing-card {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}

.kb-pricing-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.kb-pricing-price {
    font-size: var(--text-3xl);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-2);
    transition: opacity 0.2s ease;
}

.kb-pricing-price span {
    font-size: var(--text-sm);
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-mid);
}

.kb-pricing-card p {
    font-size: var(--text-sm);
    color: var(--gray-dark);
}

/* Einzelperson-Toggle */
.kb-single-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-5);
    padding: var(--space-3) var(--space-5);
    background: var(--white);
    border: 2px solid var(--beige-dark);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--gray-dark);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.kb-single-toggle:hover {
    border-color: var(--gold-light);
}

.kb-single-toggle strong {
    color: var(--gold-dark);
    font-weight: 600;
}

.kb-toggle-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-mid);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: border-color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.kb-toggle-box svg {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.kb-single-toggle.active .kb-toggle-box {
    border-color: var(--gold);
    background: var(--gold);
}

.kb-single-toggle.active .kb-toggle-box svg {
    opacity: 1;
    stroke: var(--white);
}

/* Zuschläge */
.kb-pricing-addons {
    margin-bottom: var(--space-10);
}

.kb-pricing-addons h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.kb-addon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: var(--space-4) var(--space-5);
    border: none;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    cursor: pointer;
    transition: background 0.2s ease;
    background: var(--cream);
}
.kb-addon .kb-immo-counter {
    width: 100%;
    margin-top: 0;
    display: none;
}
.kb-addon .kb-immo-counter.visible {
    display: flex;
    margin-top: var(--space-3);
}

.kb-addon:hover {
    background: var(--beige-dark);
}

.kb-addon.active {
    background: rgba(201, 162, 39, 0.08);
}

.kb-addon-left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.kb-addon-check {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid var(--beige-dark);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.kb-addon-check svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    stroke: var(--white);
    transition: opacity 0.2s ease;
}

.kb-addon.active .kb-addon-check {
    background: var(--gold);
    border-color: var(--gold);
}

.kb-addon.active .kb-addon-check svg {
    opacity: 1;
}

.kb-addon-left strong {
    display: block;
    font-size: var(--text-base);
    margin-bottom: 2px;
}

.kb-addon-left span {
    font-size: var(--text-sm);
    color: var(--gray-mid);
}

.kb-addon-price {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--gold-dark);
    white-space: nowrap;
}

/* Addon-Counter (beide Partner, Immobilien-Zähler) */
.kb-addon-counter,
.kb-immo-counter {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease, visibility 0s 0.3s;
    margin-bottom: 0;
}

.kb-addon-counter.visible,
.kb-immo-counter.visible {
    max-height: 60px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease, visibility 0s;
    margin-bottom: var(--space-3);
}

.kb-beide-check {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-5);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--gray-dark);
}

.kb-beide-box {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: 2px solid var(--beige-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.kb-beide-box svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    stroke: var(--white);
    transition: opacity 0.2s ease;
}

.kb-beide-check.active .kb-beide-box {
    background: var(--gold);
    border-color: var(--gold);
}

.kb-beide-check.active .kb-beide-box svg {
    opacity: 1;
}

.kb-immo-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
    color: var(--gray-dark);
}

.kb-counter-controls {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.kb-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--beige-dark);
    background: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.kb-counter-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.06);
}

.kb-counter-value {
    font-weight: 700;
    font-size: var(--text-lg);
    min-width: 24px;
    text-align: center;
}

/* Info-Button (Fragezeichen bei Zuschlägen) */
.info-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--salbei);
    background: transparent;
    color: var(--salbei);
    font-size: 0.75rem;
    font-weight: 600;
    font-style: italic;
    font-family: serif;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    vertical-align: middle;
    margin-left: 6px;
}

.info-btn:hover {
    background: var(--salbei);
    color: var(--white);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    padding-top: 48px;
    max-width: 450px;
    width: 100%;
    position: relative;
    margin: auto;
}

.modal h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.modal p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

.modal .hint {
    margin-top: 12px;
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.6;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--beige-light);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--beige-dark);
}

/* Utility: nowrap nur auf Desktop */
.nowrap-desktop {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nowrap-desktop {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 16px;
        align-items: flex-start;
    }
    .modal {
        padding: 24px;
        padding-top: 44px;
        border-radius: 16px;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
    }
    .modal h4 {
        font-size: 1.1rem;
    }
    .modal p {
        font-size: 0.9rem;
    }
    .modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Ergebnis */
.kb-pricing-result {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
}

.kb-pricing-result-label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-mid);
    margin-bottom: var(--space-2);
}

.kb-pricing-result-total {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-6);
}

.kb-pricing-result-breakdown {
    text-align: left;
    border-top: 1px solid var(--beige-dark);
    padding-top: var(--space-4);
    margin-bottom: var(--space-6);
}

.kb-breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--gray-dark);
}

.kb-breakdown-row.sub {
    color: var(--gray-mid);
}

.kb-breakdown-row small {
    font-size: var(--text-xs);
    color: var(--gray-light);
}

.kb-breakdown-row strong {
    white-space: nowrap;
}

.kb-breakdown-total {
    border-top: 1px solid var(--beige-dark);
    margin-top: var(--space-2);
    padding-top: var(--space-3);
    font-weight: 600;
    color: var(--black);
}

.kb-pricing-perday {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-2);
}

.kb-perday-number {
    font-size: var(--text-2xl);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gold);
}

.kb-perday-label {
    font-size: var(--text-sm);
    color: var(--gray-mid);
}

@media (max-width: 768px) {
    .kb-pricing-card {
        padding: var(--space-6);
    }

    .kb-addon {
        padding: var(--space-3) var(--space-4);
    }

    .kb-addon-left {
        gap: var(--space-3);
        min-width: 0;
    }

    .kb-addon-left div {
        min-width: 0;
    }

    .kb-addon-left strong {
        font-size: var(--text-sm);
        display: block;
        white-space: normal;
        word-break: break-word;
    }

    .kb-addon-left span {
        font-size: var(--text-xs);
    }

    .kb-addon-price {
        font-size: var(--text-xs);
        flex-shrink: 0;
    }

    .kb-pricing-result {
        padding: var(--space-6);
    }

    .kb-pricing-result-total {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

/* --------------------------------------------------------------------------
   Legal Pages (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */
.legal-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.legal-content h2 {
    font-size: var(--text-2xl);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
}

.legal-content h3 {
    font-size: var(--text-xl);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
}

.legal-content p {
    color: var(--gray-dark);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: var(--space-6);
    margin-bottom: var(--space-4);
}

.legal-content ul li {
    list-style: disc;
    color: var(--gray-dark);
    margin-bottom: var(--space-2);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--black);
    color: var(--gray-light);
    padding: var(--space-16) 0 var(--space-8);
}

/* Footer Newsletter */
.footer-newsletter {
    padding: var(--space-16) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-12);
}
.page-klarstart .footer-newsletter { display: none; }

.footer-newsletter-title {
    color: var(--beige-light);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
}

.footer-newsletter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.footer-newsletter-row p {
    color: var(--gray-light);
    line-height: 1.8;
}

.footer-newsletter-form {
    display: flex;
    gap: var(--space-3);
}

.footer-newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: var(--beige-light);
    transition: border-color 0.2s ease;
}

.footer-newsletter-form input[type="email"]::placeholder {
    color: var(--gray-mid);
}

.footer-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-newsletter {
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: var(--salbei);
    color: var(--white);
}

.btn-newsletter:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-col--brand img {
    margin-bottom: 16px;
}

.footer-slogan {
    font-style: italic;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-col--brand > p {
    color: var(--gray-light);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.footer-location {
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--gray-light);
}

.footer-location img {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--beige-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

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

.footer-links--contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links--contact img {
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--text-sm);
}

.footer-bottom a {
    color: var(--gray-mid);
    font-size: var(--text-sm);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   Modal Popup
   -------------------------------------------------------------------------- */
.form-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.form-modal {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 36px 32px;
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.form-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-modal-icon.success {
    background: var(--salbei);
}

.form-modal-icon.error {
    background: var(--salbei);
}

.form-modal-icon svg {
    width: 28px;
    height: 28px;
}

.form-modal-message {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 24px;
}

.form-modal-btn {
    font-family: var(--font-body);
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.form-modal-btn:hover {
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-newsletter-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    /* Globaler Overflow-Fix */
    html, body {
        overflow-x: hidden;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .header-logo img {
        height: 38px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .section {
        padding: clamp(60px, 10vw, 100px) 0;
    }

    .section--hero {
        padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
        min-height: auto;
    }

    .section--page-hero {
        padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-10);
    }

    .section--page-hero .page-hero-lead {
        font-size: var(--text-lg);
    }

    .section--page-hero.section--page-hero-full {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-10);
    }

    .section--page-hero-full .container {
        padding: 0 20px;
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
    }

    .page-hero-visual {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
        max-height: 400px;
    }

    .hero-media {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-kicker {
        word-break: break-word;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .feature-row--reverse .feature-content,
    .feature-row--reverse .feature-visual {
        order: unset;
    }

    .card-grid--2,
    .card-grid--3,
    .card-grid--4 {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .stat-number { font-size: var(--text-3xl); }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: left;
    }

    .footer-col--brand {
        align-items: flex-start;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-links--contact {
        align-items: flex-start;
    }

    .footer-location {
        width: fit-content;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: left;
    }

    .btn-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .header-logo img {
        height: 34px;
    }

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

    .footer-newsletter-form {
        flex-direction: column;
    }

    .trust-bar-inner {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .trust-item {
        font-size: 0.78rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Homepage: Neue Komponenten
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Layout (2-spaltig mit Media)
   -------------------------------------------------------------------------- */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-kicker {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: var(--space-4);
}
.kicker-break { display: none; }
@media (max-width: 768px) {
    .kicker-break { display: inline; }
}

.hero-content h1 {
    margin-bottom: var(--space-6);
}

.hero-content .hero-subtitle {
    margin-bottom: var(--space-8);
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--text-sm);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .hero-media {
        order: -1;
    }
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.section-testimonials {
    background: var(--black);
    padding: 120px 0 100px;
    color: var(--beige-light);
}

.section-testimonials > .container > h2 {
    color: var(--beige-light);
    max-width: 700px;
    margin-bottom: var(--space-12);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.testimonial {
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
}

.testimonial-stars {
    color: var(--gold);
    font-size: var(--text-lg);
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
}

.testimonial blockquote {
    font-size: var(--text-base);
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    font-style: normal;
}

.testimonial cite {
    font-style: normal;
    font-size: var(--text-sm);
    color: var(--gray-mid);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-testimonials {
        padding: 80px 0 60px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Statement Section (2-spaltig: Headline + Body)
   -------------------------------------------------------------------------- */
.section-statement {
    padding: clamp(80px, 12vw, 140px) 0;
}

.statement-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.statement-layout h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.statement-body p {
    font-size: var(--text-lg);
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.statement-body em {
    font-style: italic;
    color: var(--black);
}

.statement-body .btn-text {
    margin-top: var(--space-4);
}

@media (max-width: 768px) {
    .statement-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

/* --------------------------------------------------------------------------
   Testimonial Video
   -------------------------------------------------------------------------- */
.testimonial-video {
    margin-top: var(--space-12);
}

.testimonial-video .feature-visual--wide {
    aspect-ratio: 21/9;
    border-radius: var(--radius-xl);
}

/* --------------------------------------------------------------------------
   Dual Image Section
   -------------------------------------------------------------------------- */
.section-dual-image {
    padding: var(--space-8) 0;
}

.dual-image-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-6);
}

.feature-visual--landscape {
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
}

.feature-visual--portrait {
    aspect-ratio: 3/4;
    border-radius: var(--radius-xl);
}

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

/* --------------------------------------------------------------------------
   Differentiators (01 / 02 / 03)
   -------------------------------------------------------------------------- */
.section--no-top-padding {
    padding-top: 0;
}

.differ {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-8);
    max-width: 850px;
}

.differ-number {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    color: var(--beige-dark);
    line-height: 1;
    min-width: 80px;
}

.differ-content h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--black);
}

.differ-content p {
    font-size: var(--text-lg);
    color: var(--gray-dark);
    line-height: 1.8;
}

.differ-content em {
    font-style: italic;
    color: var(--black);
}

@media (max-width: 768px) {
    .differ {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .differ-number {
        font-size: var(--text-4xl);
    }
}

/* --------------------------------------------------------------------------
   Link Arrow
   -------------------------------------------------------------------------- */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    margin-top: var(--space-4);
    transition: gap var(--transition-base), color var(--transition-fast);
}

.link-arrow::after {
    content: '\2192';
    transition: transform var(--transition-base);
}

.link-arrow:hover {
    color: var(--gold);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.card .link-arrow {
    margin-top: auto;
    padding-top: var(--space-4);
}

.card:has(.link-arrow) {
    display: flex;
    flex-direction: column;
}

/* --------------------------------------------------------------------------
   Bento Grid
   -------------------------------------------------------------------------- */
.bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-6);
}

.bento-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bento-item--text {
    background: var(--white);
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--beige-dark);
}

.bento-item--text h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.bento-item--text p {
    font-size: var(--text-lg);
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.bento-item--image {
    min-height: 300px;
}

.bento-item--image .feature-visual {
    height: 100%;
    border-radius: 0;
    aspect-ratio: auto;
}

.bento-item--small {
    min-height: 200px;
}

.bento-item--accent {
    background: var(--black);
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: background var(--transition-base);
}

.bento-item--accent:hover {
    background: var(--gray-dark);
}

.bento-item--accent h3 {
    font-size: var(--text-3xl);
    color: var(--beige-light);
}

.bento-item--accent .link-arrow {
    color: var(--gold);
    margin-top: var(--space-8);
}

.bento-item--accent:hover .link-arrow {
    color: var(--beige-light);
}

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

    .bento-item--text {
        padding: var(--space-6);
    }

    .bento-item--accent {
        padding: var(--space-6);
    }
}

/* --------------------------------------------------------------------------
   Tabs
   -------------------------------------------------------------------------- */
.tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    min-height: 400px;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.tab-trigger {
    display: block;
    width: 100%;
    padding: var(--space-5) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--gray-mid);
    text-align: left;
    background: none;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1.5;
}

.tab-trigger:hover {
    color: var(--black);
    background: var(--cream);
}

.tab-trigger.is-active {
    color: var(--black);
    background: var(--cream);
    border-color: var(--beige-dark);
    font-weight: 600;
}

.tabs-body {
    padding: var(--space-6);
    background: var(--cream);
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-lg);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

.tab-panel h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-mid);
    margin-bottom: var(--space-4);
}

.tab-panel p {
    font-size: var(--text-base);
    color: var(--gray-dark);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .tabs {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: var(--space-2);
        padding-bottom: var(--space-2);
        -webkit-overflow-scrolling: touch;
    }

    .tab-trigger {
        white-space: nowrap;
        font-size: var(--text-sm);
        padding: var(--space-3) var(--space-4);
        flex-shrink: 0;
    }
}

/* --------------------------------------------------------------------------
   Fullwidth Image Section
   -------------------------------------------------------------------------- */
.section-fullimage {
    padding: var(--space-8) 0;
}

.feature-visual--wide {
    aspect-ratio: 21/7;
    border-radius: var(--radius-xl);
}

/* --------------------------------------------------------------------------
   Process Steps
   -------------------------------------------------------------------------- */
.steps {
    max-width: 750px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-6);
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--beige-dark);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--gold);
    line-height: 1;
}

.step-content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.step-content p {
    font-size: var(--text-base);
    color: var(--gray-dark);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .step {
        grid-template-columns: 40px 1fr;
        gap: var(--space-4);
        padding: var(--space-6) 0;
    }

    .step-number {
        font-size: var(--text-3xl);
    }
}

/* ==========================================================================
   Homepage v4: Neue Sektionen
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero (Mockup-Stil: cream + diagonal + viewport-fit)
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--cream);
    padding: var(--header-height) 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--white);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-kicker {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-kicker::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-lead {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-dark);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-media {
    position: relative;
}

.hero-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--beige-dark);
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - var(--header-height) - 60px);
}

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

.hero-visual video::-webkit-media-controls-pip-button {
    display: none !important;
}

.hero-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(43, 43, 43, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    transition: transform 0.2s;
}

.hero-overlay:hover {
    transform: scale(1.01);
}

.hero-play-btn {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.hero-overlay-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.hero-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--beige-light);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        max-height: none;
        padding: calc(var(--header-height) + 24px) 24px 40px;
    }

    .hero::before {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-visual {
        max-height: 400px;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-actions .btn-text {
        justify-content: center;
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
    background: var(--black);
    padding: 18px 60px;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: var(--container-max);
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.trust-check {
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 768px) {
    .trust-bar {
        padding: 18px 24px;
    }

    .trust-bar-inner {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* --------------------------------------------------------------------------
   Section Header Left-Aligned Variant
   -------------------------------------------------------------------------- */
.section-header--left {
    text-align: left;
    max-width: 700px;
    margin: 0 0 var(--space-12);
}

/* --------------------------------------------------------------------------
   Testimonial Cards (Kachel-Optik)
   -------------------------------------------------------------------------- */
.card--testimonial {
    display: flex;
    flex-direction: column;
    padding: var(--space-8);
    height: 100%;
    border: 1px solid var(--beige-dark);
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.08);
    cursor: default;
}

.card--testimonial:hover {
    transform: none;
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.08);
}

.card--testimonial .testimonial-stars {
    color: var(--gold);
    font-size: var(--text-lg);
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
}

.card--testimonial blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: var(--space-6);
    flex: 1;
}
@media (max-width: 768px) {
    .card--testimonial blockquote,
    .pain-quote p,
    .wissen-quote-text,
    .fb-quote p {
        font-family: var(--font-body);
        font-style: normal;
        font-size: 1rem;
    }
}

.testimonial-meta {
    margin-top: auto;
}

.card--testimonial cite {
    font-style: normal;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-dark);
    display: block;
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--gray-mid);
    margin-top: 4px;
    display: block;
}

.testimonial-source {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--gray-mid);
    margin-top: var(--space-8);
    letter-spacing: 0.02em;
}

.testimonial-source a {
    color: var(--gray-mid);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.testimonial-source a:hover {
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   Phase Divider (Gold-Akzent zwischen Phasen)
   -------------------------------------------------------------------------- */
.phase-divider {
    margin: var(--space-16) auto;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border: none;
}

/* --------------------------------------------------------------------------
   Pillars Layout (Vertikale Liste mit Hover-Reveal)
   -------------------------------------------------------------------------- */
.pillars-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.pillars-intro h2 {
    color: var(--black);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-6);
}

.pillars-intro p {
    color: var(--gray-dark);
    font-size: var(--text-lg);
    line-height: 1.8;
}

.pillars-heading {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
}

.pillars-list {
    display: flex;
    flex-direction: column;
}

.pillar {
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    cursor: default;
    transition: padding 0.3s ease;
}

.pillar:first-child {
    padding-top: 0;
}

.pillar:last-child {
    border-bottom: none;
}

.pillar-head {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Chevron: nur auf Mobile sichtbar */
.pillar-chevron {
    display: none;
}

.pillar-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.pillar-head::after {
    content: '';
    position: absolute;
    right: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transition: opacity 0.2s ease;
}

.pillar:hover .pillar-head::after {
    opacity: 0.3;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    padding-right: 24px;
    color: var(--black);
    line-height: 1.3;
    transition: color 0.2s;
}

.pillar:hover .pillar-title {
    color: var(--gold);
}

.pillar-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.pillar-body p {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--gray-dark);
}

.pillar:hover .pillar-body {
    max-height: 500px;
    opacity: 1;
    margin-top: 14px;
}

.pillar:hover {
    padding: 32px 0;
}

.pillar:first-child:hover {
    padding-top: 4px;
}

/* Dark-Overrides für Pillars */
.section--dark .pillars-intro h2 {
    color: var(--beige-light);
}

.section--dark .pillars-intro p {
    color: var(--gray-light);
}

.section--dark .pillar {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.section--dark .pillar-title {
    color: var(--beige-light);
}

.section--dark .pillar:hover .pillar-title {
    color: var(--gold);
}

.section--dark .pillar-body p {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .pillars-layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
}

/* --------------------------------------------------------------------------
   Problem Section
   -------------------------------------------------------------------------- */
.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.problem-intro h2 {
    margin-bottom: var(--space-4);
}

.problem-intro p {
    font-size: var(--text-lg);
    color: var(--gray-dark);
    line-height: 1.8;
}

.card--quote {
    background: var(--white);
    border: none;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.card--quote:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.card--quote .quote-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.3;
    color: var(--black);
    font-weight: 400;
    margin-bottom: var(--space-5);
}

.card--quote .quote-sub {
    font-size: 0.85rem;
    color: var(--gray-mid);
    font-weight: 400;
    line-height: 1.6;
}

.card--problem {
    background: var(--cream);
    border: 1px solid var(--beige-dark);
    padding: var(--space-8);
    min-height: 160px;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    position: relative;
}

.card--problem::after {
    content: '';
    position: absolute;
    right: var(--space-6);
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    transition: opacity 0.2s ease;
}

.card--problem:hover::after,
.flip-card.flipped .card--problem::after {
    opacity: 0.3;
}

@media (min-width: 769px) {
    .card--problem:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }
}

.card--problem h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .problem-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

/* --------------------------------------------------------------------------
   Flip Cards (Desktop: Hover-Reveal, Mobile: 3D Flip)
   -------------------------------------------------------------------------- */

/* ── Base: Desktop Slide-Out ── */
.flip-card {
    perspective: 1000px;
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-8);
}

.flip-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Front: füllt die gesamte Karte */
.flip-card-front {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Back: fährt unter der Karte heraus (absolute, kein Layout-Shift) */
.flip-card-back {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 5;
    overflow: hidden;
    max-height: 0;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease;
}

.flip-card-back p {
    font-size: var(--text-sm);
    color: var(--gray-dark);
    line-height: 1.75;
    padding: var(--space-3) var(--space-4) var(--space-4);
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
}

/* Flip-Hint Icon: nur auf Mobile sichtbar */
.flip-hint {
    display: none;
}

/* Desktop: Karte Basis */
.flip-card .card {
    transition: box-shadow var(--transition-base), transform var(--transition-base), border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Desktop-only: Hover zeigt Back-Content unter der Karte */
@media (min-width: 769px) {
    .flip-card:not(.flipped):hover .flip-card-back {
        max-height: 250px;
        box-shadow: var(--shadow-md);
    }

    .flip-card:not(.flipped):hover .flip-card-back p {
        opacity: 1;
    }

    .flip-card .card:hover {
        transform: none;
    }

    .flip-card:not(.flipped):hover .card {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
}

/* ── Mobile: 3D Flip ── */
@media (max-width: 768px) {
    .flip-card {
        height: auto;
        cursor: pointer;
    }

    /* 3D Flip container */
    .flip-card-inner {
        display: grid;
        position: static;
        height: auto;
        flex-direction: unset;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }

    /* Front + Back: grid overlay, same cell */
    .flip-card-front,
    .flip-card-back {
        grid-area: 1 / 1;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        width: auto;
        height: auto;
        max-height: unset;
        overflow: visible;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: var(--radius-lg);
    }

    .flip-card-front {
        padding-bottom: var(--space-12);
    }

    .flip-card-back {
        transform: rotateY(180deg);
        padding: var(--space-8);
    }

    .flip-card-back p {
        padding: 0;
        transform: none;
        opacity: 1;
    }

    /* Flip-Hint Icon sichtbar */
    .flip-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1.5px solid rgba(0, 0, 0, 0.12);
        color: var(--gold);
        position: absolute;
        bottom: 16px;
        right: 16px;
        transition: transform 0.3s ease, border-color 0.3s ease;
        animation: flipHintPulse 2.5s ease-in-out infinite;
    }

    .flip-hint svg {
        width: 18px;
        height: 18px;
    }

    .flip-card.flipped .flip-hint {
        transform: rotate(180deg);
        animation: none;
    }

    @keyframes flipHintPulse {
        0%, 100% { opacity: 0.6; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.08); }
    }

    /* Back-Card Styling */
    .card--problem-back,
    .card--step-back {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border: none;
        border-radius: var(--radius-lg);
    }

    .card--problem-back {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
        box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.08);
    }

    .card--problem-back p {
        font-size: var(--text-sm);
        color: var(--white);
        line-height: 1.75;
    }

    .card--step-back {
        background: linear-gradient(135deg, #333 0%, var(--black) 100%);
        box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
    }

    .card--step-back p {
        font-size: var(--text-sm);
        color: var(--beige-light);
        line-height: 1.75;
    }

    .card--problem {
        transition: none;
    }

    .card--problem::after {
        display: none;
    }
}

/* Pillars: Tap-to-Expand auf Mobile */
@media (max-width: 768px) {
    .pillar {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .pillar-head {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .pillar-number {
        width: 100%;
    }

    .pillar-title {
        flex: 1;
    }

    .pillar-head::after {
        display: none;
    }

    /* Chevron → X */
    .pillar-chevron {
        display: block;
        position: relative;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-left: 12px;
        margin-top: 2px;
    }

    .pillar-chevron svg {
        display: none;
    }

    .pillar-chevron::before,
    .pillar-chevron::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 2px;
        background: var(--gold);
        border-radius: 1px;
        transition: transform 0.3s ease;
    }

    .pillar-chevron::before {
        transform: translate(calc(-50% - 4px), calc(-50% - 1px)) rotate(35deg);
    }

    .pillar-chevron::after {
        transform: translate(calc(-50% + 4px), calc(-50% - 1px)) rotate(-35deg);
    }

    .pillar.expanded .pillar-chevron::before {
        transform: translate(-50%, -50%) rotate(35deg);
    }

    .pillar.expanded .pillar-chevron::after {
        transform: translate(-50%, -50%) rotate(-35deg);
    }

    .pillar-body {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
        margin-top: 0;
    }

    .pillar.expanded .pillar-body {
        max-height: 500px;
        opacity: 1;
        margin-top: 14px;
    }

    .pillar.expanded .pillar-title {
        color: var(--gold);
    }

    /* Disable desktop hover on mobile */
    .pillar:hover .pillar-body {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
    }

    .pillar:hover {
        padding: 28px 0;
    }

    .pillar:first-child:hover {
        padding-top: 0;
    }

    .pillar.expanded:hover .pillar-body,
    .pillar.expanded .pillar-body {
        max-height: 500px;
        opacity: 1;
        margin-top: 14px;
    }
}

/* --------------------------------------------------------------------------
   Process Step Cards (Kachel-Optik)
   -------------------------------------------------------------------------- */
.card--step {
    text-align: center;
    padding: var(--space-10) var(--space-8);
    min-height: 160px;
}

.step-badge {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--black);
    margin: 0 auto var(--space-6);
}

.card--step h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-4);
}

.card--step::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin: 0 auto;
    transition: opacity 0.2s ease;
}
@media (max-width: 1024px) {
    .card--step::after { display: none; }
}

.card--step:hover::after,
.flip-card.flipped .card--step::after {
    opacity: 0.3;
}

/* --------------------------------------------------------------------------
   Klarheitsbrücke
   -------------------------------------------------------------------------- */
.klarheitsbruecke-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.klarheitsbruecke-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

.klarheitsbruecke-content p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-dark);
}

.klarheitsbruecke-content h2 {
    margin-bottom: var(--space-6);
}


@media (max-width: 768px) {
    .klarheitsbruecke-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

/* --------------------------------------------------------------------------
   Section Divider
   -------------------------------------------------------------------------- */
.section-divider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--beige-dark) 20%,
        var(--gold) 50%,
        var(--beige-dark) 80%,
        transparent 100%
    );
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Teilplanungen Verweis
   -------------------------------------------------------------------------- */
.teilplanungen-intro {
    font-size: var(--text-lg);
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

.teilplanungen-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.teilplanungen-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.teilplanungen-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.teilplanungen-card-frage {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
}

.teilplanungen-card-label {
    font-size: var(--text-sm);
    color: var(--gold);
    font-weight: 600;
    margin-top: auto;
}

.teilplanungen-footer {
    font-size: var(--text-sm);
    color: var(--gray-mid);
    font-style: italic;
}

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

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap .feature-visual--portrait {
    border-radius: var(--radius-xl);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--salbei);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.5;
    max-width: 220px;
    box-shadow: var(--shadow-lg);
}

.about-badge q {
    display: block;
    font-style: italic;
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: 1.6;
    quotes: "\201E" "\201C";
}

.about-content h2 {
    margin-bottom: var(--space-6);
}

.about-content p {
    font-size: var(--text-base);
    color: var(--gray-dark);
    line-height: 1.8;
}

.about-content em {
    font-style: italic;
    color: var(--black);
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .about-image-wrap {
        margin-bottom: var(--space-4);
    }

    .about-badge {
        right: 16px;
        bottom: -16px;
        max-width: 200px;
        padding: 16px 20px;
        font-size: var(--text-xs);
    }

    .about-badge q {
        font-size: var(--text-xs);
    }
}

/* --------------------------------------------------------------------------
   Dark Accordion (FAQ)
   -------------------------------------------------------------------------- */
.accordion--dark {
    background: transparent;
    border: none;
    border-radius: 0;
}

.accordion--dark .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
}

.accordion--dark .accordion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion--dark .accordion-trigger {
    background: transparent;
    color: var(--beige-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: var(--space-6) 0;
}

.accordion--dark .accordion-trigger:hover {
    background: transparent;
    color: var(--gold);
}

.accordion--dark .accordion-trigger::after {
    background: var(--gold);
}

.accordion--dark .accordion-content {
    padding: 0 0 var(--space-6);
}

.accordion--dark .accordion-content p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   CTA Card
   -------------------------------------------------------------------------- */
.cta-card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-16) var(--space-16);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.cta-card h2 {
    margin-bottom: var(--space-4);
}

.cta-card > p {
    font-size: var(--text-base);
    color: var(--gray-dark);
    max-width: 520px;
    margin: 0 auto var(--space-8);
    line-height: 1.75;
}

.cta-note {
    margin-top: var(--space-5);
    font-size: var(--text-sm);
    color: var(--gray-mid);
}

/* Generell: Hilfstext direkt nach Buttons bekommt mehr Luft */
.btn + p,
.btn + .cta-note {
    margin-top: var(--space-5);
}

@media (max-width: 768px) {
    .cta-card {
        padding: var(--space-10) var(--space-6);
    }
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animation
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   Über / About Page
   -------------------------------------------------------------------------- */

/* Bridge Metaphor (3-part visual) */
.ueber-bridge-metaphor {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.ueber-bridge-item {
    text-align: center;
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
}

.ueber-bridge-item--gold {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
}

.ueber-bridge-label {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.ueber-bridge-item p {
    color: var(--gray-light);
    font-size: var(--text-base);
    line-height: 1.7;
    margin: 0;
}

.ueber-bridge-item--gold p {
    color: var(--beige-light);
}

.ueber-bridge-footer {
    text-align: center;
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Story Accents (Mein Weg) */
.story-accent {
    text-align: center;
}

.story-accent--mid {
    margin: var(--space-8) 0;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--anthracite);
}

.story-accent--big {
    margin: var(--space-8) 0;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gold);
}

.story-accent--sub {
    margin-top: calc(-1 * var(--space-4));
    font-size: var(--text-lg);
    color: var(--anthracite);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    margin-top: var(--space-12);
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.team-member-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-member-content {
    padding: var(--space-8) var(--space-8) var(--space-10);
}

.team-member-content h3 {
    color: var(--white);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.team-role {
    display: block;
    color: var(--gold);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.team-status {
    display: inline-block;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.04em;
    padding: 0.35em 1em;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(201, 162, 39, 0.3);
    margin-bottom: var(--space-4);
}

/* Team Tabs */
.team-tabs {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.team-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gray-light);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: 0.4em 1.2em;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-tab:hover {
    border-color: rgba(201, 162, 39, 0.4);
    color: var(--white);
}

.team-tab--active {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
}

.team-tab-content {
    display: none;
}

.team-tab-content--active {
    display: block;
    animation: tabFadeIn 0.3s ease;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.team-member-content p {
    color: var(--gray-light);
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.team-credentials {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-credentials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--text-sm);
    color: var(--gray-light);
    opacity: 0.7;
}

.team-credentials li {
    padding: 6px 0 6px 20px;
    position: relative;
}

.team-credentials li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--gold);
}

@media (max-width: 768px) {
    .ueber-bridge-metaphor {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .story-accent--mid {
        font-size: var(--text-lg);
        margin: var(--space-6) 0;
    }

    .story-accent--big {
        font-size: var(--text-xl);
        margin: var(--space-6) 0;
    }

    .story-accent--sub {
        font-size: var(--text-base);
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .team-member {
        max-width: 500px;
        margin: 0 auto;
    }

    .team-member-content {
        padding: var(--space-6);
    }

    .team-member-content h3 {
        font-size: var(--text-2xl);
    }
}

/* ═══════════════════════════════════════════
   PFEILER-SEITEN (Shared Styles)
   Ruhestand, Geldanlage, Immobilie
   ═══════════════════════════════════════════ */

/* Hero */
.pfeiler-hero { min-height: 80vh; display: flex; align-items: center; padding-top: clamp(212px, calc(15vw + 72px), 272px); padding-bottom: clamp(80px, 10vw, 120px); background: var(--white); }
.pfeiler-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pfeiler-hero-content h1 { font-size: clamp(1.6rem, 2.5vw, 2rem); margin-bottom: 16px; }
.pfeiler-hero .lead { font-size: 1.15rem; opacity: 0.8; margin-bottom: 32px; line-height: 1.7; }
.pfeiler-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.pfeiler-checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--gray-dark); }
.pfeiler-checklist svg { color: var(--gray-mid); flex-shrink: 0; }
.pfeiler-hero-visual { overflow: hidden; border-radius: 24px; aspect-ratio: 4/3; }
.pfeiler-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }

/* Sections */
.pfeiler-s { padding: clamp(80px, 10vw, 120px) 0; }
.pfeiler-s--dark { background: var(--black); color: var(--beige-light); }
.pfeiler-s--dark h2 { color: var(--white); }
.pfeiler-s--light { background: var(--beige-light); }
.pfeiler-s--white { background: var(--white); }
.pfeiler-eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-mid); margin-bottom: 20px; font-weight: 600; }
.pfeiler-eyebrow--light { color: var(--gray-light); }

/* Pain Flip Cards */
.pain-intro { margin-bottom: 60px; }
.pain-intro .lead { font-size: 1.15rem; opacity: 0.85; line-height: 1.8; }
.pain-flip-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: 32px; }
.pain-flip-card { perspective: 1000px; cursor: pointer; }
.pain-flip-card-inner { display: grid; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); -webkit-transform-style: preserve-3d; transform-style: preserve-3d; height: 100%; }
.pain-flip-card.flipped .pain-flip-card-inner { transform: rotateY(180deg); }
.pain-flip-card-front,
.pain-flip-card-back { grid-area: 1 / 1; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 20px; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.pain-flip-card-front { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 4px 16px rgba(0,0,0,0.15); position: relative; }
.pain-flip-card-front h3 { color: var(--beige-light); margin-bottom: 12px; font-size: 1.3rem; }
.pain-flip-card-front p { opacity: 0.6; font-size: 0.9rem; color: var(--beige-light); }
.pain-flip-card-front .flip-icon { position: absolute; bottom: 16px; right: 16px; opacity: 0.5; color: var(--gold); }
.pain-flip-card-back { background: rgba(255,255,255,0.08); border: 2px solid var(--gold); transform: rotateY(180deg); }
.pain-flip-card-back p { opacity: 0.85; font-size: 1rem; line-height: 1.7; color: var(--beige-light); }

/* Pain Quote */
.pain-quote { margin-top: 60px; text-align: left; padding: 48px 48px 48px 56px; background: rgba(255,255,255,0.06); border-radius: 24px; border-left: 4px solid var(--gold); }
.pain-quote p { font-family: var(--font-heading); font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--white); font-style: italic; margin-bottom: 16px; }
.pain-quote span { font-size: 0.95rem; opacity: 0.6; }

/* Was ist das */
.was-ist-intro { margin-bottom: 48px; }
.was-ist-intro .lead { font-size: 1.1rem; opacity: 0.85; margin-bottom: 24px; line-height: 1.8; }

/* Brücken Teaser Cards */
.bruecken-teaser { display: flex; align-items: stretch; gap: 0; margin-bottom: 32px; }
.bruecken-teaser-card { flex: 1; background: var(--white); border: 2px solid var(--beige-dark); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.bruecken-teaser-nr { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 400; color: var(--gold); line-height: 1; }
.bruecken-teaser-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-mid); }
.bruecken-teaser-frage { font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 400; color: var(--black); line-height: 1.3; margin-top: auto; }
.bruecken-teaser-arrow { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 40px; color: var(--beige-dark); }
.bruecken-teaser-footer { font-size: 1.1rem; color: var(--gray-dark); opacity: 0.85; line-height: 1.8; }

/* Brücke Sections */
.bruecke-header { margin-bottom: 48px; }
.bruecke-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 16px; display: block; }
.bruecke-question { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 400; line-height: 1.15; color: var(--black); margin-bottom: 16px; }
.bruecke-subtitle { font-size: 1.1rem; color: var(--gray-dark); opacity: 0.85; line-height: 1.8; }

/* Brücke Card */
.bruecke-card { background: var(--white); border: 2px solid var(--beige-dark); border-radius: 20px; padding: 40px 40px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.bruecke-section--light .bruecke-card { background: var(--cream); border-color: var(--beige-dark); }

/* Brücke Price Card */
.bruecke-price-card { background: var(--black); color: var(--beige-light); border-radius: 16px; padding: 32px 40px; margin: 40px 0 40px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 4px 20px rgba(0,0,0,0.06); flex-wrap: wrap; gap: 24px; }
.bruecke-price-card .bruecke-price { color: var(--white); }
.bruecke-price-card .bruecke-price-meta { color: var(--gray-light); }
.bruecke-price-card .bruecke-hint { color: var(--gray-mid); }
.bruecke-price-card .btn { background: var(--gold); color: var(--black); font-size: 0.82rem; font-weight: 600; padding: 12px 28px; border-radius: 6px; }
.bruecke-price-card .btn:hover { background: var(--gold-light); }
.bruecke-price-card .single-toggle { color: var(--gray-light); }
.bruecke-price-card .single-toggle:hover { color: var(--beige-light); }
.bruecke-price-card .single-toggle.active { color: var(--white); }
.bruecke-price-card .toggle-box { border-color: var(--gray-mid); }
.info-btn--light { border-color: var(--gray-mid); color: var(--gray-mid); font-size: 0.65rem; width: 18px; height: 18px; vertical-align: super; }
.info-btn--light:hover { background: var(--gray-mid); color: var(--black); }

/* Brücke Footer & Price */
.bruecke-footer { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.bruecke-price { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 400; color: var(--black); line-height: 1.1; }
.bruecke-price-meta { font-size: 0.78rem; color: var(--gray-mid); margin-top: 4px; }
.bruecke-hint { font-size: 0.75rem; color: var(--gray-light); font-style: italic; margin-top: 12px; }

/* Single Toggle */
.single-toggle { display: flex; align-items: center; gap: 10px; margin-top: 14px; cursor: pointer; user-select: none; font-size: 0.82rem; color: var(--gray-mid); transition: color 0.2s; }
.single-toggle:hover { color: var(--gray-dark); }
.toggle-box { width: 18px; height: 18px; border: 1.5px solid var(--gray-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; flex-shrink: 0; }
.toggle-box svg { opacity: 0; transition: opacity 0.2s; }
.single-toggle.active .toggle-box { border-color: var(--gold); background: var(--gold); }
.single-toggle.active .toggle-box svg { opacity: 1; }
.single-toggle.active { color: var(--black); }

/* Detail Accordions */
.detail-group { display: flex; flex-direction: column; }
.detail-item { border-top: 1px solid var(--beige-dark); }
.detail-item:first-child { border-top: none; }
.detail-item:last-child { border-bottom: none; }
.detail-trigger { width: 100%; background: none; border: none; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: var(--black); padding: 22px 0; cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color 0.2s; }
.detail-trigger:hover { color: var(--gold); }
.detail-trigger .detail-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.detail-trigger .detail-icon::before,
.detail-trigger .detail-icon::after { content: ''; position: absolute; background: var(--gray-mid); transition: transform 0.3s ease, opacity 0.3s ease; }
.detail-trigger .detail-icon::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.detail-trigger .detail-icon::after { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.detail-item.open .detail-trigger .detail-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.detail-item.open .detail-trigger { color: var(--gold); }
.detail-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease; opacity: 0; }
.detail-item.open .detail-body { max-height: 600px; opacity: 1; }
.detail-body-inner { padding: 0 0 28px 0; }
.detail-body p { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: 12px; }
.detail-body p:last-child { margin-bottom: 0; }
.detail-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.detail-checklist li { font-size: 0.88rem; color: var(--gray-dark); padding-left: 24px; position: relative; line-height: 1.6; }
.detail-checklist li::before { content: '\2713'; position: absolute; left: 0; color: var(--salbei); font-weight: bold; font-size: 0.82rem; }
.detail-steps { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 16px; }
.detail-steps li { font-size: 0.88rem; color: var(--gray-dark); padding-left: 36px; position: relative; line-height: 1.7; counter-increment: step; }
.detail-steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--beige-dark); color: var(--gray-dark); font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; line-height: 1; }

/* Pricing shared */
.pricing-intro { margin-bottom: 60px; }
.pricing-intro p { opacity: 0.7; }
.pricing-footer { margin-top: 48px; text-align: center; }
.pricing-hinweise { margin-top: 64px; padding: 40px; background: var(--cream); border-radius: 20px; border-left: 4px solid var(--gold); }
.pricing-hinweise p { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: 12px; }
.pricing-hinweise p:last-child { margin-bottom: 0; opacity: 0.6; font-size: 0.82rem; }

/* Pricing Frame Comparison */
.pricing-frame-text { margin-bottom: 40px; }
.pricing-frame-text p { font-size: 1.05rem; line-height: 1.8; opacity: 0.9; margin-bottom: 20px; }
.pricing-frame-text strong { color: var(--white); }
.pricing-frame-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.comparison-item { padding: 32px; border-radius: 16px; }
.comparison-item.provision { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.18); }
.comparison-item.honorar { background: rgba(255,255,255,0.08); border: 2px solid var(--gold); }
.comparison-item h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 16px; }
.comparison-item p { opacity: 0.8; font-size: 1rem; line-height: 1.7; }
.pricing-frame-aside { background: rgba(255,255,255,0.05); border-left: 3px solid var(--gold); padding: 24px 28px; border-radius: 0 12px 12px 0; }
.pricing-frame-aside p { font-size: 1rem; opacity: 0.75; font-style: italic; margin: 0; }

/* Tier Cards shared */
.tier-card { background: var(--white); border: 2px solid var(--beige-dark); border-radius: 20px; padding: 40px 32px; display: flex; flex-direction: column; position: relative; }
.tier-card.highlighted { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,162,39,0.15); }
.tier-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.tier-card h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--black); }
.tier-subtitle { font-size: 0.9rem; opacity: 0.6; margin-bottom: 24px; }
.tier-prices { margin-bottom: 24px; }
.tier-price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px solid var(--beige-dark); }
.tier-price-row:last-child { border-bottom: none; }
.tier-price-label { font-size: 0.9rem; opacity: 0.7; }
.tier-price-value { font-family: var(--font-heading); font-size: 1.6rem; color: var(--black); }
.tier-price-value span { font-size: 0.8rem; opacity: 0.5; font-family: var(--font-body); }
.tier-includes { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--salbei); margin-bottom: 12px; }
.tier-features { list-style: none; margin-bottom: 32px; flex: 1; }
.tier-features li { padding: 6px 0; padding-left: 24px; position: relative; font-size: 0.88rem; line-height: 1.5; color: var(--black); opacity: 0.8; }
.tier-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--salbei); font-weight: bold; }
.tier-features li.new { opacity: 1; font-weight: 500; }
.tier-features li.inherited { opacity: 0.5; }
.tier-card .btn { width: 100%; text-align: center; margin-top: auto; }

/* Ergebnis Cards */
.ergebnis-intro { margin-bottom: 60px; }
.ergebnis-intro .lead { opacity: 0.8; font-size: 1.05rem; }
.ergebnis-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 4px 16px rgba(0,0,0,0.15); padding: 32px; border-radius: 16px; text-align: center; }
.ergebnis-card .ergebnis-icon { width: 56px; height: 56px; border: 2px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.3rem; color: var(--salbei); }
.ergebnis-icon--warn { color: var(--gold) !important; }
.ergebnis-icon--fail { color: #c0392b !important; }
.ergebnis-card h3 { color: var(--beige-light); margin-bottom: 12px; font-size: 1.2rem; }
.ergebnis-card p { opacity: 0.75; font-size: 0.95rem; }

/* Für wen */
.fuer-wen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.fuer-wen-card { background: var(--white); padding: 40px; border-radius: 16px; border: 2px solid transparent; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.fuer-wen-card h3 { margin-bottom: 24px; }
.fuer-wen-card.ja { border-color: var(--salbei); }
.fuer-wen-card.ja h3 { color: var(--salbei); }
.fuer-wen-card.nein { border-color: var(--gray-light); }
.fuer-wen-card.nein h3 { color: var(--gray-dark); }
.fuer-wen-card ul { list-style: none; }
.fuer-wen-card li { padding: 12px 0; padding-left: 28px; position: relative; font-size: 0.95rem; border-bottom: 1px solid var(--gray-light); }
.fuer-wen-card li:last-child { border-bottom: none; }
.fuer-wen-card.ja li::before { content: "\2713"; position: absolute; left: 0; color: var(--salbei); font-weight: bold; }
.fuer-wen-card.nein li { color: var(--gray-dark); }
.fuer-wen-card.nein li::before { content: "\2013"; position: absolute; left: 0; color: var(--gray-mid); font-weight: bold; }

/* CTA Box */
.pfeiler-cta { text-align: center; }
.cta-box { background: var(--black); color: var(--beige-light); padding: 80px 60px; border-radius: 32px; max-width: 800px; margin: 0 auto; }
.cta-box h2 { color: var(--white); margin-bottom: 16px; }
.cta-box .lead { opacity: 0.85; margin-bottom: 16px; font-size: 1.1rem; }
.cta-box p { opacity: 0.7; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-text { color: var(--beige-light); }

/* Sticky Brücken-Nav */
.bruecken-nav { position: fixed; left: 0; right: 0; top: calc(var(--header-height) + 35px); z-index: 98; background: var(--white); border-bottom: 1px solid var(--beige-dark); opacity: 0; transform: translateY(-10px); transition: opacity 0.3s ease, transform 0.3s ease; pointer-events: none; }
.bruecken-nav.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.site-header.scrolled ~ main .bruecken-nav,
.bruecken-nav.scrolled-header { top: calc(70px + 30px); }
.site-header.nav-hidden ~ main .bruecken-nav { top: 30px; }
.bruecken-nav-inner { display: flex; gap: 0; }
.bruecken-nav a { flex: 1; text-align: center; padding: 16px 12px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-mid); text-decoration: none; border-bottom: 2px solid transparent; transition: all 0.25s ease; display: flex; flex-direction: column; gap: 2px; }
.bruecken-nav a:hover { color: var(--black); }
.bruecken-nav a.active { color: var(--black); border-bottom-color: var(--gold); }
.bnav-nr { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 400; color: var(--gold); }

/* Pfeiler Responsive */
@media (max-width: 1024px) {
    .pfeiler-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .pfeiler-hero-visual { order: -1; max-width: 500px; }
    .pricing-frame-comparison { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .pain-flip-grid { grid-template-columns: 1fr; }
    .pain-flip-card-front,
    .pain-flip-card-back { padding: 28px; min-height: 180px; font-size: 0.9rem; }
    .bruecken-teaser { flex-direction: column; gap: 12px; }
    .bruecken-teaser-arrow { transform: rotate(90deg); width: auto; padding: 4px 0; }
    .bruecken-teaser-card { padding: 20px; }
    .bruecke-footer { flex-direction: column; align-items: flex-start; }
    .bruecke-card { padding: 28px 24px 0; }
    .bruecke-price-card { padding: 24px; flex-direction: column; align-items: flex-start; }
    .bruecken-nav a { font-size: 0.68rem; padding: 14px 8px; letter-spacing: 0.06em; }
    .fuer-wen-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .cta-box { padding: 48px 24px; }
}
