/* =============================================================================
   SYSTEMISCHES THERAPIEZENTRUM - ONE-PAGER STYLESHEET
   Design: Warm, organisch, vertrauensvoll
   Farben: Salbeigrün, Warmcreme, Terrakotta
   ============================================================================= */

/* KEINE externen Fonts! Alles lokal / System-Fonts.
   Wenn Cormorant Garamond & Nunito Sans gewünscht:
   WOFF2-Dateien in assets/fonts/ ablegen und @font-face unten aktivieren.
*/

/* Lokale Font-Dateien (WOFF2 bevorzugt, TTF als Fallback) */
@font-face {
    font-family: 'Cormorant Garamond';
    src: local('Cormorant Garamond'),
         url('fonts/CormorantGaramond-Regular.woff2') format('woff2'),
         url('fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: local('Cormorant Garamond Medium'),
         url('fonts/CormorantGaramond-Medium.woff2') format('woff2'),
         url('fonts/CormorantGaramond-Medium.ttf') format('truetype');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: local('Cormorant Garamond SemiBold'),
         url('fonts/CormorantGaramond-SemiBold.woff2') format('woff2'),
         url('fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: local('Cormorant Garamond Bold'),
         url('fonts/CormorantGaramond-Bold.woff2') format('woff2'),
         url('fonts/CormorantGaramond-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: local('Cormorant Garamond Italic'),
         url('fonts/CormorantGaramond-Italic.woff2') format('woff2'),
         url('fonts/CormorantGaramond-Italic.ttf') format('truetype');
    font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: local('Cormorant Garamond Medium Italic'),
         url('fonts/CormorantGaramond-MediumItalic.woff2') format('woff2'),
         url('fonts/CormorantGaramond-MediumItalic.ttf') format('truetype');
    font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: local('Nunito Sans'),
         url('fonts/NunitoSans-Regular.woff2') format('woff2'),
         url('fonts/NunitoSans-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: local('Nunito Sans Light'),
         url('fonts/NunitoSans-Light.woff2') format('woff2'),
         url('fonts/NunitoSans-Light.ttf') format('truetype');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: local('Nunito Sans SemiBold'),
         url('fonts/NunitoSans-SemiBold.woff2') format('woff2'),
         url('fonts/NunitoSans-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: local('Nunito Sans Bold'),
         url('fonts/NunitoSans-Bold.woff2') format('woff2'),
         url('fonts/NunitoSans-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: local('Nunito Sans Italic'),
         url('fonts/NunitoSans-Italic.woff2') format('woff2'),
         url('fonts/NunitoSans-Italic.ttf') format('truetype');
    font-weight: 400; font-style: italic; font-display: swap;
}

:root {
    --sage: #7C9A7E;
    --sage-light: #A8BFA9;
    --sage-dark: #5B7A5D;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D2;
    --terra: #C4846C;
    --terra-light: #D4A08C;
    --forest: #2C3E2D;
    --forest-light: #3D5340;
    --warm-white: #FDFBF7;
    --text-dark: #2D2A26;
    --text-muted: #6B6560;
    --shadow-soft: 0 4px 24px rgba(44, 62, 45, 0.08);
    --shadow-hover: 0 8px 40px rgba(44, 62, 45, 0.12);
    --radius: 12px;
    --radius-lg: 24px;
    --font-heading: 'Cormorant Garamond', Georgia, 'Palatino Linotype', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 18px; /* Basis-Schriftgröße (Browser-Default 16px) – global größer für bessere Lesbarkeit; alle rem-Werte skalieren mit */
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1.06rem; /* ~19px bei html 18px – skaliert mit der Basis */
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--forest);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1em; }

a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--terra); }

/* ---- NAVIGATION ---- */

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(124, 154, 126, 0.15);
    transition: box-shadow 0.3s ease;
}

.nav-bar.scrolled {
    box-shadow: var(--shadow-soft);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--sage);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);

    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terra);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--forest);
}

.nav-links a.btn-primary {
    color: white;
}

.nav-links a.btn-primary:hover {
    color: white;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ---- HERO SECTION ---- */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--warm-white) 40%, #E8EDEA 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 154, 126, 0.12) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 132, 108, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.15em;
    color: var(--sage-dark);
    background: rgba(124, 154, 126, 0.12);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.2rem;
    color: var(--forest);
}

.hero h1 em {
    font-style: italic;
    color: var(--sage-dark);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- BUTTONS ---- */

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-family: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    transition: all 0.35s ease;
}

.btn-primary {
    background: var(--sage-dark);
    color: white;
    box-shadow: 0 4px 16px rgba(91, 122, 93, 0.3);
}

.btn-primary:hover {
    background: var(--forest);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(91, 122, 93, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--sage-dark);
    border: 2px solid var(--sage);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--sage-dark);
    color: white;
    border-color: var(--sage-dark);
}

/* ---- SECTIONS ---- */

section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 0.8rem;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: var(--terra);
    border-radius: 2px;
    margin: 1rem auto;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---- ÜBER UNS ---- */

.about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sage-light), var(--cream-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 154, 126, 0.2);
}

.about-text h2 {
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.02rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.value-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(124, 154, 126, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--sage-dark);
}

.value-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--forest);
    line-height: 1.4;
    padding-top: 0.4rem;
}

/* ---- THERAPEUTEN ---- */

.team {
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Verwaiste letzte Karte (ungerade Anzahl) auf Desktop mittig setzen */
@media (min-width: 901px) {
    .team-grid > .team-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 1rem);
        justify-self: center;
    }
}

.team-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
    border: 1px solid rgba(124, 154, 126, 0.08);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    overflow: hidden;
}

.team-photo {
    background-repeat: no-repeat;
}

.team-card h3 {
    margin-bottom: 0.3rem;
}

.team-card .role {
    font-size: 0.88rem;
    color: var(--terra);
    font-weight: 600;

    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.team-card .team-link {
    display: inline-block;
    margin-top: auto;
    padding-top: 1.2rem;
    padding: 0.55rem 1.5rem;
    border: 2px solid var(--sage);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sage-dark);
    transition: all 0.3s ease;
}

.team-card .team-link:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: white;
}

/* ---- TRUST BADGES (Hero) ---- */

.trust-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sage-dark);
    background: rgba(124, 154, 126, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

/* ---- TEAM EXTRAS ---- */

.kassen-badge {
    margin-bottom: 0.8rem;
}

.kassen-badge span {
    background: rgba(124,154,126,0.15);
    color: var(--sage-dark);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
}

.service-tags {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.service-tag {
    background: var(--cream);
    color: var(--text-muted);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.78rem;
    transition: all 0.2s ease;
}

.service-tag:hover {
    background: var(--sage-light);
    color: white;
}

.team-phone {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.team-phone a {
    color: var(--sage-dark);
    font-weight: 600;
}

/* ---- ERSTE SCHRITTE ---- */

.erste-schritte {
    background: var(--warm-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.35s ease;
}

.step-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--sage-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(91,122,93,0.3);
}

.step-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.step-card h3 {
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-card a {
    color: var(--sage-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--sage-light);
}

.step-note {
    margin-top: 1.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--terra);

    letter-spacing: 0.06em;
}

/* ---- KOSTENINFO ---- */

.kosten-box {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(124, 154, 126, 0.15);
}

.kosten-box h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.kosten-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.kosten-item {
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.kosten-item:hover {
    box-shadow: var(--shadow-soft);
}

.kosten-label {
    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    color: var(--sage-dark);
    margin-bottom: 0.5rem;
}

.kosten-value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1rem;
}

.kosten-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    text-align: left;
}

.kosten-hint {
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ---- FAQ ---- */

.faq-section {
    max-width: 750px;
    margin: 0 auto;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.faq-item {
    background: var(--cream);
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--sage-light);
}

.faq-item[open] {
    background: var(--warm-white);
    border-color: var(--sage);
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    color: var(--forest);
    cursor: pointer;
    font-size: 1.02rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--sage);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--terra);
}

.faq-item p {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- ANFAHRT BOX ---- */

.anfahrt-box {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(124, 154, 126, 0.12);
    border-radius: var(--radius);
}

/* ---- NEUIGKEITEN ---- */

.news {
    background: var(--warm-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.news-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-soft);
}

.news-date {
    font-size: 0.82rem;
    color: var(--terra);
    font-weight: 700;

    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.news-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* PDF-Vorschau im News-Eintrag (z.B. Seminar-Flyer) */
.news-pdf {
    display: block;
    margin: 1.3rem 0 0.5rem;
    text-align: center;
}

.news-pdf img {
    width: 100%;
    max-width: 230px;
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-pdf:hover img {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.news-pdf-label {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sage-dark);
}

.news-pdf:hover .news-pdf-label {
    text-decoration: underline;
}

.news-author {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--sage-dark);
    font-weight: 600;
}

/* ---- KONTAKT ---- */

.contact {
    background: var(--forest);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 154, 126, 0.15) 0%, transparent 70%);
}

.contact .section-header h2 { color: white; }
.contact .section-header p { color: rgba(255,255,255,0.7); }
.contact .section-header .divider { background: var(--terra-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-info p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.6rem;
    font-size: 0.98rem;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.85);
}

.contact-info .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(124, 154, 126, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1.1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: white;
    font-family: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sage);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(124, 154, 126, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--sage);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.35s ease;
}

.btn-submit:hover {
    background: var(--sage-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 154, 126, 0.3);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--sage-light);
    font-size: 1.1rem;
}

/* ---- FOOTER ---- */

.footer {
    background: var(--forest);
    border-top: 1px solid rgba(124, 154, 126, 0.2);
    padding: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
}
.footer a:hover {
    color: var(--sage-light);
}

/* ---- SCROLL ANIMATIONS ---- */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image { order: -1; }
    .team-grid { grid-template-columns: 1fr; }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.97);
        backdrop-filter: blur(16px);
        padding: 0 2rem;
        gap: 0;
        border-bottom: 1px solid rgba(124, 154, 126, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease, gap 0.35s ease;
    }
    .nav-hamburger { display: block; }

    .nav-links.open {
        max-height: 400px;
        padding: 1.5rem 2rem;
        gap: 1rem;
    }

    .steps-grid { grid-template-columns: 1fr; }
    .kosten-grid { grid-template-columns: 1fr; }
    section { padding: 4rem 1.5rem; }
}

@media (max-width: 600px) {
    .about-values { grid-template-columns: 1fr; }
    .hero-content { padding: 1rem; padding-top: 5rem; }
    .hero-badge { font-size: 0.72rem; padding: 0.4rem 1rem; }
    .hero-trust { flex-direction: column; align-items: center; }
    .contact-form { padding: 1.5rem; }
    .kosten-box { padding: 1.5rem; }
    .btn-outline { margin-left: 0; margin-top: 0.8rem; }
    .hero .btn-group { display: flex; flex-direction: column; align-items: center; }
}

/* ---- FARBWÄHLER ---- */

.color-picker-panel {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    font-family: 'Nunito Sans', system-ui, sans-serif;
}

.color-picker-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--forest);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s, background 0.2s;
    position: absolute;
    bottom: 0;
    right: 0;
}

.color-picker-toggle:hover { transform: scale(1.1); }
.color-picker-toggle.open { background: var(--sage-dark); }

.color-picker-body {
    position: absolute;
    bottom: 64px;
    right: 0;
    width: 300px;
    max-height: 70vh;
    overflow-y: auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    padding: 1.2rem;
    display: none;
}

.color-picker-body.open { display: block; }

.color-picker-body h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.scheme-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.scheme-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.7rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: var(--cream);
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.scheme-btn:hover { background: var(--cream-dark); }
.scheme-btn.active { border-color: var(--forest); background: white; }

.scheme-preview {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

.color-sliders {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.color-sliders label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.color-input {
    width: 40px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 2px;
    cursor: pointer;
    background: none;
}

.reset-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.6rem;
    background: var(--cream);
    font-weight: 600;
}

@media (max-width: 600px) {
    .color-picker-panel { bottom: 1rem; right: 1rem; }
    .color-picker-body { width: 260px; }
}

/* ---- ADMIN LOGIN ---- */

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.login-box {
    background: var(--warm-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 420px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--cream);
}

.admin-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-card {
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.admin-card h3 { margin-bottom: 0.3rem; font-size: 1.15rem; }
.admin-card .meta { font-size: 0.85rem; color: var(--text-muted); }
.admin-card .actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.admin-card .btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-edit { background: var(--sage-light); color: white; }
.btn-edit:hover { background: var(--sage-dark); }
.btn-delete { background: var(--terra); color: white; }
.btn-delete:hover { background: #a86b55; }

.editor-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.editor-overlay.active { display: flex; }

.editor-box {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
}

.editor-box h2 { margin-bottom: 1.5rem; }

.editor-box .form-group input,
.editor-box .form-group textarea {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    color: var(--text-dark);
}

.editor-box .form-group input:focus,
.editor-box .form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(124, 154, 126, 0.15);
}

.editor-box .form-group label {
    color: var(--text-dark);
}

@media (max-width: 600px) {
    .admin-inner { padding: 1rem; }
    .admin-card {
        flex-direction: column;
        padding: 1.2rem;
        gap: 0.8rem;
    }
    .admin-card .actions {
        width: 100%;
        justify-content: flex-start;
    }
    .admin-card .btn-sm {
        padding: 0.5rem 0.8rem;
        font-size: 0.78rem;
    }
    .admin-page h2 {
        font-size: 1.3rem;
    }
    .editor-box {
        padding: 1.5rem;
        width: 95%;
    }
}
