/* ========================================
   Sajinth & Partner - Swiss Direkt Energie Style
   Clean, Minimal, Centered Design
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ========================================
   CSS VARIABLES - DESIGN TOKENS
   ======================================== */

:root {
    /* Primary Colors */
    --gold: #C4A052;
    --gold-hover: #B8942F;
    --gold-light: rgba(196, 160, 82, 0.1);
    --gold-glow: rgba(196, 160, 82, 0.3);

    /* Dark Theme (für Hero, CTA, Footer) */
    --dark: #1A1A1A;
    --dark-card: #242424;
    --dark-lighter: #242424;
    --dark-elevated: #2A2A2A;
    --dark-muted: #0D0D0D;

    /* Light Theme */
    --white: #FFFFFF;
    --off-white: #F7F7F5;

    /* Text Colors */
    --text-dark: #1A1A1A;
    --text-body: #3D3D3D;
    --text-muted: #5A5A5A;
    --text-light: #FFFFFF;
    --text-light-muted: rgba(255, 255, 255, 0.7);

    /* Borders */
    --border-light: #E5E5E5;
    --border-dark: rgba(255, 255, 255, 0.1);

    /* NEU: Erweiterte Design Tokens */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - mehr Whitespace */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    --space-4xl: 128px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows - subtiler */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 24px rgba(196, 160, 82, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-medium: 0.25s ease;

    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

/* Besseres Font Rendering */
body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: var(--dark);
    color: var(--text-light);
}

/* Selection Color */
::selection {
    background: var(--gold);
    color: var(--dark);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 7vw, 4.5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
}

h3 {
    font-size: 1.125rem;
}

h4 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

/* ========================================
   CONTAINER
   ======================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

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

/* ========================================
   HEADER - Clean, Swiss Style
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border-dark);
    transition: all var(--transition-medium);
}

.header.scrolled {
    padding: 16px 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

/* =====================================================
   LOGO STYLING - KORREKTE FARBEN
   ===================================================== */
.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFFFFF !important; /* Weiss - nicht Gold! */
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-accent {
    color: #C4A052 !important; /* Nur das & in Gold */
    margin: 0 0.15em;
}

.logo:hover {
    opacity: 0.85;
}

/* Entferne alle anderen Logo-Farben die es überschreiben könnten */
.logo,
.logo:visited,
.logo:active {
    color: #FFFFFF !important;
}

.header-light .logo {
    color: #1A1A1A !important;
}

.header-light .logo-accent {
    color: #C4A052 !important;
}

/* Navigation - Mitte */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
}

/* CTA Button - Rechts */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.header-cta:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    color: var(--dark);
}

.header-cta svg {
    width: 16px;
    height: 16px;
}

.nav-cta {
    margin-left: var(--space-sm);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-medium);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #1A1A1A;
    backdrop-filter: blur(20px);
    padding: var(--space-lg);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    display: block;
    padding: var(--space-md) 0;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.mobile-menu .btn {
    width: 100%;
    margin-top: var(--space-md);
    justify-content: center;
}

@media (max-width: 968px) {
    /* Gesamte Desktop-Navigation ausblenden */
    .nav {
        display: none !important;
    }

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

    .mobile-toggle {
        display: flex;
    }

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

    /* Hamburger sichtbar machen */
    .hamburger {
        display: flex !important;
    }
}

/* ========================================
   BUTTONS - Global, mit Icons
   ======================================== */

/* Alle Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-medium);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

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

/* Primary - Gold, Filled, Rounded */
.btn-primary {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--dark);
    font-size: 1rem;
    border-radius: var(--radius-full);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--dark);
}

/* Secondary - Dark, Outline */
.btn-secondary {
    padding: 16px 32px;
    background: var(--dark-elevated);
    color: var(--text-light);
    font-size: 1rem;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-full);
}

.btn-secondary:hover {
    background: var(--dark-card);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

/* Outline - Transparent mit Border */
.btn-outline {
    padding: 16px 32px;
    background: transparent;
    color: var(--gold);
    font-size: 1rem;
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Ghost Button */
.btn-ghost {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-full);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* Link Button */
.btn-link {
    padding: 0;
    background: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
}

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

/* Small Button */
.btn-sm {
    padding: 12px 24px;
    font-size: 0.875rem;
}

/* Large Button */
.btn-lg {
    padding: 20px 40px;
    font-size: 1.0625rem;
}

/* ========================================
   HERO SECTION - Zentriert, Swiss Style
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 80px;
    background: var(--dark);
    position: relative;
}

/* Subtiler Gradient Hintergrund */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: 60%;
    background: radial-gradient(ellipse at center top, rgba(196, 160, 82, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge über Headline */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--dark-elevated);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light-muted);
    margin-bottom: 32px;
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

/* Headline mit Akzent-Wort in Gold */
.hero h1 {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 900px;
}

.hero h1 .accent {
    color: var(--gold);
}

/* Subline */
.hero-subtitle,
.hero-subline {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light-muted);
    max-width: 680px;
    margin: 0 auto 48px;
}

/* Button Group */
.hero-buttons,
.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

/* Trust Badges - Horizontal Inline mit Checkmarks */
.hero-trust,
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-light-muted);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

/* Legacy trust-bar support */
.trust-bar p {
    font-size: 0.9375rem;
    color: var(--text-light-muted);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-bar span {
    color: var(--gold);
    opacity: 0.5;
}

/* ========================================
   SECTIONS - BASE
   ======================================== */

.section {
    padding: var(--space-4xl) 40px;
}

.section-light {
    background: var(--white);
    color: var(--text-body);
}

.section-alt {
    background: var(--off-white);
    color: var(--text-body);
}

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

/* ========================================
   SECTION HEADERS - Zentriert, Clean
   ======================================== */

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

.section-heading {
    max-width: 700px;
    margin-bottom: var(--space-xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-light .section-title,
.section-alt .section-title,
.section-heading h2 {
    color: var(--text-dark);
}

.section-dark .section-title,
.section-dark h2 {
    color: var(--text-light);
}

.section-subtitle,
.section-subline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.section-dark .section-subtitle,
.section-dark .section-subline {
    color: var(--text-light-muted);
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 700px;
    line-height: 1.7;
}

.section-dark .section-heading p {
    color: var(--text-light-muted);
}

/* ========================================
   CARDS - Clean, minimalistisch
   ======================================== */

/* Card auf hellem Hintergrund */
.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-medium);
}

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

/* Card auf dunklem Hintergrund */
.card-dark {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-medium);
}

.card-dark:hover {
    border-color: var(--gold-glow);
    transform: translateY(-4px);
}

/* Card Icon */
.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.card-dark .card-icon {
    background: rgba(196, 160, 82, 0.15);
}

.card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card p,
.card-dark p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.card-dark h3 {
    color: var(--text-light);
}

.card-dark p {
    color: var(--text-light-muted);
}

/* Card Grid */
.card-grid,
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 640px) {
    .card-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PROBLEM GRID (6 Cards)
   ======================================== */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: var(--space-lg);
}

.problem-card {
    padding: 28px;
    border: 1px solid var(--border-light);
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.section-alt .problem-card {
    background: var(--white);
}

.problem-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.problem-conclusion {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    max-width: 800px;
    margin: 48px auto 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

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

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

    .problem-card {
        padding: 24px;
    }
}

/* ========================================
   PILLARS (3 Columns)
   ======================================== */

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

.pillar {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.pillar:hover {
    background: var(--gold-light);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    border: 1px solid var(--gold-glow);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
    transition: all var(--transition-medium);
}

.pillar:hover .pillar-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.pillar h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.pillar p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ========================================
   STEPS / VORGEHEN (Dark Section)
   ======================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.step {
    text-align: left;
    padding: 32px;
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.step:hover {
    border-color: var(--gold-glow);
    transform: translateY(-4px);
}

.step-number {
    display: block;
    font-size: 56px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1;
    transition: all var(--transition-medium);
}

.step:hover .step-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px var(--gold-glow);
}

.step h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

    .step {
        padding: 24px;
    }
}

/* ========================================
   POINTS LIST
   ======================================== */

.points-list {
    list-style: none;
}

.points-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--text-body);
    transition: all var(--transition-fast);
}

.points-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.points-list li:hover {
    padding-left: calc(var(--space-lg) + 4px);
}

.points-list li:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--gold-glow);
}

.section-dark .points-list li {
    color: var(--text-light-muted);
}

/* ========================================
   TWO COLUMNS (Fit/No-Fit)
   ======================================== */

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

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

.column {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.column:hover {
    transform: translateY(-4px);
}

.column h3 {
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.column-positive {
    background: var(--gold-light);
    border: 1px solid var(--gold-glow);
}

.column-positive h3 {
    color: var(--gold);
}

.column-negative {
    background: var(--off-white);
    border: 1px solid var(--border-light);
}

.column-negative h3 {
    color: var(--text-muted);
}

/* ========================================
   CASE CARDS (Results)
   ======================================== */

.case-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-medium);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

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

.case-content {
    margin-bottom: var(--space-sm);
}

.case-content p {
    color: var(--text-body);
}

.case-result {
    background: var(--gold-light);
    border-left: 3px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.case-result p {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.125rem;
}

/* ========================================
   CTA SECTION (Zentriert, Clean)
   ======================================== */

.cta-section {
    padding: var(--space-4xl) 40px;
    background: var(--dark);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--text-light-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   PILOT-PROJEKTE SECTION
   ======================================== */

.pilot-section {
    padding: var(--space-4xl) 40px;
    background: var(--white);
}

.pilot-section .section-header {
    max-width: 750px;
    margin: 0 auto 48px;
}

.pilot-section .section-subline {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-top: 16px;
}

/* Benefits Bar */
.pilot-benefits {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.pilot-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.pilot-benefit:hover {
    color: var(--gold);
}

.pilot-benefit svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.pilot-benefit:hover svg {
    transform: scale(1.2);
}

/* Pilot Grid */
.pilot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Pilot Card */
.pilot-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-medium);
}

.pilot-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pilot-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.pilot-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.pilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gold-light);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
}

.pilot-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pilot-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pilot-card > p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Status Badge */
.pilot-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--off-white);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Hot Status */
.pilot-status-hot {
    background: var(--gold-light);
    color: var(--gold-hover);
    border: 1px solid var(--gold-glow);
}

.pilot-status-hot .status-dot {
    animation: pulse 2s ease-in-out infinite;
}

/* Progress Bar */
.pilot-progress {
    position: relative;
    height: 8px;
    background: var(--off-white);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.pilot-progress-bar {
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.pilot-progress-label {
    position: absolute;
    right: 0;
    top: -24px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
}

.pilot-progress-percent {
    position: absolute;
    left: 0;
    top: -26px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Pilot Button */
.btn-pilot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    padding: 14px 24px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    background: transparent;
    transition: all var(--transition-medium);
}

.btn-pilot:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-pilot svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

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

/* Pilot Footer */
.pilot-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.pilot-footer p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .pilot-benefits {
        gap: 32px;
    }
}

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

    .pilot-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .pilot-section {
        padding: var(--space-3xl) 20px;
    }

    .pilot-card {
        padding: 24px;
    }

    .pilot-card-header {
        flex-direction: column;
        gap: 12px;
    }

    .pilot-status {
        align-self: flex-start;
    }

    .pilot-card h3 {
        font-size: 1.125rem;
    }
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */

.solutions-section {
    padding: var(--space-4xl) 40px;
}

.solutions-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.solutions-section .section-subline {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-top: 16px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-medium);
}

.solution-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-light);
    border: 1px solid var(--gold-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-medium);
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.solution-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.solution-card > p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.solution-keyfact {
    background: var(--gold-light);
    padding: 24px;
    margin-bottom: 24px;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.keyfact-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.keyfact-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.solution-link:hover {
    gap: 12px;
}

.solution-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    transition: transform var(--transition-fast);
}

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

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

    .solution-card {
        padding: 32px;
    }
}

@media (max-width: 600px) {
    .solutions-section {
        padding: var(--space-3xl) 20px;
    }

    .solution-card {
        padding: 24px;
    }

    .solution-icon {
        width: 56px;
        height: 56px;
    }

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

    .solution-card h3 {
        font-size: 1.25rem;
    }

    .keyfact-number {
        font-size: 1.75rem;
    }
}

/* ========================================
   FOOTER - Cleaner
   ======================================== */

.footer {
    padding: 80px 40px 40px;
    background: var(--dark-muted);
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto 64px;
}

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

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-light-muted);
    text-decoration: none;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

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

/* Legacy footer support */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 640px) {
    .footer {
        padding: 64px 20px 32px;
    }

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

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   PAGE HEADERS
   ======================================== */

.page-header {
    padding: 160px 40px 80px;
    background: var(--dark);
    color: var(--text-light);
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.page-header p {
    color: var(--text-light-muted);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   FORMS - Modern & Clean
   ======================================== */

.contact-form {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label,
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:hover,
.form-group textarea:hover,
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--gold-glow);
}

.form-group input:focus,
.form-group textarea:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-light);
}

.form-group textarea,
.form-textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* Checkbox Modern */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 18px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.checkbox-item:hover {
    border-color: var(--gold-glow);
    background: var(--white);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-item.checked,
.checkbox-item:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-light);
}

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

/* ========================================
   DIAGNOSE PAGE
   ======================================== */

.diagnose-hero {
    padding: 160px 40px 80px;
    background: var(--dark);
    color: var(--text-light);
    text-align: center;
}

.diagnose-hero h1 {
    color: var(--text-light);
}

.diagnose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 968px) {
    .diagnose-content {
        grid-template-columns: 1fr;
    }
}

.diagnose-info h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

.diagnose-steps {
    counter-reset: diagnose-step;
}

.diagnose-step {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.diagnose-step:hover {
    background: var(--gold-light);
}

.diagnose-step::before {
    counter-increment: diagnose-step;
    content: counter(diagnose-step);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
}

.highlight-box {
    background: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
}

.highlight-box h4 {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-hero {
    padding: 160px 40px 80px;
    background: var(--dark);
    color: var(--text-light);
    text-align: center;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-option {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-medium);
}

.contact-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.contact-option h3 {
    margin-bottom: var(--space-sm);
}

.contact-option p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* Divider with Gradient */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
    margin: 48px 0;
}

/* Keyfact Box */
.keyfact {
    padding: 24px;
    background: var(--gold-light);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.keyfact-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

/* Link with Hover */
.link-hover {
    position: relative;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.link-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.link-hover:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation for Cards */
.animate-ready:nth-child(1) { transition-delay: 0s; }
.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.animate-ready:nth-child(3) { transition-delay: 0.2s; }
.animate-ready:nth-child(4) { transition-delay: 0.3s; }
.animate-ready:nth-child(5) { transition-delay: 0.4s; }
.animate-ready:nth-child(6) { transition-delay: 0.5s; }

/* ========================================
   RESPONSIVE ANPASSUNGEN
   ======================================== */

@media (max-width: 1024px) {
    .hero {
        padding: 140px 24px 60px;
    }

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

    .hero-trust,
    .trust-bar {
        gap: 20px;
    }

    .section {
        padding: var(--space-3xl) 24px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

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

    .hero-subtitle,
    .hero-subline {
        font-size: 1.0625rem;
    }

    .hero-buttons,
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn,
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust,
    .trust-bar {
        flex-direction: column;
        gap: 12px;
    }

    .trust-bar p {
        flex-direction: column;
    }

    .section {
        padding: var(--space-2xl) 20px;
    }

    .card, .card-dark, .pilot-card {
        padding: 24px;
    }

    .page-header {
        padding: 120px 20px 60px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .card:hover,
    .card-dark:hover,
    .btn:hover,
    .problem-card:hover,
    .solution-card:hover,
    .pilot-card:hover {
        transform: none;
    }

    .card:active,
    .card-dark:active,
    .problem-card:active,
    .solution-card:active,
    .pilot-card:active {
        transform: scale(0.98);
    }
}

/* ========================================
   MOBILE-FIRST OPTIMIERUNGEN
   ======================================== */

/* Basis Mobile Styles */
html, body {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

html {
    -webkit-overflow-scrolling: touch;
}

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

/* Touch Targets mindestens 44px */
a, button, input, select, textarea, .btn {
    min-height: 44px;
}

/* ========================================
   HAMBURGER MENU - Verbessert
   ======================================== */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
}

/* Mobile Menu Fullscreen */
.mobile-menu-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu-links li {
    margin: 12px 0;
}

.mobile-menu-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 24px;
    display: block;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-links a:active {
    color: var(--gold);
}

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

/* ========================================
   MOBILE HERO VERBESSERUNGEN
   ======================================== */

@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 100px 20px 60px;
    }

    .hero-badge {
        padding: 10px 16px;
        font-size: 0.75rem;
        margin-bottom: 24px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero h1 .accent {
        display: block;
    }

    .hero-subtitle,
    .hero-subline {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-buttons,
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin-bottom: 48px;
    }

    .hero-buttons .btn,
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust,
    .trust-bar {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

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

/* Tablet Hero */
@media (min-width: 641px) and (max-width: 1023px) {
    .hero {
        padding: 120px 32px 80px;
    }

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

    .hero h1 .accent {
        display: inline;
    }

    .hero-buttons,
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }

    .hero-buttons .btn,
    .hero-ctas .btn {
        width: auto;
    }

    .hero-trust,
    .trust-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

/* ========================================
   MOBILE BUTTONS VERBESSERT
   ======================================== */

.btn {
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 640px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    .btn svg {
        width: 16px;
        height: 16px;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

/* Touch-optimierte Button States */
@media (hover: none) {
    .btn-primary:active {
        background: var(--gold-hover);
        transform: scale(0.98);
    }

    .btn-secondary:active {
        background: var(--dark-elevated);
        transform: scale(0.98);
    }

    .btn-outline:active {
        background: var(--gold);
        color: var(--dark);
    }
}

/* ========================================
   MOBILE SECTIONS VERBESSERT
   ======================================== */

@media (max-width: 640px) {
    .section {
        padding: 64px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .section-subtitle,
    .section-subline {
        font-size: 1rem;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .section {
        padding: 80px 32px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ========================================
   MOBILE CARDS VERBESSERT
   ======================================== */

@media (max-width: 640px) {
    .card, .card-dark {
        padding: 24px;
        border-radius: 12px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
        font-size: 20px;
    }

    .card h3, .card-dark h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .card p, .card-dark p {
        font-size: 0.875rem;
    }

    .card-grid,
    .cards-grid {
        gap: 16px;
    }
}

/* ========================================
   MOBILE FOOTER VERBESSERT
   ======================================== */

@media (max-width: 640px) {
    .footer {
        padding: 64px 20px 32px;
    }

    .footer-grid {
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand p {
        font-size: 0.875rem;
    }

    .footer-col h4 {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .footer-col a {
        font-size: 0.9375rem;
        padding: 8px 0;
        -webkit-tap-highlight-color: transparent;
    }

    .footer-col a:active {
        color: var(--gold);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.8125rem;
    }
}

/* ========================================
   MOBILE FORMS VERBESSERT
   ======================================== */

/* iOS Zoom verhindern */
.form-input,
.form-select,
.form-textarea,
.form-group input,
.form-group textarea,
.form-group select {
    font-size: 16px !important;
}

@media (max-width: 640px) {
    .form-group {
        margin-bottom: 20px;
    }

    .form-input,
    .form-select,
    .form-textarea,
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        border-radius: 8px;
    }

    .checkbox-item {
        padding: 14px 16px;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
    }

    .checkbox-item:active {
        background: var(--gold-light);
        border-color: var(--gold);
    }

    .checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   MOBILE CTA SECTION VERBESSERT
   ======================================== */

@media (max-width: 640px) {
    .cta-section {
        padding: 64px 20px;
    }

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

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   MOBILE PILOT CARDS VERBESSERT
   ======================================== */

@media (max-width: 640px) {
    .pilot-card {
        padding: 24px;
    }

    .pilot-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pilot-card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .pilot-badge {
        font-size: 0.6875rem;
    }

    .pilot-card h3 {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }

    .pilot-card > p {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .pilot-card-footer {
        flex-direction: column;
        gap: 16px;
    }

    .pilot-card-footer .btn {
        width: 100%;
    }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles für Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ========================================
   MOBILE UTILITY CLASSES
   ======================================== */

/* Hide on Mobile */
.hide-mobile {
    display: block;
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Hide on Desktop */
.hide-desktop {
    display: none;
}

@media (max-width: 1023px) {
    .hide-desktop {
        display: block;
    }
}

/* Full Width on Mobile */
.full-mobile {
    width: auto;
}

@media (max-width: 767px) {
    .full-mobile {
        width: 100%;
    }
}

/* Stack on Mobile */
.stack-mobile {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

@media (max-width: 767px) {
    .stack-mobile {
        flex-direction: column;
    }
}

/* =====================================================
   MOBILE CONTENT OPTIMIZATION
   Experten-Strategie: Weniger ist mehr auf Mobile
   ===================================================== */

/* ----- VISIBILITY UTILITIES ----- */

/* Nur auf Desktop sichtbar (ab 1024px) */
.desktop-only {
    display: block;
}

/* Nur auf Tablet+ sichtbar (ab 768px) */
.tablet-up-only {
    display: block;
}

/* Nur auf Mobile sichtbar (unter 768px) */
.mobile-only {
    display: none;
}

/* Auf Tablet ausblenden */
.hide-tablet {
    display: block;
}

/* ----- RESPONSIVE VISIBILITY ----- */

@media (max-width: 1023px) {
    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .tablet-up-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hide-tablet {
        display: none !important;
    }
}

/* ----- GRID ITEM HIDING (für Karten-Grids) ----- */

/* Zeige nur erste 2 Items auf Mobile */
.grid-limit-2-mobile > *:nth-child(n+3) {
    display: block;
}

/* Zeige nur erste 3 Items auf Mobile */
.grid-limit-3-mobile > *:nth-child(n+4) {
    display: block;
}

/* Zeige nur erste 4 Items auf Mobile */
.grid-limit-4-mobile > *:nth-child(n+5) {
    display: block;
}

@media (max-width: 767px) {
    .grid-limit-2-mobile > *:nth-child(n+3) {
        display: none !important;
    }

    .grid-limit-3-mobile > *:nth-child(n+4) {
        display: none !important;
    }

    .grid-limit-4-mobile > *:nth-child(n+5) {
        display: none !important;
    }
}

/* ----- TEXT TRUNCATION ----- */

/* Kürzere Texte auf Mobile */
.text-short-mobile {
    display: block;
}

.text-full {
    display: block;
}

@media (max-width: 767px) {
    .text-full {
        display: none !important;
    }

    .text-short-mobile {
        display: block !important;
    }

    /* Automatisches Kürzen mit Ellipsis */
    .truncate-mobile {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .truncate-mobile-2 {
        -webkit-line-clamp: 2;
    }

    .truncate-mobile-4 {
        -webkit-line-clamp: 4;
    }
}

/* ----- SECTION SIMPLIFICATION ----- */

@media (max-width: 767px) {
    /* Reduzierter Padding auf Mobile */
    .section-compact-mobile {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Kleinere Margins */
    .section-header {
        margin-bottom: 32px;
    }

    /* Stats Grid: 2x2 statt 4x1 */
    .stats-grid.compact-mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stats-grid.compact-mobile .stat-card {
        padding: 20px 16px;
    }

    .stats-grid.compact-mobile .stat-number {
        font-size: 1.75rem;
    }
}

/* ----- FAQ LIMITATION ----- */

/* Zeige nur erste 3 FAQs auf Mobile */
.faq-limit-mobile .faq-item:nth-child(n+4) {
    display: block;
}

@media (max-width: 767px) {
    .faq-limit-mobile .faq-item:nth-child(n+4) {
        display: none !important;
    }

    /* "Mehr anzeigen" Button erscheint */
    .faq-show-more-mobile {
        display: block !important;
        text-align: center;
        margin-top: 24px;
    }
}

.faq-show-more-mobile {
    display: none;
}

/* ----- BENEFIT LIST LIMITATION ----- */

@media (max-width: 767px) {
    /* Zeige nur erste 3 Bullet Points */
    .benefit-list.limit-mobile li:nth-child(n+4) {
        display: none;
    }
}

/* ----- HERO SIMPLIFICATION ----- */

@media (max-width: 767px) {
    /* Kleinere Hero Stats */
    .hero-stats.compact-mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding-top: 32px;
        margin-top: 32px;
    }

    /* Verstecke 3. und 4. Stat auf Mobile */
    .hero-stats.limit-2-mobile .hero-stat:nth-child(n+3) {
        display: none;
    }
}

/* ----- TESTIMONIALS / REVIEWS ----- */

@media (max-width: 767px) {
    /* Zeige nur 1 Testimonial auf Mobile */
    .testimonials-grid.limit-mobile > *:nth-child(n+2) {
        display: none;
    }
}

/* ----- PILOT PROJECTS LIMITATION ----- */

@media (max-width: 767px) {
    /* Zeige nur 2 Pilot-Projekte auf Mobile */
    .pilot-grid.limit-mobile > .pilot-card:nth-child(n+3) {
        display: none;
    }

    /* "Alle anzeigen" Link */
    .pilot-show-all-mobile {
        display: block !important;
        text-align: center;
        margin-top: 24px;
    }
}

.pilot-show-all-mobile {
    display: none;
}

/* ----- PROCESS STEPS ----- */

@media (max-width: 767px) {
    /* Vereinfachte Prozess-Darstellung */
    .process-steps.compact-mobile .process-step {
        padding: 24px 20px;
    }

    .process-steps.compact-mobile .step-description {
        display: none;
    }
}

/* ----- FOOTER SIMPLIFICATION ----- */

@media (max-width: 767px) {
    /* Verstecke unwichtige Footer-Spalten */
    .footer-column.hide-mobile {
        display: none;
    }

    /* Kompakterer Footer */
    .footer.compact-mobile .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ----- "MEHR ANZEIGEN" BUTTONS ----- */

.show-more-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 24px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    margin: 24px auto 0;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.show-more-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

@media (max-width: 767px) {
    .show-more-btn.visible-mobile {
        display: inline-block;
    }
}

/* =====================================================
   MOBILE DESIGN AUDIT FIXES - EXPERTEN-VERSION
   Comprehensive fixes for all mobile issues
   ===================================================== */

/* ----- BODY SCROLL LOCK (wenn Menü offen) ----- */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ----- EXTRA SMALL SCREENS (< 400px) ----- */
@media (max-width: 400px) {
    .header-inner {
        padding: 0 16px;
    }

    /* Header CTA kleiner oder verstecken */
    .header .btn,
    .nav-cta {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .header .btn svg {
        display: none;
    }

    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.375rem !important;
    }

    .hero {
        padding: 100px 16px 50px;
    }

    .hero-badge {
        padding: 8px 12px;
        font-size: 0.6875rem;
    }

    .section {
        padding: 48px 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    .card, .card-dark, .pilot-card, .problem-card {
        padding: 20px;
    }

    .mobile-menu a {
        font-size: 1rem;
        padding: 16px 0;
    }
}

/* ----- KONTRAST-SICHERSTELLUNG ----- */

/* Helle Sektionen: IMMER dunkler Text */
.section-light,
.section-light *:not(.btn):not(.btn *):not(.gold):not(.accent),
.section-gray,
.section-gray *:not(.btn):not(.btn *):not(.gold):not(.accent),
.section-alt,
.section-alt *:not(.btn):not(.btn *):not(.gold):not(.accent) {
    /* Text-Farbe für helle Backgrounds */
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.section-gray h1,
.section-gray h2,
.section-gray h3,
.section-gray h4,
.section-gray h5,
.section-gray h6,
.section-alt h1,
.section-alt h2,
.section-alt h3,
.section-alt h4,
.section-alt h5,
.section-alt h6 {
    color: #1A1A1A !important;
}

.section-light p,
.section-light li,
.section-light span:not(.accent):not(.gold),
.section-gray p,
.section-gray li,
.section-gray span:not(.accent):not(.gold),
.section-alt p,
.section-alt li,
.section-alt span:not(.accent):not(.gold) {
    color: #3D3D3D;
}

/* Dunkle Sektionen: IMMER heller Text */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: #FFFFFF !important;
}

.section-dark p,
.section-dark li,
.section-dark span:not(.accent):not(.gold) {
    color: rgba(255, 255, 255, 0.85);
}

/* Gold-Akzente bleiben immer gold */
.accent,
.gold,
.text-gold,
.section-label {
    color: #C4A052 !important;
}

/* ----- MOBILE MENU GARANTIERT LESBAR ----- */
.mobile-menu {
    background: #1A1A1A !important;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    color: #FFFFFF !important;
    display: block;
    padding: 20px 0;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: #C4A052 !important;
    padding-left: 8px;
}

.mobile-menu .btn {
    margin-top: 24px;
    width: 100%;
    background: #C4A052;
    color: #1A1A1A !important;
}

.mobile-menu .btn:hover {
    background: #B8942F;
}

/* ----- HAMBURGER ANIMATION VERBESSERUNG ----- */
.hamburger {
    position: relative;
    z-index: 1001;
}

.hamburger span {
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.hamburger.active span {
    background: #FFFFFF;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- KEIN HORIZONTAL SCROLL ----- */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

.container,
.section,
.hero,
.footer {
    max-width: 100%;
    overflow-x: hidden;
}

/* ----- BUTTONS TOUCH-OPTIMIERT ----- */
.btn,
a.btn,
button.btn {
    min-height: 48px;
    min-width: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 767px) {
    /* Buttons volle Breite in CTAs */
    .cta-buttons .btn,
    .hero-buttons .btn,
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    /* Mehr Abstand zwischen klickbaren Elementen */
    .btn + .btn {
        margin-top: 12px;
    }

    .cta-buttons,
    .hero-buttons,
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
}

/* ----- FORMULARE MOBILE-OPTIMIERT ----- */
@media (max-width: 767px) {
    .form-group input,
    .form-group select,
    .form-group textarea,
    .form-input,
    .form-select,
    .form-textarea {
        width: 100%;
        min-height: 48px;
        font-size: 16px; /* Verhindert iOS Zoom */
    }

    .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .checkbox-item {
        min-height: 48px;
        padding: 14px 16px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

/* ----- FOOTER MOBILE VEREINFACHT ----- */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-col.hide-mobile {
        display: none !important;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-links a {
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.6;
    }
}

/* ----- SAFE AREA FÜR NOTCH-PHONES ----- */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
    }

    .mobile-menu {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ----- STICKY MOBILE CTA (optional) ----- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.show {
    transform: translateY(0);
}

.mobile-sticky-cta .btn {
    width: 100%;
}

@media (max-width: 767px) {
    .mobile-sticky-cta {
        display: block;
    }
}

@supports (padding: env(safe-area-inset-bottom)) {
    .mobile-sticky-cta {
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }
}

/* ----- BILDER RESPONSIVE ----- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ----- TABELLEN MOBILE ----- */
@media (max-width: 767px) {
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ----- PRINT STYLES ----- */
@media print {
    .header,
    .footer,
    .mobile-menu,
    .hamburger,
    .mobile-sticky-cta {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section-dark {
        background: white;
        color: black;
    }
}
