/* ==========================================================================
   Everest Consulting Partners – Design Slot 2 (Waldgrün / Kupfer)
   8px-Grid · Mobile-First · Offline-fähig
   ========================================================================== */

:root {
    --primary: #2d4a3e;
    --primary-light: #3a5f50;
    --primary-dark: #1f362c;
    --secondary: #c8956c;
    --secondary-light: #d4a882;
    --accent-bg: #f0f7f4;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #1a2e25;
    --text: #2d2d2d;
    --text-light: #555555;
    --border: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    --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;

    --z-dropdown: 10;
    --z-sticky: 20;
    --z-overlay: 30;
    --z-modal: 40;
    --z-toast: 50;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Skip Link (Accessibility)
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    z-index: var(--z-toast);
    font-weight: 600;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 600;
    line-height: 1.25;
}

h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    font-size: var(--text-3xl);
    line-height: 1.25;
}

h3 {
    font-size: var(--text-xl);
    line-height: 1.35;
}

p {
    max-width: 70ch;
    margin-bottom: var(--space-md);
}

.text-sm {
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* ==========================================================================
   Container
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ==========================================================================
   Top-Bar (Slot 2: Hell, Bottom-Border)
   ========================================================================== */

.top-bar {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--text);
}

.top-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
}

.top-bar__contact {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.top-bar__contact a {
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.top-bar__contact a:hover {
    color: var(--secondary);
}

.top-bar__legal {
    display: none;
    gap: var(--space-md);
    color: var(--text-light);
    font-size: var(--text-xs);
}

@media (min-width: 768px) {
    .top-bar__legal {
        display: flex;
    }
}

/* ==========================================================================
   Header (Slot 2: Transparent → Solid bei Scroll)
   ========================================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: var(--space-md) 0;
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    flex-direction: column;
}

.header__logo-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.header__logo-legal {
    font-size: var(--text-xs);
    color: var(--text-light);
}

.nav {
    display: none;
}

.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: var(--space-md);
    gap: var(--space-sm);
    z-index: var(--z-dropdown);
}

.nav__link {
    padding: var(--space-sm) var(--space-md);
    color: var(--text);
    font-weight: 500;
    border-radius: var(--radius);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav__link:hover {
    background: var(--accent-bg);
    color: var(--primary);
}

.nav__link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.nav__link--active {
    color: var(--secondary);
    font-weight: 600;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: var(--space-sm);
    border-radius: var(--radius);
}

.hamburger:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.hamburger__line {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        gap: var(--space-xs);
        align-items: center;
    }

    .hamburger {
        display: none;
    }
}

/* ==========================================================================
   Buttons (5-State Interactions)
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
    font-weight: 600;
    font-family: var(--font-primary);
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 44px;
    min-width: 44px;
    line-height: 1.2;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn:active {
    transform: scale(0.98);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn--primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn--primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    box-shadow: var(--shadow-hover);
}

.btn--primary:active {
    background: #b8854f;
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

.btn--outline:active {
    background: var(--primary-dark);
    color: var(--white);
}

/* ==========================================================================
   Hero (Slot 2: Split-Screen)
   ========================================================================== */

.hero {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    border: 1px solid var(--primary);
}

.hero__title {
    margin-bottom: var(--space-lg);
}

.hero__text {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero__pattern {
    background: var(--accent-bg);
    border-radius: var(--radius);
    padding: var(--space-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.hero__pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(45, 74, 62, 0.05) 20px,
        rgba(45, 74, 62, 0.05) 22px
    );
}

.hero__stats {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.hero__stat {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.hero__stat-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.hero__stat-label {
    font-size: var(--text-sm);
    color: var(--text-light);
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   Sections (General)
   ========================================================================== */

.section {
    padding: var(--space-3xl) 0;
}

.section--alt {
    background: var(--accent-bg);
}

.section--dark {
    background: var(--primary);
    color: var(--white);
}

.section--dark h2,
.section--dark h3 {
    color: var(--white);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section__header h2 {
    margin-bottom: var(--space-md);
}

.section__header p {
    margin: 0 auto;
    color: var(--text-light);
    font-size: var(--text-lg);
}

/* ==========================================================================
   Cards (Slot 2: Outline mit Hover-Fill)
   ========================================================================== */

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-xl);
    transition: var(--transition);
    background: var(--white);
}

.card:hover {
    border-color: var(--primary);
    background: var(--accent-bg);
    box-shadow: var(--shadow-hover);
}

.card__icon {
    width: 48px;
    height: 48px;
    background: var(--accent-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.card:hover .card__icon {
    background: var(--primary);
    color: var(--white);
}

.card__title {
    margin-bottom: var(--space-sm);
}

.card__text {
    color: var(--text-light);
    font-size: var(--text-sm);
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-weight: 600;
    color: var(--secondary);
    min-height: 44px;
}

.card__link:hover {
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   CTA-Banner
   ========================================================================== */

.cta-banner {
    background: var(--primary);
    padding: var(--space-3xl) 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    margin: 0 auto var(--space-lg);
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-lg);
}

.cta-banner .btn--primary {
    background: var(--secondary);
    border-color: var(--secondary);
}

.cta-banner .btn--primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
}

/* ==========================================================================
   Testimonials (Slot 2: Zentriert mit großem Zitat-Symbol)
   ========================================================================== */

.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--accent-bg);
}

.testimonial {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    padding: var(--space-xl);
}

.testimonial__quote-icon {
    font-size: var(--text-5xl);
    color: var(--secondary);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.testimonial__text {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--text);
    margin-bottom: var(--space-lg);
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.testimonial__author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial__role {
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* ==========================================================================
   FAQ (Slot 2: Chevron-Akkordeon)
   ========================================================================== */

.faq {
    padding: var(--space-3xl) 0;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-primary);
    gap: var(--space-md);
    min-height: 44px;
}

.faq__question:hover {
    color: var(--primary);
}

.faq__question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.faq__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq__item.active .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding-bottom: var(--space-lg);
}

.faq__answer p {
    color: var(--text-light);
}

/* ==========================================================================
   Firmen-Banner
   ========================================================================== */

.firm-banner {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.firm-banner__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.firm-banner__item {
    display: flex;
    gap: var(--space-sm);
}

.firm-banner__label {
    font-weight: 600;
    color: var(--primary);
    font-size: var(--text-sm);
    min-width: 120px;
}

.firm-banner__value {
    color: var(--text);
    font-size: var(--text-sm);
}

@media (min-width: 768px) {
    .firm-banner__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Footer (Slot 2: 4-Spalten, dunkel)
   ========================================================================== */

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer__heading {
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer__text {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer__link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xs) 0;
    font-size: var(--text-sm);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer__link:hover {
    color: var(--secondary);
}

.footer__link:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--space-lg);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ==========================================================================
   Cookie-Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: var(--space-lg);
    z-index: var(--z-modal);
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner .container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cookie-banner__text {
    font-size: var(--text-sm);
    max-width: 70ch;
}

.cookie-banner__text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .cookie-banner .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ==========================================================================
   Back-to-Top
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: var(--z-sticky);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-hover);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.back-to-top:active {
    transform: scale(0.95);
}

/* ==========================================================================
   Page Header (Subpages)
   ========================================================================== */

.page-header {
    background: var(--accent-bg);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border);
}

.page-header__badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    border: 1px solid var(--primary);
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: var(--text-light);
    font-size: var(--text-lg);
}

/* ==========================================================================
   Leistungen-Seite (Slot 2: Linksbündig mit rechtem Icon-Bereich)
   ========================================================================== */

.service-section {
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border);
}

.service-section:last-of-type {
    border-bottom: none;
}

.service-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.service-section__content h2 {
    margin-bottom: var(--space-md);
}

.service-section__content p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.service-section__content ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.service-section__content li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--text-light);
}

.service-section__content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.service-section__icon {
    background: var(--accent-bg);
    border-radius: var(--radius);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-section__icon svg {
    width: 80px;
    height: 80px;
    color: var(--primary);
}

@media (min-width: 1024px) {
    .service-section .container {
        grid-template-columns: 2fr 1fr;
    }
}

/* ==========================================================================
   Disclosure-Box
   ========================================================================== */

.disclosure {
    background: var(--accent-bg);
    border: 1px solid var(--primary);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.disclosure__title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
}

.disclosure__text {
    color: var(--text-light);
    font-size: var(--text-sm);
}

/* ==========================================================================
   Geschäftsführung (Slot 2: Profil-Karte zentriert + Timeline)
   ========================================================================== */

.profile-card {
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-2xl);
}

.profile-card__avatar {
    width: 96px;
    height: 96px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

.profile-card__name {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.profile-card__role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.profile-card__company {
    color: var(--text-light);
    font-size: var(--text-sm);
}

.biography {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.biography h2 {
    margin-bottom: var(--space-md);
}

.biography p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: var(--space-xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline__item {
    position: relative;
    padding-bottom: var(--space-xl);
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-xl) + 4px);
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    border: 2px solid var(--white);
}

.timeline__year {
    font-size: var(--text-sm);
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.timeline__title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.timeline__text {
    color: var(--text-light);
    font-size: var(--text-sm);
}

/* ==========================================================================
   Kontaktformular (Slot 2: Zentriert, Info darunter als Karten)
   ========================================================================== */

.contact-form {
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: var(--transition);
    min-height: 44px;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: var(--text-sm);
    font-weight: 400;
    margin-bottom: 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    background: var(--accent-bg);
}

.contact-card__label {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.contact-card__value {
    font-weight: 600;
    color: var(--primary);
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Legal Pages (Impressum, Datenschutz, AGB, Cookie)
   ========================================================================== */

.legal-content {
    padding: var(--space-3xl) 0;
}

.legal-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    font-size: var(--text-2xl);
}

.legal-content h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    padding: var(--space-xs) 0;
    color: var(--text-light);
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: var(--text-sm);
}

.legal-content th,
.legal-content td {
    border: 1px solid var(--border);
    padding: var(--space-sm) var(--space-md);
    text-align: left;
}

.legal-content th {
    background: var(--accent-bg);
    font-weight: 600;
    color: var(--primary);
}

/* ==========================================================================
   Visually Hidden (Accessibility)
   ========================================================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
    padding: var(--space-md) 0;
    font-size: var(--text-sm);
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb__separator {
    margin: 0 var(--space-sm);
}

/* ==========================================================================
   Trust Badges / Stats-Row
   ========================================================================== */

.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
}

.stats-row__item {
    text-align: center;
}

.stats-row__number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stats-row__label {
    font-size: var(--text-sm);
    color: var(--text-light);
}

@media (min-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}
