:root {
    --black: #111111;
    --black-light: #2a2a2a;
    --green: #2A8C7E;
    --green-light: #3aada0;
    --green-lighter: #49c9ba;
    --white: #ffffff;
    --gray: #f7f8fa;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f0f2f5;
    font-family: 'Raleway', sans-serif;
}

/* -- TOP BAR -- */
.topbar {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 0 3rem;
}

.topbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
}

.topbar a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.topbar a:hover { color: var(--green-light); }

.topbar-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.topbar-contact span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-social {
    display: flex;
    gap: 1rem;
}

/* -- MAIN HEADER -- */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(27,42,74,0.08);
    position: sticky;
    top: 0;
    z-index: 10000;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* -- LOGO -- */
.logo-wrap img {
    height: 100px;
    width: auto;
    margin-top: 1rem;
}
    

/* -- NAV -- */
nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav a {
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

nav a:hover {
    background: var(--gray);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.btn-contact {
    margin-left: 1rem;
    background: var(--black);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}

.btn-contact:hover {
    background: var(--black-light) !important;
}

/* -- GREEN BOTTOM LINE -- */
.header-green-line {
    height: 3px;
    background: linear-gradient(90deg, var(--black) 0%, var(--green) 15%, var(--green-light) 40%, var(--green-lighter) 50%, var(--green-light) 60%, var(--green) 85%, var(--black) 100%);
}

/* -- HAMBURGER -- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    position: absolute;
    right: 3rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Abstand zwischen Info-Card und Formular */
.kontakt-details-card {
    margin-bottom: 20rem;

}

.kontakt-details-card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    color: var(--black);
}

.kontakt-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kontakt-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.kontakt-detail-item i {
    font-size: 1.2rem;
    width: 19.2px;
    height: 20px;
    color: var(--green);
    margin-top: 4px;
}

.kontakt-detail-item strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.3rem;
}

.kontakt-details-layout {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 2rem;
    align-items: center;
}

.kontakt-details-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kontakt-details-logo img {
    max-width: 200px;
    height: auto;
}

@media (max-width: 700px) {
    .kontakt-details-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kontakt-details-logo {
        margin-top: 1.5rem;
    }

    .kontakt-details-grid {
        align-items: center;
    }

    .kontakt-detail-item {
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
}

/* -- Kontakt -- */
.kontakt-page {
    padding: 4rem 2rem;
    background: var(--gray);
    min-height: 60vh;
}

.kontakt-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    margin-top: 5rem;
    border-top: 4px solid var(--green);
}

.kontakt-container h1 {
    color: var(--black);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.kontakt-intro {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dde2ec;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
}

.btn-submit {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.85rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--black-light);
}

.alert-success {
    background: #e8f5f3;
    color: #2A8C7E;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #2A8C7E;
}

/* -- ÜBER UNS -- */
.ueber-uns-page {
    background: var(--gray);
    min-height: 80vh;
}

.ueber-hero {
    background: var(--gray);
    text-align: center;
    padding: 4rem 2rem;
}

.ueber-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.ueber-hero p {
    font-size: 1.1rem;
    color: var(--green);
}

.ueber-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}


/* -- KAUFEN SEITE -- */
.kaufen-page {
    background: var(--gray);
    min-height: 100vh;
}

.kaufen-hero {
    background: var(--gray);
    text-align: center;
    padding: 4rem 2rem;
}

.kaufen-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.kaufen-hero p {
    font-size: 1rem;
    color: var(--green);
    letter-spacing: 0.1em;
}

.kaufen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* -- DETAIL SEITE -- */
.detail-page {
    background: var(--gray);
    min-height: 100vh;
}

.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid #e8edf5;
    padding: 0.75rem 2rem;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #888;
}

.breadcrumb-inner a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-inner a:hover {
    color: var(--green);
}

.breadcrumb-inner span:last-child {
    color: var(--black);
    font-weight: 500;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

/* -- BILD -- */
.detail-bild {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #d8dde8;
}

.detail-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-bild-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aabe;
    font-size: 5rem;
}

.detail-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
}

.detail-slider {
    position: relative;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #d8dde8;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover { background: rgba(0,0,0,0.7); }
.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s;
}

.slider-dot.active { background: white; }

/* -- CARDS -- */
.detail-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
}

.detail-card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green);
}

.detail-card p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* -- FACTS -- */
.detail-facts {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 0.9rem;
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-label {
    color: #888;
}

.fact-value {
    color: var(--black);
    font-weight: 500;
}

/* -- PREIS CARD -- */
.preis-card {
    text-align: center;
    border-top: 4px solid var(--green);
}

.preis-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.5rem;
}

.preis-wert {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
}
/* -- TERMIN SEITE -- */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: var(--white);
    font-size: 0.9rem;
    color: #444;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.select-wrapper select:hover {
    border-color: var(--gold);
}


.select-wrapper select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,168,97,0.15);
}

.select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--gold);
    pointer-events: none;
}
.termin-page {
    background: var(--gray);
    min-height: 100vh;
}

.termin-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.termin-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.termin-info-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-top: 4px solid var(--green);
}

.termin-info-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.termin-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.termin-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.termin-step strong {
    display: block;
    color: var(--black);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.termin-step p {
    color: #888;
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.termin-kontakt-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.termin-kontakt-link:hover { color: var(--green); }
.termin-kontakt-link i { color: var(--green); width: 16px; }

.termin-form-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.termin-form-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.termin-form-sub {
    color: #aaa;
    font-size: 0.82rem;
    margin-bottom: 1.75rem;
}

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

.termin-success {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.termin-success i {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.termin-success h2 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.termin-success p {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .termin-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* -- KONTAKT CARD -- */
.kontakt-sub {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
    .detail-container {
        grid-template-columns: 1fr;
    }

    .detail-bild {
        height: 280px;
    }
}


/* -- GRID -- */
.immobilien-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* -- CARD -- */
.immobilie-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.immobilie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-bild {
    position: relative;
    height: 200px;
    background: #d8dde8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-bild-placeholder {
    color: #a0aabe;
    font-size: 3rem;
}

.card-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
}

.card-body {
    padding: 1.5rem;
}

.card-titel {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.card-adresse {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 0.75rem;
}

.card-beschreibung {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #666;
    padding: 0.75rem 0;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
    margin-bottom: 1rem;
}

.card-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-details i {
    color: var(--green);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-preis {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
}

.card-btn {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: background 0.2s;
}

.card-btn:hover {
    background: var(--green);
}

/* -- KEINE IMMOBILIEN -- */
.keine-immobilien {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--gray);
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.keine-immobilien i {
    font-size: 4rem;
    color: #d0d5e0;
    margin-bottom: 1.5rem;
}

.keine-immobilien h2 {
    color: var(--black);
    margin-bottom: 0.75rem;
}

.keine-immobilien p {
    color: #888;
    margin-bottom: 2rem;
}

.btn-kontakt {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: background 0.2s;
}

.btn-kontakt:hover {
    background: var(--green);
}

/* -- Footer -- */
.site-footer {
    background-color: var(--gray);
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: #333;
}

.site-footer a {
    color: var(--black);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Flexbox für größere Bildschirme */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

/* Responsive: kleine Bildschirme */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* -- RESPONSIVE -- */
@media (max-width: 1000px) {
    .immobilien-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .kaufen-hero h1 {
        font-size: 1.8rem;
    }
}


/* -- VERKAUFEN/VERMIETEN SEITE -- */
.verkaufen-page {
    background: var(--gray);
    min-height: 100vh;
}

.verkaufen-hero {
    background: var(--gray);
    color: var(--black);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.verkaufen-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.verkaufen-hero-inner {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.verkaufen-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.verkaufen-hero p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
}

.sold-banner {
    position: absolute;
    inset: 0;
    background: rgba(100, 100, 100, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
}

/* -- LAYOUT -- */
.verkaufen-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
    align-items: start;
}

/* -- INTRO -- */
.verkaufen-intro {
    background: var(--white);
    border-left: 4px solid var(--green);
    padding: 1.25rem 1.5rem;
    border-radius: 0 6px 6px 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.verkaufen-intro p {
    color: #444;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* -- LEISTUNGEN -- */
.leistungen-liste {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.leistung-item {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.leistung-item:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.leistung-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f2f5;
}

.leistung-icon {
    width: 48px;
    height: 48px;
    background: rgba(42, 140, 126, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.leistung-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}

.leistung-item p {
    color: #555;
    line-height: 1.75;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.leistung-punkte {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.leistung-punkte li {
    font-size: 0.875rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.leistung-punkte li i {
    color: var(--green);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* -- SIDEBAR -- */
.verkaufen-sidebar {
    position: sticky;
    top: 10rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-top: 4px solid var(--green);
}

.sidebar-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.sidebar-sub {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.leistung-highlight {
    background: rgba(42, 140, 126, 0.08);
    border-left: 3px solid var(--green);
    padding: 0.75rem 1rem;
    border-radius: 0 4px 4px 0;
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
    margin: 0.75rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.leistung-highlight i {
    color: var(--green);
    margin-top: 2px;
    flex-shrink: 0;
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
    .verkaufen-layout {
        grid-template-columns: 1fr;
    }

    .verkaufen-sidebar {
        position: static;
    }

    .verkaufen-hero h1 {
        font-size: 1.7rem;
    }
}


/* -- INDEX SEITE -- */
.index-page {
    background: var(--gray);
    min-height: 100vh;
}

.index-hero {
    background: var(--gray);
    padding: 4rem 2rem;
}

.index-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.index-text .hero-label {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.index-text h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.index-text-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.index-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: background 0.2s;
}

.cta-primary:hover { background: var(--green); }

.cta-secondary {
    background: transparent;
    color: var(--black);
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    border: 2px solid var(--black);
    transition: background 0.2s, color 0.2s;
}

.cta-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.index-form-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-top: 4px solid var(--green);
}

.form-card-header {
    margin-bottom: 1.5rem;
}

.form-card-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.form-card-header p {
    font-size: 0.85rem;
    color: #888;
}

.index-werte {
    background: var(--white);
    padding: 4rem 2rem;
    margin-top: 0;
}

.index-werte h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 2.5rem;
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
    .index-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .index-text h1 {
        font-size: 1.6rem;
    }
}



/* -- BEWERTEN SEITE -- */
.bewerten-page {
    background: var(--gray);
    min-height: 100vh;
}

.bewerten-hero {
    background: var(--gray);
    text-align: center;
    padding: 4rem 2rem;
}

.bewerten-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.bewerten-hero p {
    font-size: 1rem;
    color: var(--green);
    letter-spacing: 0.1em;
}

.bewerten-container {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 2rem 4rem;
}

/* -- PROGRESS BAR -- */
.progress-bar-wrap {
    margin-bottom: 2.5rem;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #d8dde8;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s, color 0.3s;
}

.progress-step span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
    transition: color 0.3s;
}

.progress-step.active .step-circle {
    background: var(--black);
    color: var(--white);
}

.progress-step.active span {
    color: var(--black);
    font-weight: 600;
}

.progress-step.done .step-circle {
    background: var(--green);
    color: var(--white);
}

.progress-step.done .step-circle::before {
    content: '✓';
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #d8dde8;
    margin: 0 0.5rem;
    margin-bottom: 1.4rem;
    max-width: 80px;
}

/* -- FORM STEPS -- */
.form-step {
    display: none;
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    margin-bottom: 2rem;
}

.step-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.step-header p {
    color: #888;
    font-size: 0.9rem;
}

/* -- TYP GRID -- */
.typ-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.typ-card input[type="radio"] {
    display: none;
}

.typ-inner {
    border: 2px solid #e0e4ee;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.typ-inner i {
    font-size: 2rem;
    color: #aab;
    transition: color 0.2s;
}

.typ-inner span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.03em;
}

.typ-card.selected .typ-inner,
.typ-card input:checked + .typ-inner {
    border-color: var(--black);
    background: #f0f3f8;
}

.typ-card.selected .typ-inner i,
.typ-card input:checked + .typ-inner i {
    color: var(--green);
}

.grid-error .typ-inner {
    border-color: #e74c3c;
}

/* -- STEP BUTTONS -- */
.step-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.btn-next, .btn-submit {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: auto;
}

.btn-next:hover, .btn-submit:hover {
    background: var(--green);
}

.btn-back {
    background: none;
    border: 1px solid #d0d5e0;
    color: #888;
    padding: 0.85rem 1.5rem;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-back:hover {
    border-color: var(--black);
    color: var(--black);
}

/* -- PFLICHT -- */
.pflicht {
    color: var(--green);
}

.field-hint {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.25rem;
    display: block;
}

/* -- INPUT ERROR -- */
.input-error {
    border-color: #e74c3c !important;
}

/* -- RESPONSIVE -- */
@media (max-width: 480px) {
    .typ-grid {
        grid-template-columns: 1fr;
    }

    .form-step {
        padding: 1.5rem;
    }

    .bewerten-hero h1 {
        font-size: 1.8rem;
    }

    .profil-bild img {
        max-width: 200px;
    }
}

@media (max-width: 360px) {
    .profil-bild img {
        max-width: 140px;
    }
}


/* -- PROFIL -- */
.profil-section {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
    background: var(--white);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.bild-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: #d8dde8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a95a8;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.profil-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
}

.profil-text {
    max-width: 750px;
}

.profil-bild img {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
}
.profil-text h2 {
    font-size: 2rem;
    color: var(--black);
    margin: 0.5rem 0 0.25rem;
    font-weight: 600;
}

.profil-titel {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.profil-bio {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.profil-kontakt {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.profil-kontakt a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.profil-kontakt a:hover {
    color: var(--green);
}

/* -- STATS -- */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border-top: 3px solid var(--green);
}

.stat-zahl {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

/* -- WERTE -- */
.werte-section {
    background: var(--gray);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.werte-section h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.werte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wert-item {
    text-align: center;
    padding: 1.5rem;
}

.wert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wert-item h3 {
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.wert-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.9rem;
}

.teal-icon {
    width: 70px;
    height: 70px;
    background: rgba(42, 140, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--green);
    font-size: 1.8rem;
    border: 2px solid rgba(42, 140, 126, 0.2);
    transition: background 0.3s, border-color 0.3s;
}

.teal-icon:hover {
    background: rgba(42, 140, 126, 0.2);
    border-color: var(--green);
}


/* -- MOBILE MENU -- */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid #e8edf5;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nablackvy);
    text-decoration: none;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #f0f2f5;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--green); }



/* -- RESPONSIVE -- */
@media (max-width: 900px) {
    .topbar { display: none; }
    .header-inner { padding: 0 1.5rem; height: 75px; }
    nav { display: none; }
    .hamburger { display: flex; }
    .logo-wrap img { height: 75px; }
}

@media (max-width: 900px) {
    .profil-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .ueber-container {
        padding: 2rem 1rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .werte-grid {
        grid-template-columns: 1fr;
    }

    .profil-bild {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
    }

    .ueber-hero h1 {
        font-size: 1.8rem;
    }
}