:root {
    --concrete: #5B6168;
    --anthracite: #2E3135;
    --steel-black: #1C1E21;
    --orange: #E76F00;
    --orange-dark: #C05A00;
    --white: #F4F4F2;
    --light-gray: #E8E8E6;
    --mid-gray: #9A9B9C;
    --section-bg: #252729;
    --card-bg: #2A2D30;
    --nav-bg: rgba(28, 30, 33, 0.95);
    --hero-overlay: rgba(28, 30, 33, 0.85);
    --footer-bg: #111315;
    --input-bg: #1C1E21;
    --input-border: #3a3d41;
    --shadow: rgba(0,0,0,.5);
}

/* ─── LIGHT MODE: Auto (OS-Einstellung, kein Cookie) ─── */
@media (prefers-color-scheme: light) {
    html:not([data-theme="dark"]) {
        --steel-black:  #F5F5F3;
        --section-bg:   #EAEAE8;
        --card-bg:      #FFFFFF;
        --anthracite:   #E2E2E0;
        --concrete:     #B8B8B6;
        --white:        #1C1E21;
        --light-gray:   #2E3135;
        --mid-gray:     #5B6168;
        --nav-bg:       rgba(245, 245, 243, 0.95);
        --hero-overlay: rgba(245, 245, 243, 0.7);
        --footer-bg:    #E0E0DE;
        --input-bg:     #F5F5F3;
        --input-border: #C8C8C6;
        --shadow:       rgba(0,0,0,.15);
    }
}

/* ─── LIGHT MODE: Manuell per Cookie/Button gesetzt ─── */
html[data-theme="light"] {
    --steel-black:  #F5F5F3;
    --section-bg:   #EAEAE8;
    --card-bg:      #FFFFFF;
    --anthracite:   #E2E2E0;
    --concrete:     #B8B8B6;
    --white:        #1C1E21;
    --light-gray:   #2E3135;
    --mid-gray:     #5B6168;
    --nav-bg:       rgba(245, 245, 243, 0.95);
    --hero-overlay: rgba(245, 245, 243, 0.7);
    --footer-bg:    #E0E0DE;
    --input-bg:     #F5F5F3;
    --input-border: #C8C8C6;
    --shadow:       rgba(0,0,0,.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--steel-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 111, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 64px;
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
}

.nav-logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--mid-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 0.45rem 1.2rem;
    border-radius: 2px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--orange-dark);
    color: #fff !important;
}

/* ─── THEME TOGGLE ─── */
.theme-toggle {
    background: none;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0.2rem 0.4rem;
    color: var(--mid-gray);
    margin-left: 0.75rem;
    transition: color 0.2s, border-color 0.2s;
}
.theme-toggle:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    margin-left: 1.5rem;
}

.lang-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--mid-gray);
    text-decoration: none;
    padding: 0.2rem 0.5rem;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.lang-btn:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}

.lang-btn.active {
    color: var(--orange);
    border-color: var(--orange);
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d0e0f 0%, #1a1c1f 40%, #232527 100%);
}

/* Grid texture overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(231, 111, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(231, 111, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Image placeholder */
.hero-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder .img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0) 0%, var(--hero-overlay) 60%, var(--steel-black) 100%);
}

.hero-image-placeholder .placeholder-box {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 52%;
    height: 78%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(231, 111, 0, 0.3);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.placeholder-box .ph-icon {
    font-size: 2.5rem;
    opacity: 0.3;
}

.placeholder-box .ph-text {
    font-size: 0.75rem;
    color: var(--orange);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.hero-title .line-accent {
    color: var(--orange);
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--light-gray);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--white);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 0.9rem 2.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.hero-stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.3rem;
}

/* ─── SECTION BASICS ─── */
section {
    padding: 6rem 5%;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--mid-gray);
    max-width: 560px;
    line-height: 1.7;
}

/* ─── USP BAR ─── */
#usp-bar {
    background: var(--anthracite);
    padding: 2rem 5%;
    border-top: 3px solid var(--orange);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.usp-grid {
    display: flex;
    gap: 0;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.usp-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.usp-item:last-child {
    border-right: none;
}

.usp-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.usp-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.usp-text span {
    font-size: 0.78rem;
    color: var(--mid-gray);
}

/* ─── CONCEPT ─── */
#konzept {
    background: var(--section-bg);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.concept-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.concept-highlight {
    background: rgba(231, 111, 0, 0.1);
    border-left: 3px solid var(--orange);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.7;
}

/* Einheit Cards */
.einheit-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.einheit-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
}

.einheit-header {
    background: var(--anthracite);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.einheit-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.einheit-badge {
    background: var(--orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 2px;
}

.einheit-badge.secondary {
    background: transparent;
    border: 1px solid var(--concrete);
    color: var(--mid-gray);
}

.einheit-body {
    padding: 1.5rem;
}

.einheit-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.einheit-metric .val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.einheit-metric .val span {
    font-size: 1rem;
}

.einheit-metric .lbl {
    font-size: 0.72rem;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.einheit-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.einheit-features li {
    background: rgba(231, 111, 0, 0.08);
    border: 1px solid rgba(231, 111, 0, 0.2);
    color: var(--white);
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
}

/* image placeholder card */
.img-ph {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(231, 111, 0, 0.25);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--mid-gray);
}

.img-ph .ph-ico {
    font-size: 2rem;
    opacity: 0.4;
}

.img-ph .ph-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    text-align: center;
    padding: 0 2rem;
}

/* ─── VORTEILE ─── */
#vorteile {
    background: var(--steel-black);
}

.vorteile-header {
    margin-bottom: 3.5rem;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255, 255, 255, 0.04);
}

.vorteil {
    background: var(--steel-black);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.2s;
}

.vorteil:hover {
    background: var(--card-bg);
}

.vorteil-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(231, 111, 0, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.vorteil h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.vorteil p {
    font-size: 0.88rem;
    color: var(--mid-gray);
    line-height: 1.7;
}

/* ─── ZIELGRUPPEN ─── */
#zielgruppen {
    background: var(--section-bg);
}

.zg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.zg-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
}

.zg-card:hover {
    border-color: rgba(231, 111, 0, 0.4);
    transform: translateY(-3px);
}

.zg-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.zg-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.zg-card p {
    font-size: 0.85rem;
    color: var(--mid-gray);
    line-height: 1.6;
}

/* ─── AUSSTATTUNG ─── */
#ausstattung {
    background: var(--anthracite);
}

.ausstattung-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.ausstattung-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ausstattung-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ausstattung-item:last-child {
    border-bottom: none;
}

.ausstattung-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.ausstattung-item strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.ausstattung-item span {
    font-size: 0.82rem;
    color: var(--mid-gray);
}

/* ─── FRÜHEINSTIEG ─── */
#frueheinstieg {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    text-align: center;
    padding: 5rem 5%;
}

#frueheinstieg .section-label {
    color: rgba(255, 255, 255, 0.7);
}

#frueheinstieg .section-title {
    color: #fff;
}

#frueheinstieg .section-sub {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 1rem auto 2.5rem;
}

#frueheinstieg .btn-white {
    background: #fff;
    color: var(--orange-dark);
    padding: 1rem 2.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
    transition: transform 0.2s;
}

#frueheinstieg .btn-white:hover {
    transform: translateY(-2px);
}

.frueh-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.frueh-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.frueh-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frueh-step-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 140px;
}

/* ─── STANDORT ─── */
#standort {
    background: var(--steel-black);
}

.standort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.standort-info {}

.standort-fact {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.standort-fact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.standort-fact-content strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.standort-fact-content span {
    font-size: 0.83rem;
    color: var(--mid-gray);
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 1.3;
    background: var(--card-bg);
    border: 1px dashed rgba(231, 111, 0, 0.25);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--mid-gray);
}

.map-placeholder .ph-ico {
    font-size: 2.5rem;
    opacity: 0.35;
}

.map-placeholder .ph-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

/* ─── FAQ ─── */
#faq {
    background: var(--section-bg);
}

.faq-list {
    margin-top: 3rem;
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--orange);
}

.faq-q .faq-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.2s, border-color 0.2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    border-color: var(--orange);
    color: var(--orange);
}

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a-inner {
    padding-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--mid-gray);
    line-height: 1.8;
}

/* ─── ANFRAGE ─── */
#anfrage {
    background: var(--steel-black);
}

.anfrage-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.anfrage-info p {
    font-size: 0.9rem;
    color: var(--mid-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.anfrage-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.anfrage-info li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.88rem;
    color: rgba(244, 244, 242, 0.75);
}

.anfrage-info li::before {
    content: '→';
    color: var(--orange);
    flex-shrink: 0;
}

.anfrage-form {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 2.5rem;
}

.form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mid-gray);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 2px;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--mid-gray);
    margin-top: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(154, 155, 156, 0.5);
}

select option {
    background: var(--steel-black);
}

.btn-form {
    width: 100%;
    margin-top: 0.5rem;
    background: var(--orange);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 1rem;
    border-radius: 2px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.btn-form:hover {
    background: var(--orange-dark);
}

/* ─── TIMELINE ─── */
#timeline {
    background: var(--anthracite);
}

.timeline-track {
    position: relative;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(231, 111, 0, 0.25);
}

.tl-item {
    display: flex;
    gap: 2.5rem;
    padding: 0 0 2.5rem 0;
    position: relative;
}

.tl-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--anthracite);
    border: 2px solid var(--orange);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.tl-dot.done {
    background: var(--orange);
}

.tl-dot .dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.tl-dot.done .dot-inner {
    background: #fff;
}

.tl-content {
    padding-top: 0.25rem;
}

.tl-date {
    font-size: 0.72rem;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tl-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0.25rem 0;
}

.tl-content p {
    font-size: 0.85rem;
    color: var(--mid-gray);
    line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
    background: var(--footer-bg);
    padding: 3rem 5% 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--orange);
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--mid-gray);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--mid-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(154, 155, 156, 0.5);
}

.footer-bottom a {
    color: rgba(154, 155, 156, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {

    .concept-grid,
    .ausstattung-grid,
    .standort-grid,
    .anfrage-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .vorteile-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav .nav-links {
        display: none;
    }

    .hero-image-placeholder .placeholder-box {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 5%;
    }

    .vorteile-grid {
        grid-template-columns: 1fr;
    }

    .usp-grid {
        flex-direction: column;
    }

    .usp-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 2rem;
    }
}