/* 
 * ZAHNARZT MIRZAIE - FINAL DESIGN v11
 * Klare visuelle Trennung, konsistenter Footer
 */

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

:root {
    --primary: #0071e3;
    --primary-dark: #005bb5;
    --accent: #00c7be;
    --white: #ffffff;
    --off-white: #fbfbfd;
    --gray-50: #f5f5f7;
    --gray-100: #e8e8ed;
    --gray-200: #d2d2d7;
    --gray-400: #86868b;
    --gray-600: #6e6e73;
    --gray-800: #1d1d1f;
    
    /* Verschiedene dunkle Hintergründe für Abwechslung */
    --dark-primary: #0a0a0a;
    --dark-secondary: #141414;
    
    --gradient-primary: linear-gradient(135deg, #0071e3 0%, #00c7be 100%);
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--gray-800); }
h1 { font-size: 2rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.125rem; }
p { color: var(--gray-600); }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0,113,227,0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-label svg { width: 14px; height: 14px; }
.section-header h2 { margin-bottom: 12px; }

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-800);
    z-index: 1001;
}

.nav-logo-icon {
    width: 36px; height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px; height: 44px;
    background: var(--gray-50);
    border: none;
    border-radius: var(--radius-md);
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--gray-800);
    border-radius: 1px;
}

.nav-toggle.active { background: var(--primary); }
.nav-toggle.active span { background: var(--white); }

.nav-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
    display: none;
    flex-direction: column;
}

.nav-menu.active { display: flex; }

.nav-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 40px;
    overflow-y: auto;
}

.nav-links { text-align: center; margin-bottom: 32px; }
.nav-links li { margin-bottom: 4px; }
.nav-links a {
    display: inline-block;
    padding: 14px 24px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: var(--radius-md);
}
.nav-links a.active { color: var(--primary); background: rgba(0,113,227,0.06); }

.nav-cta-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
}
.nav-cta-menu .btn { 
    width: 100%; 
    justify-content: center;
    gap: 10px;
}
.nav-cta-menu .btn svg {
    flex-shrink: 0;
}
.nav-cta-menu .btn.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-800);
}
.nav-cta-menu .btn.btn-secondary:hover {
    background: var(--gray-200);
}

.nav-phone-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--gray-800);
}
.nav-phone-menu svg { width: 20px; height: 20px; color: var(--primary); }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,113,227,0.25);
}
.btn-secondary { background: var(--gray-50); color: var(--gray-800); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.8); }
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ==================== HERO ==================== */
.hero {
    padding: 100px 0 60px;
    background: var(--off-white);
    overflow: hidden;
}

.hero-grid { display: flex; flex-direction: column; gap: 48px; }
.hero-content { max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0,113,227,0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}
.hero-badge svg { width: 16px; height: 16px; }

.hero h1 { margin-bottom: 16px; }
.hero .lead { margin-bottom: 24px; font-size: 1.0625rem; line-height: 1.7; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hero-stat { text-align: center; }
.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.6875rem; color: var(--gray-400); font-weight: 500; }

.hero-visual { position: relative; width: 100%; max-width: 380px; margin: 0 auto; }

.hero-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(145deg, #e8f4fd 0%, #d4edfc 100%);
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.hero-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 200px;
}

.hero-card.top { top: 20px; right: -10px; }
.hero-card.bottom { bottom: 60px; left: -10px; }

.hero-card-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-card-icon.blue { background: rgba(0,113,227,0.1); color: var(--primary); }
.hero-card-icon.teal { background: rgba(0,199,190,0.1); color: var(--accent); }
.hero-card-icon svg { width: 20px; height: 20px; }

.hero-card-text strong { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--gray-800); margin-bottom: 2px; }
.hero-card-text span { font-size: 0.6875rem; color: var(--gray-400); }

.image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.image-placeholder svg { width: 64px; height: 64px; margin-bottom: 12px; opacity: 0.3; }
.image-placeholder span { font-size: 0.875rem; color: var(--gray-400); }

/* ==================== SERVICES ==================== */
.services { background: var(--white); }
.services-grid { display: flex; flex-direction: column; gap: 16px; }

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
}

.service-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.service-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 20px; }

/* ==================== FEATURES ==================== */
.features { background: var(--gray-50); }
.features-grid { display: flex; flex-direction: column; gap: 40px; }

.features-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(145deg, #e8f4fd 0%, #d4edfc 100%);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.features-content h2 { margin-bottom: 16px; }
.features-content > p { margin-bottom: 28px; }
.features-list { display: flex; flex-direction: column; gap: 20px; }

.feature-item { display: flex; gap: 16px; }
.feature-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-text h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.875rem; margin: 0; }

/* ==================== TESTIMONIALS - Dunkler Hintergrund ==================== */
.testimonials {
    background: var(--dark-primary);
    color: var(--white);
}

.testimonials .section-label { background: rgba(0,199,190,0.15); color: var(--accent); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.6); }

.testimonials-grid { display: flex; flex-direction: column; gap: 16px; }

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 28px;
}

.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: #fbbf24; color: #fbbf24; }

.testimonial-text { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 20px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}
.testimonial-info strong { display: block; font-size: 0.9375rem; font-weight: 600; margin-bottom: 2px; }
.testimonial-info span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ==================== KARRIERE TEASER - Hellerer Hintergrund als Trenner ==================== */
.karriere-teaser {
    background: var(--gray-50);
    padding: 60px 0;
}

.karriere-teaser-grid { display: flex; flex-direction: column; gap: 40px; }

.karriere-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0,113,227,0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    width: fit-content;
}
.karriere-badge svg { width: 14px; height: 14px; }

.karriere-teaser-content h2 { color: var(--gray-800); margin-bottom: 16px; }
.karriere-teaser-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}

.karriere-jobs { display: flex; flex-direction: column; gap: 12px; }

.job-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
}
.job-card h4 { color: var(--gray-800); font-size: 1rem; margin-bottom: 4px; }
.job-card span { font-size: 0.75rem; color: var(--gray-400); }
.job-card svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* ==================== CTA ==================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 60px 20px;
}

.cta-content { 
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto; 
}
.cta-content h2 { 
    color: var(--white); 
    margin-bottom: 16px; 
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}
.cta-content p { 
    color: rgba(255,255,255,0.9); 
    font-size: 1.0625rem; 
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-buttons { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    align-items: center;
    justify-content: center;
}
.cta-buttons .btn {
    min-width: 220px;
    text-align: center;
}

/* ==================== FOOTER - Konsistent auf allen Seiten ==================== */
.footer {
    background: var(--dark-primary);
    color: var(--white);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo span { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; }

.footer h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.footer-legal { display: flex; justify-content: center; gap: 24px; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ==================== FORMS ==================== */
.form-group { margin-bottom: 20px; }
.form-row { display: flex; flex-direction: column; gap: 20px; }

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px;
    font-family: inherit;
    font-size: 16px;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: var(--white);
    border-color: var(--primary);
}

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

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.form-checkbox { display: flex; align-items: flex-start; gap: 12px; }
.form-checkbox input { width: 22px; height: 22px; accent-color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.form-checkbox span { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }
.form-checkbox a { color: var(--primary); }

.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; padding: 18px 32px; font-size: 1rem; }

/* ==================== PAGE LAYOUTS ==================== */
.page-hero {
    padding: 100px 0 48px;
    background: var(--off-white);
    text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 560px; margin: 0 auto; }

/* Contact */
.contact-section { background: var(--gray-50); }
.contact-grid { display: flex; flex-direction: column; gap: 40px; }

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-text strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.contact-text span, .contact-text a { font-size: 0.9375rem; color: var(--gray-600); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1.25rem; margin-bottom: 8px; }
.contact-form > p { margin-bottom: 28px; }

/* Booking */
.booking-section { background: var(--gray-50); }
.booking-grid { display: flex; flex-direction: column; gap: 40px; }

.booking-info h2 { margin-bottom: 16px; }
.booking-info > p { margin-bottom: 28px; }

.booking-hours h4 { font-size: 1rem; margin-bottom: 16px; }
.booking-hours-list { display: flex; flex-direction: column; gap: 12px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row .time { color: var(--gray-600); }

.booking-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
}
.booking-form h3 { font-size: 1.25rem; margin-bottom: 8px; }
.booking-form > p { margin-bottom: 28px; }

/* Portal */
.portal-section { background: var(--gray-50); }
.portal-grid { display: flex; flex-direction: column; gap: 16px; }

.portal-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.portal-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.portal-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.portal-card h3 { margin-bottom: 10px; }
.portal-card p { font-size: 0.9375rem; margin-bottom: 20px; }

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.modal.active { display: flex; }

.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--white);
}
.modal-header h3 { font-size: 1.125rem; }

.modal-close {
    width: 36px; height: 36px;
    border: none;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close svg { width: 18px; height: 18px; }

.modal-body { padding: 24px; }

.funnel-progress { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; }
.funnel-step { width: 32px; height: 4px; background: var(--gray-100); border-radius: 2px; }
.funnel-step.active { background: var(--primary); }
.funnel-step.completed { background: var(--accent); }

.funnel-content { display: none; }
.funnel-content.active { display: block; }

.funnel-buttons { display: flex; gap: 12px; margin-top: 24px; }
.funnel-buttons .btn { flex: 1; }
.btn-back { background: var(--gray-50); color: var(--gray-800); }

/* ==================== ABOUT/PRAXIS ==================== */
.about-hero { padding: 100px 0 48px; background: var(--off-white); }
.about-grid { display: flex; flex-direction: column; gap: 40px; }
.about-content h1 { margin-bottom: 16px; }
.about-content .lead { margin-bottom: 24px; }

.about-image {
    border-radius: var(--radius-xl);
    aspect-ratio: 1;
    background: linear-gradient(145deg, #e8f4fd 0%, #d4edfc 100%);
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    margin: 0 auto;
}

/* Team Section */
.team-section { background: var(--white); }
.team-grid { display: flex; flex-direction: column; gap: 24px; }

.team-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
}

.team-avatar {
    width: 100px; height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e8f4fd 0%, #d4edfc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-avatar svg { width: 48px; height: 48px; color: var(--primary); opacity: 0.5; }

.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--primary); font-weight: 600; font-size: 0.875rem; margin-bottom: 12px; }
.team-card p { font-size: 0.9375rem; }

/* Values */
.values-section { background: var(--gray-50); }
.values-grid { display: flex; flex-direction: column; gap: 24px; }

.value-card { text-align: center; padding: 28px; background: var(--white); border-radius: var(--radius-xl); }
.value-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.9375rem; }

/* Equipment */
.equipment-section { background: var(--white); }
.equipment-grid { display: flex; flex-direction: column; gap: 16px; }

.equipment-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.equipment-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.equipment-icon svg { width: 24px; height: 24px; }
.equipment-card h4 { margin-bottom: 6px; }
.equipment-card p { font-size: 0.875rem; margin: 0; }

/* ==================== KARRIERE ==================== */
.karriere-hero {
    padding: 100px 0 48px;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    text-align: center;
}
.karriere-hero h1 { margin-bottom: 16px; }
.karriere-hero .lead { margin-bottom: 24px; }

.karriere-benefits { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.benefit-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}
.benefit-icon {
    width: 52px; height: 52px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h4 { font-size: 0.875rem; margin-bottom: 6px; }
.benefit-card p { font-size: 0.75rem; margin: 0; }

.stellen-section { background: var(--gray-50); }
.stellen-grid { display: flex; flex-direction: column; gap: 16px; }

.stelle-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
}
.stelle-card h3 { font-size: 1.125rem; margin-bottom: 12px; }

.stelle-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.stelle-tag {
    padding: 6px 12px;
    background: rgba(0,113,227,0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
}
.stelle-card p { font-size: 0.9375rem; margin-bottom: 20px; }
.stelle-card .btn { width: 100%; }

/* Stelle Detail */
.stelle-detail-hero {
    padding: 100px 0 48px;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}
.stelle-detail-hero h1 { font-size: 1.75rem; margin-bottom: 16px; }
.stelle-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

.stelle-content-section { padding: 48px 0; }
.stelle-content-section:nth-child(even) { background: var(--gray-50); }
.stelle-content-grid { display: flex; flex-direction: column; gap: 32px; }
.stelle-content-grid h3 { font-size: 1.125rem; margin-bottom: 20px; }

.stelle-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
}
.stelle-list li:last-child { border-bottom: none; }
.stelle-list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.bewerbung-cta {
    background: var(--gradient-primary);
    padding: 60px 0;
    text-align: center;
}
.bewerbung-cta h2 { color: var(--white); margin-bottom: 16px; }
.bewerbung-cta p { color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

.bewerbung-section { background: var(--gray-50); }
.bewerbung-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
}
.bewerbung-form-wrapper h3 { text-align: center; margin-bottom: 8px; }
.bewerbung-form-wrapper > p { text-align: center; margin-bottom: 28px; }

/* Service Detail */
.service-detail { padding: 48px 0; border-bottom: 1px solid var(--gray-100); }
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { background: var(--gray-50); }
.service-detail-grid { display: flex; flex-direction: column; gap: 32px; }

.service-detail-image {
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #e8f4fd 0%, #d4edfc 100%);
}
.service-detail-content h2 { font-size: 1.5rem; margin-bottom: 16px; }
.service-detail-content > p { margin-bottom: 24px; }

.service-detail-list { margin-bottom: 28px; }
.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
}
.service-detail-list li:last-child { border-bottom: none; }
.service-detail-list svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* Legal */
.legal-page { padding: 100px 0 48px; }
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 32px; }
.legal-content h2 { font-size: 1.25rem; margin: 32px 0 16px; }
.legal-content p { margin-bottom: 16px; font-size: 0.9375rem; line-height: 1.8; }
.legal-content a { color: var(--primary); }

/* ==================== RESPONSIVE ==================== */
@media (min-width: 768px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    section { padding: 80px 0; }
    
    .hero { padding: 140px 0 80px; }
    .hero h1 { font-size: 2.75rem; }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .hero-visual { max-width: none; }
    .hero-stat-value { font-size: 2rem; }
    .hero-card.top { top: 40px; right: -30px; }
    .hero-card.bottom { bottom: 80px; left: -30px; }
    
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .karriere-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    
    .cta-buttons { flex-direction: row; }
    
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
    
    .form-row { flex-direction: row; }
    
    .contact-grid, .booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
    .contact-form, .booking-form { padding: 40px; }
    
    .portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
    
    .page-hero { padding: 140px 0 60px; }
    
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about-image { max-width: none; }
    
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .equipment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    
    .benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .stellen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .stelle-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
    
    .service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    
    .bewerbung-form-wrapper { padding: 48px; }
    .legal-page { padding: 140px 0 80px; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.25rem; }
    .hero { padding: 160px 0 100px; }
    .hero h1 { font-size: 3.25rem; }
    .hero-grid { gap: 80px; }
    .hero-card { max-width: 220px; padding: 16px 20px; }
    .hero-card.top { right: -40px; }
    .hero-card.bottom { left: -40px; }
    .nav-links a { font-size: 1.5rem; }
}

/* ==================== LEISTUNG DETAIL PAGES ==================== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
    text-decoration: none;
}
.back-link svg { width: 20px; height: 20px; }
.back-link:hover { text-decoration: underline; }

.leistung-detail { padding: 60px 0; }
.leistung-content { max-width: 800px; margin: 0 auto; }

.leistung-intro { margin-bottom: 48px; }
.leistung-intro h2 { margin-bottom: 16px; }
.leistung-intro p { font-size: 1.125rem; line-height: 1.8; color: var(--text-light); }

.leistung-highlight {
    display: flex;
    gap: 24px;
    background: linear-gradient(135deg, rgba(0,133,186,0.08), rgba(0,166,169,0.08));
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
}
.highlight-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.highlight-icon svg { width: 28px; height: 28px; color: white; }
.highlight-content h3 { margin-bottom: 8px; font-size: 1.25rem; }
.highlight-content p { color: var(--text-light); line-height: 1.7; }

.leistung-vorteile { margin-bottom: 48px; }
.leistung-vorteile h3 { margin-bottom: 24px; }
.leistung-vorteile ul { list-style: none; padding: 0; }
.leistung-vorteile li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.leistung-vorteile li:last-child { border-bottom: none; }
.leistung-vorteile svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.leistung-vorteile span { line-height: 1.6; }

.leistung-ablauf { margin-bottom: 48px; }
.leistung-ablauf h3 { margin-bottom: 24px; }
.ablauf-steps { display: grid; gap: 24px; }
.ablauf-step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border-radius: 12px;
}
.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.ablauf-step h4 { margin-bottom: 8px; }
.ablauf-step p { color: var(--text-light); font-size: 0.9375rem; line-height: 1.6; }

.leistung-faq { margin-bottom: 48px; }
.leistung-faq h3 { margin-bottom: 24px; }
.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { margin-bottom: 12px; font-size: 1.0625rem; }
.faq-item p { color: var(--text-light); line-height: 1.7; }

@media (max-width: 600px) {
    .leistung-highlight { flex-direction: column; padding: 24px; }
    .ablauf-step { flex-direction: column; gap: 16px; }
}
