/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #F7F5F0;
    --bg-2: #EDE9E0;
    --bg-dark: #1B3A2D;
    --bg-dark-2: #142E23;
    --green: #1B3A2D;
    --green-mid: #2D6A4F;
    --green-light: #3A7D44;
    --accent: #2D6A4F;
    --accent-btn: #1B3A2D;
    --text: #1A1A1A;
    --text-muted: #5C6B62;
    --border: rgba(27, 58, 45, 0.12);
    --border-dark: rgba(27, 58, 45, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --shadow: 0 4px 24px rgba(27, 58, 45, 0.08);
    --shadow-lg: 0 12px 48px rgba(27, 58, 45, 0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.accent { color: var(--green-mid); }
em { font-style: italic; }

/* ===========================
   NAV
=========================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 40px;
    transition: all 0.3s;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.nav.scrolled {
    background: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.nav.scrolled .nav-logo { color: var(--green); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: white; }

.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--green); }

.nav-cta {
    background: rgba(255,255,255,0.15) !important;
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    transition: background 0.2s, transform 0.2s, border-color 0.2s !important;
    backdrop-filter: blur(8px);
}
.nav-cta:hover {
    background: rgba(255,255,255,0.25) !important;
    transform: translateY(-1px);
}

.nav.scrolled .nav-cta {
    background: var(--accent-btn) !important;
    border-color: transparent !important;
}
.nav.scrolled .nav-cta:hover { background: var(--green-mid) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: white; border-radius: 2px; transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--green); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
}

.mobile-cta {
    background: var(--accent-btn);
    color: white !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1.1rem !important;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: var(--font);
}

.btn-primary {
    background: var(--accent-btn);
    color: white;
    box-shadow: 0 2px 12px rgba(27, 58, 45, 0.2);
}
.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(27, 58, 45, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--border-dark);
}
.btn-outline:hover {
    background: rgba(27, 58, 45, 0.05);
    border-color: var(--green);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ===========================
   HERO
=========================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 100px;
}

.hero-img-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, #0C2319 0%, #163A28 45%, #0A1E15 100%);
}

/* Diagonal lines texture */
.hero-img-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.018) 40px,
        rgba(255,255,255,0.018) 41px
    );
}

/* Radial glow top-right */
.hero-img-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(45,106,79,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 15% 80%, rgba(27,58,45,0.3) 0%, transparent 60%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* subtle vignette */
    background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 40%, rgba(6,18,12,0.5) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

.tag-dot {
    width: 7px; height: 7px;
    background: #6EE7A0;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 24px;
}

.hero-title em {
    color: #A8D5B5;
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 56px;
}

.btn-hero-primary {
    background: white;
    color: var(--green);
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.btn-hero-primary:hover {
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.btn-hero-ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-trust > span {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logo {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    padding: 5px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
}

.trust-divider {
    width: 3px; height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.4;
}

.hero-scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), white);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
    background: var(--green);
    padding: 40px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stats-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.stats-plus { font-size: 1.5rem; color: rgba(255,255,255,0.7); }
.stats-label { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 6px; }
.stats-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* ===========================
   INTRO
=========================== */
.intro { padding: 100px 0; }
.intro-container { max-width: 800px; margin: 0 auto; text-align: center; }
.intro-badge { font-size: 0.8rem; font-weight: 600; color: var(--green-mid); letter-spacing: 0.08em; margin-bottom: 20px; display: block; }
.intro-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--green);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.intro-title em { color: var(--green-mid); }
.intro-text { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.intro-features { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; display: inline-flex; }
.intro-feature { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; color: var(--green); }
.if-icon { width: 22px; height: 22px; background: var(--green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }

/* ===========================
   SECTION BASE
=========================== */
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-mid);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--green);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-title em { color: var(--green-mid); }

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
    text-align: center;
}

/* ===========================
   LEISTUNGEN
=========================== */
.leistungen { background: var(--bg-2); }

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

.leistung-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.leistung-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27,58,45,0.2);
}

.lc-num {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.lc-icon { font-size: 2rem; margin-bottom: 14px; display: block; }

.leistung-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px;
    line-height: 1.3;
}

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

.lc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.lc-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(27,58,45,0.07);
    color: var(--green);
    border-radius: 50px;
}

/* CTA Card */
.leistung-card-cta {
    background: var(--green);
    border-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leistung-card-cta:hover {
    background: var(--bg-dark-2);
    border-color: transparent;
}

.lc-cta-inner { text-align: center; }
.lc-cta-inner h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 12px; }
.lc-cta-inner p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.65; }
.leistung-card-cta .btn-primary { background: white; color: var(--green); }
.leistung-card-cta .btn-primary:hover { background: var(--bg); }

/* ===========================
   FÖRDERUNG
=========================== */
.foerderung { background: var(--bg); }

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

.foerderung-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.fc-highlight {
    background: var(--green);
    border-color: transparent;
    grid-column: span 1;
}

.fc-logo {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--text-muted);
}
.fc-highlight .fc-logo { color: rgba(255,255,255,0.6); }

.foerderung-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
}
.fc-highlight h3 { color: white; }

.fc-amount {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-mid);
    margin-bottom: 12px;
}
.fc-highlight .fc-amount { color: rgba(255,255,255,0.9); }

.foerderung-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.fc-highlight p { color: rgba(255,255,255,0.75); }

.fc-req {
    font-size: 0.8rem;
    padding: 10px 14px;
    background: rgba(27,58,45,0.06);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    line-height: 1.5;
}
.fc-req strong { color: var(--green); }
.fc-highlight .fc-req { background: rgba(255,255,255,0.1); }
.fc-highlight .fc-req { color: rgba(255,255,255,0.8); }
.fc-highlight .fc-req strong { color: white; }

.foerderung-cta {
    text-align: center;
    padding: 48px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.foerderung-cta p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

/* ===========================
   PROZESS
=========================== */
.prozess { background: var(--bg-2); }

.prozess-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.prozess-left { position: sticky; top: 120px; }
.prozess-left .section-title { text-align: left; }
.prozess-left .section-sub { text-align: left; margin: 0; }

.prozess-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.prozess-step:hover { transform: translateX(6px); box-shadow: var(--shadow); }

.ps-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    opacity: 0.2;
    flex-shrink: 0;
    width: 48px;
    line-height: 1;
    transition: opacity 0.3s;
}
.prozess-step:hover .ps-num { opacity: 1; }

.ps-content h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
}
.ps-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.prozess-connector {
    width: 1px;
    height: 28px;
    background: var(--border);
    margin-left: 72px;
}

/* ===========================
   WHY US
=========================== */
.whyus { background: var(--bg); }

.whyus-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.whyus-visual { position: relative; }

.whyus-card-main {
    background: var(--green);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 20px;
}
.wcm-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.wcm-items { display: flex; flex-direction: column; gap: 14px; }
.wcm-item { display: flex; align-items: center; gap: 12px; }
.wcm-check {
    width: 24px; height: 24px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: white; font-weight: 700; flex-shrink: 0;
}
.wcm-item span:last-child { font-size: 0.92rem; color: rgba(255,255,255,0.85); }

.whyus-card-mini {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
}
.wcmini-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.wcmini-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.whyus-content .section-title { text-align: left; }
.whyus-points { margin-top: 36px; display: flex; flex-direction: column; gap: 28px; }

.whyus-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.wp-icon { font-size: 1.4rem; flex-shrink: 0; width: 40px; }
.whyus-point h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 6px;
}
.whyus-point p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--bg-2); }
.testimonials .section-title { text-align: center; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.testimonials-col { display: flex; flex-direction: column; gap: 24px; }

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tc-featured { background: var(--green); border-color: transparent; }

.tc-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 0.8;
    color: var(--border-dark);
    margin-bottom: 12px;
    display: block;
}
.tc-featured .tc-quote { color: rgba(255,255,255,0.2); }

.tc-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.tc-featured .tc-text { color: rgba(255,255,255,0.85); }

.tc-author { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tc-avatar {
    width: 44px; height: 44px;
    background: var(--bg-2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
}
.tc-featured .tc-avatar { background: rgba(255,255,255,0.15); color: white; }

.tc-author strong { display: block; font-size: 0.9rem; color: var(--green); }
.tc-featured .tc-author strong { color: white; }
.tc-author span { font-size: 0.78rem; color: var(--text-muted); }
.tc-featured .tc-author span { color: rgba(255,255,255,0.6); }

.tc-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; }
.tc-featured .tc-stars { color: rgba(255,255,255,0.7); }

/* ===========================
   KONTAKT
=========================== */
.kontakt { background: var(--bg); }

.kontakt-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.kontakt-header { text-align: center; margin-bottom: 64px; }
.kontakt-header .section-title { text-align: center; }

.kontakt-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.kontakt-info { display: flex; flex-direction: column; gap: 24px; }

.ki-item { display: flex; gap: 16px; align-items: flex-start; }
.ki-icon { font-size: 1.5rem; flex-shrink: 0; width: 36px; }
.ki-item strong { display: block; font-size: 0.95rem; color: var(--green); font-weight: 700; margin-bottom: 4px; }
.ki-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.kontakt-form-wrap { position: relative; }

.kontakt-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--green); }

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(92,107,98,0.4); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(27,58,45,0.08);
    background: white;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235C6B62' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: var(--bg);
    padding-right: 40px;
}
.form-group select option { background: white; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-privacy { display: flex; gap: 10px; align-items: flex-start; }
.form-privacy input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; margin-top: 2px; accent-color: var(--green); }
.form-privacy label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.form-privacy a { color: var(--green-mid); text-decoration: none; }
.form-privacy a:hover { text-decoration: underline; }

.form-note { font-size: 0.75rem; color: var(--text-muted); opacity: 0.6; text-align: center; }
.form-partner-note { font-size: 0.72rem; color: var(--text-muted); opacity: 0.5; text-align: center; line-height: 1.6; margin-top: 12px; }
.form-partner-note a { color: var(--green-mid); text-decoration: underline; }

.form-success {
    display: none;
    background: white;
    border: 1.5px solid rgba(27,58,45,0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow);
}
.form-success.visible { display: block; }
.fs-icon {
    width: 64px; height: 64px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700;
    margin: 0 auto 24px;
}
.form-success h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.form-success p { font-size: 0.95rem; color: var(--text-muted); }

/* ===========================
   FAQ
=========================== */
.faq { background: var(--bg-2); }

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.faq-inner .section-title { text-align: left; }

.faq-list {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    background: white;
    border: none;
    color: var(--green);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 22px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
}
.faq-question:hover { background: var(--bg); }
.faq-question[aria-expanded="true"] { background: var(--bg); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--green-mid); }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s, color 0.3s;
    line-height: 1;
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); background: var(--bg); }
.faq-answer p { padding: 0 28px 22px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ===========================
   FINAL CTA
=========================== */
.final-cta { background: var(--bg); }

.final-cta-inner {
    background: var(--green);
    border-radius: 24px;
    padding: 80px;
    text-align: center;
}

.fci-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.fci-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.fci-title em { color: rgba(255,255,255,0.7); }

.final-cta-inner p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 36px; }

.final-cta-inner .btn-primary { background: white; color: var(--green); box-shadow: none; }
.final-cta-inner .btn-primary:hover { background: var(--bg); }

/* ===========================
   FOOTER
=========================== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo { color: white; margin-bottom: 12px; display: block; }
.footer-brand .accent { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; margin-bottom: 8px; }
.footer-partner { font-size: 0.78rem !important; color: rgba(255,255,255,0.3) !important; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 12px; margin-top: 4px !important; }
.footer-partner strong { color: rgba(255,255,255,0.45); font-weight: 600; }
.footer-partner a { color: rgba(255,255,255,0.45); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.footer-partner a:hover { color: rgba(255,255,255,0.7); }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fn-col { display: flex; flex-direction: column; gap: 10px; }
.fn-col strong { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.fn-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.fn-col a:hover { color: white; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
    .foerderung-grid { grid-template-columns: repeat(2, 1fr); }
    .whyus-inner { grid-template-columns: 1fr; gap: 48px; }
    .prozess-inner { grid-template-columns: 1fr; gap: 48px; }
    .prozess-left { position: static; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .kontakt-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .section { padding: 72px 0; }
    .container { padding: 0 20px; }
    .leistungen-grid { grid-template-columns: 1fr; }
    .foerderung-grid { grid-template-columns: 1fr; }
    .stats-grid { gap: 32px; }
    .stats-divider { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .kontakt-form { padding: 28px 20px; }
    .final-cta-inner { padding: 48px 28px; }
    .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .footer-nav { grid-template-columns: 1fr; }
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--green);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    animation: cookieSlideUp 0.4s ease;
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}
.cookie-text { flex: 1; }
.cookie-text strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.cookie-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}
.cookie-text a {
    color: rgba(255,255,255,0.85);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    transition: opacity 0.2s;
    white-space: nowrap;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-decline {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.2) !important;
}
.cookie-btn-accept {
    background: white;
    color: var(--green);
}
@media (max-width: 768px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
