/* ============================================
   KompetenzCampus — Global Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --teal-100: #ccfbf1;
    --teal-50: #f0fdfa;
    --dark-900: #0c1222;
    --dark-800: #111827;
    --dark-700: #1e293b;
    --dark-600: #334155;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --green-100: #dcfce7;
    --green-600: #16a34a;
    --amber-100: #fef3c7;
    --amber-700: #a16207;
    --blue-100: #dbeafe;
    --blue-700: #1d4ed8;
    --rose-100: #ffe4e6;
    --rose-700: #be123c;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--dark-800);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--teal-600); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-700); }

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--dark-800); }
h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 800; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1.4;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.85rem; }

.btn-primary {
    background: var(--teal-600);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(13,148,136,0.3);
}
.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13,148,136,0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--teal-600);
    border: 2px solid var(--teal-600);
}
.btn-secondary:hover {
    background: var(--teal-50);
    transform: translateY(-2px);
    color: var(--teal-700);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--teal-700);
}
.btn-white:hover {
    background: var(--teal-50);
    transform: translateY(-2px);
    color: var(--teal-700);
}

.btn-dark {
    background: var(--dark-800);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--dark-700);
    transform: translateY(-2px);
    color: var(--white);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}
.logo {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--dark-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo span { color: var(--teal-600); }
.logo-icon { font-size: 1.5rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--teal-600);
    background: var(--teal-50);
}
.nav-links a.active {
    color: var(--teal-600);
    background: var(--teal-50);
}
.nav-cta {
    margin-left: 0.5rem;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--dark-800);
}

@media (max-width: 968px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 4.5rem;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        gap: 0.25rem;
    }
    .nav-links.open a {
        padding: 0.75rem 1rem;
        width: 100%;
    }
    .nav-cta { margin-left: 0; margin-top: 0.5rem; }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-700) 50%, #0f3433 100%);
    color: var(--white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13,148,136,0.2);
    border: 1px solid rgba(13,148,136,0.3);
    color: var(--teal-400);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3.25rem;
    letter-spacing: -0.02em;
}
.hero h1 .highlight { color: var(--teal-400); }
.hero-text {
    color: var(--gray-400);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
}
.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal-400);
    display: block;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

@media (max-width: 968px) {
    .hero { padding: 4rem 0 3rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero-card { display: none; }
}

/* ============================================
   Sections
   ============================================ */
section { padding: 5rem 0; }
.section-lg { padding: 6rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-header .overline {
    display: inline-block;
    color: var(--teal-600);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    line-height: 1.7;
}

.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--dark-800); color: var(--white); }
.bg-teal { background: linear-gradient(135deg, var(--teal-600), var(--teal-700)); color: var(--white); }

/* ============================================
   Cards
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 2rem;
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-100);
}
.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; }

/* Course Cards */
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.course-card { position: relative; }
.course-card .card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.course-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

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

/* Tags */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}
.tag-green { background: var(--green-100); color: var(--green-600); }
.tag-teal { background: var(--teal-100); color: var(--teal-700); }
.tag-amber { background: var(--amber-100); color: var(--amber-700); }
.tag-blue { background: var(--blue-100); color: var(--blue-700); }

/* ============================================
   Benefits / Features Grid
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature {
    text-align: center;
    padding: 2rem 1.5rem;
}
.feature-icon {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    display: block;
}
.feature h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.feature p { color: var(--gray-500); font-size: 0.9rem; }

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

/* ============================================
   CTA Sections
   ============================================ */
.cta-section {
    text-align: center;
    padding: 5rem 0;
}
.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.testimonial-text {
    font-style: italic;
    color: var(--dark-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--teal-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-500); }
.testimonial-note {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-400);
    font-style: italic;
}

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

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 2rem 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-600);
}
.trust-item-icon {
    font-size: 1.25rem;
}

/* ============================================
   Page Headers (inner pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-700) 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}
.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
.page-header p {
    color: var(--gray-400);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--teal-400); }
.breadcrumb span { color: var(--gray-500); }

/* ============================================
   Course Detail Pages
   ============================================ */
.course-detail { padding: 4rem 0; }
.course-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.course-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--teal-100);
}
.course-content h2:first-child { margin-top: 0; }
.course-content p {
    margin-bottom: 1rem;
    color: var(--dark-600);
}
.course-content ul, .course-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.course-content li {
    margin-bottom: 0.5rem;
    color: var(--dark-600);
}

/* Sidebar */
.course-sidebar {
    position: sticky;
    top: 6rem;
}
.sidebar-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}
.sidebar-info {
    list-style: none;
    padding: 0;
}
.sidebar-info li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}
.sidebar-info li:last-child { border-bottom: none; }
.sidebar-info .info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.sidebar-info .info-label { color: var(--gray-500); font-size: 0.8rem; display: block; }
.sidebar-info .info-value { font-weight: 600; display: block; }

.sidebar-cta {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    border-color: transparent;
    color: var(--white);
}
.sidebar-cta h3 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}
.sidebar-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.sidebar-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 968px) {
    .course-detail-grid { grid-template-columns: 1fr; }
    .course-sidebar { position: static; }
}

/* Module Cards */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
.module-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}
.module-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--teal-600);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.module-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.module-card p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }

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

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--white);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-800);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-family: inherit;
}
.faq-question:hover { color: var(--teal-600); }
.faq-toggle {
    font-size: 1.25rem;
    color: var(--teal-600);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--dark-600);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ============================================
   Contact
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-form { background: var(--white); border-radius: var(--radius-lg); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--dark-800);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}
.contact-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-card h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.contact-info-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }
.contact-info-card a { font-weight: 600; }

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-900);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-brand {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.footer h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer li a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer li a:hover { color: var(--white); }
.footer-badges {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    color: var(--gray-300);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a { color: var(--gray-400); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--white); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ============================================
   Förderung Page Specific
   ============================================ */
.funding-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.funding-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--teal-600);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.funding-step h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.funding-step p { font-size: 0.85rem; color: var(--gray-500); }

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

/* Funding Cards */
.funding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.funding-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}
.funding-card:hover {
    border-color: var(--teal-100);
    box-shadow: var(--shadow-md);
}
.funding-card.featured {
    border-color: var(--teal-600);
    position: relative;
}
.funding-card.featured::before {
    content: '⭐ Hauptförderung';
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background: var(--teal-600);
    color: var(--white);
    padding: 0.2rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}
.funding-card h3 { margin-bottom: 1rem; font-size: 1.15rem; }
.funding-card p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 0.75rem; }

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

/* ============================================
   About / Team
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.team-card {
    text-align: center;
    padding: 2rem;
}
.team-avatar {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--teal-100), var(--teal-50));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.25rem;
}
.team-card h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.team-card .role { color: var(--teal-600); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { color: var(--gray-500); font-size: 0.9rem; }

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

/* ============================================
   Über uns - Values
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.value-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}
.value-icon { font-size: 2rem; flex-shrink: 0; }
.value-card h4 { margin-bottom: 0.4rem; }
.value-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

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

/* ============================================
   Legal Pages
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.legal-content p {
    margin-bottom: 1rem;
    color: var(--dark-600);
}
.legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.legal-content li { margin-bottom: 0.4rem; color: var(--dark-600); }
.draft-notice {
    background: var(--amber-100);
    border: 2px solid var(--amber-700);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--amber-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================
   Coming Soon Card
   ============================================ */
.coming-soon-card {
    background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: var(--white);
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
}
.coming-soon-card h2 { color: var(--white); margin-bottom: 1rem; }
.coming-soon-card p { color: var(--gray-400); margin-bottom: 1.5rem; font-size: 1.05rem; }
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245,158,11,0.2);
    border: 1px solid rgba(245,158,11,0.3);
    color: #fbbf24;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ============================================
   Utility
   ============================================ */
.text-center { text-align: center; }
.text-teal { color: var(--teal-600); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex-center { display: flex; justify-content: center; align-items: center; }
