/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F59E0B;
    --primary-dark: #D97706;
    --sunflower: #FBBF24;
    --warm-brown: #8B4513;
    --cream: #FFF8DC;
    --bg: #FFFBF0;
    --card-bg: #FFFFFF;
    --text: #1F2937;
    --text-muted: #6B7280;
    --border: #E5E7EB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== Navigation ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 251, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.sun-icon {
    width: 32px;
    height: 32px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, var(--bg) 50%, rgba(251, 191, 36, 0.1) 100%);
    padding: 6rem 1rem;
    text-align: center;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sunflower {
    position: absolute;
    opacity: 0.2;
}

.sunflower-1 {
    top: 2rem;
    right: 2rem;
    width: 12rem;
    height: 12rem;
}

.sunflower-2 {
    bottom: 2rem;
    left: 2rem;
    width: 8rem;
    height: 8rem;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-sun {
    margin: 0 auto 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--text-muted);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ===== Sections ===== */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--card-bg);
}

.section-header {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 3.5rem;
}

.section-icon {
    margin: 0 auto 1rem;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.section-intro strong {
    color: var(--text);
    font-weight: 600;
}

/* ===== Values Grid ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
}

.value-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ===== Donation Box ===== */
.donation-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    padding: 2.5rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.donation-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.donation-box > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bank-details {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.bank-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.bank-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text);
}

.bank-account {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0.25rem 0 1rem;
}

.bank-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== Karriere / Wir suchen dich ===== */
.career-section {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.08));
}

.career-box {
    max-width: 42rem;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
    text-align: center;
}

.career-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.career-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.career-intro {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.career-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.career-benefits li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.career-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.career-benefits li strong {
    color: var(--text);
}

.career-cta {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.career-box .btn {
    margin-top: 0.25rem;
}

.career-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.12);
    transform: translateY(-2px);
}

/* Personalbogen */
.personalbogen-panel {
    margin-top: 2rem;
    text-align: left;
}

.personalbogen-panel[hidden] {
    display: none !important;
}

.personalbogen-sheet {
    background: var(--card-bg);
    border: 2px dashed var(--border);
    border-radius: 0.5rem;
    padding: 1.75rem 1.5rem 2rem;
    max-width: 44rem;
    margin: 0 auto;
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08);
}

.personalbogen-header {
    position: relative;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.personalbogen-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.personalbogen-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0 auto;
    max-width: 36rem;
    line-height: 1.5;
}

.personalbogen-close {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 0.35rem 0.65rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    cursor: pointer;
    color: var(--text-muted);
}

.personalbogen-close:hover {
    color: var(--text);
    border-color: var(--primary);
}

.pb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.pb-full {
    grid-column: 1 / -1;
}

.pb-span-2 {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .pb-grid {
        grid-template-columns: 1fr;
    }
    .pb-span-2 {
        grid-column: 1;
    }
}

.personalbogen-form .form-group label,
.personalbogen-form .pb-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text);
    display: block;
    margin-bottom: 0.35rem;
}

.personalbogen-form .req {
    color: #B45309;
}

.personalbogen-form .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.personalbogen-form input[type="text"],
.personalbogen-form input[type="email"],
.personalbogen-form input[type="tel"],
.personalbogen-form input[type="date"],
.personalbogen-form select,
.personalbogen-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 0.9375rem;
    background: var(--bg);
}

.personalbogen-form input:focus,
.personalbogen-form select:focus,
.personalbogen-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.15);
}

.pb-yesno .pb-label {
    margin-bottom: 0.25rem;
}

.pb-check-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.pb-check-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pb-fieldset {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1rem 1rem 1.25rem;
    margin: 0;
}

.pb-fieldset legend {
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0 0.5rem;
}

.pb-lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pb-lang-opt {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    background: var(--bg);
    cursor: pointer;
    font-size: 0.875rem;
    transition: border-color 0.2s, background 0.2s;
}

.pb-lang-opt:has(input:checked) {
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.12);
}

.pb-lang-opt input {
    accent-color: var(--primary);
}

.pb-sublabel {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--text-muted);
}

.personalbogen-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

/* Grünes Häkchen – Erfolgsmeldung (Personalbogen & Kontakt) */
.success-check {
    margin: 0 auto 1.25rem;
    width: 72px;
    height: 72px;
    animation: success-pop 0.45s ease-out;
}

@keyframes success-pop {
    0% {
        transform: scale(0.65);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-check__svg {
    display: block;
    width: 72px;
    height: 72px;
}

.success-check__circle {
    stroke: #16a34a;
    stroke-width: 2;
    fill: rgba(22, 163, 74, 0.12);
}

.success-check__check {
    stroke: #15803d;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.personalbogen-success {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid rgba(22, 163, 74, 0.35);
    background: rgba(22, 163, 74, 0.07);
    border-radius: 0.75rem;
    outline: none;
}

.personalbogen-success h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #166534;
}

.personalbogen-success p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* ===== Hilfe & Anlaufstellen ===== */
.hilfe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hilfe-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.hilfe-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(245, 158, 11, 0.3);
}

.hilfe-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hilfe-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.hilfe-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.hilfe-detail {
    font-size: 0.8125rem !important;
    color: var(--text-muted);
    opacity: 0.95;
}

.hilfe-link {
    display: inline-block;
    font-size: 0.8125rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.hilfe-link:hover {
    text-decoration: underline;
}

.hilfe-link + .hilfe-link {
    margin-top: 0.25rem;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== Tarife Table ===== */
.table-wrapper {
    overflow-x: auto;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.tarife-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
}

.tarife-table thead {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.1));
}

.tarife-table th,
.tarife-table td {
    padding: 1rem;
    text-align: left;
}

.tarife-table th {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
}

.tarife-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.tarife-table tbody tr:last-child {
    border-bottom: none;
}

.tarif-art {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.tarife-table td:first-child {
    width: 60px;
}

.tarife-table td:nth-child(2) {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Tarife Notes ===== */
.tarife-notes {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
}

.notes-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
}

.tarife-notes ul {
    list-style: none;
    padding: 0;
}

.tarife-notes li {
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.tarife-notes li:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.tarife-notes strong {
    color: var(--text);
    font-weight: 600;
}

/* ===== Team Grid ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.team-photo {
    height: 12rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-initials {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.team-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 1rem 0.5rem;
}

.team-role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
}

.team-email {
    display: inline-block;
    color: var(--primary);
    font-size: 0.75rem;
    text-decoration: none;
    padding-bottom: 1.5rem;
}

.team-email:hover {
    text-decoration: underline;
}

/* ===== Contact Form ===== */
.contact-wrapper {
    max-width: 42rem;
    margin: 0 auto;
}

.contact-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Success Message (Kontakt) ===== */
.success-message {
    background: rgba(22, 163, 74, 0.07);
    border: 1px solid rgba(22, 163, 74, 0.35);
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    text-align: center;
    outline: none;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #166534;
}

.success-message p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--warm-brown);
    color: var(--cream);
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 248, 220, 0.8);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 248, 220, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 248, 220, 0.6);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--cream);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--border);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .sunflower-1,
    .sunflower-2 {
        display: none;
    }

    .section {
        padding: 3rem 0;
    }

    .values-grid,
    .services-grid,
    .team-grid,
    .vision-grid,
    .fachpersonal-grid,
    .tarife-cards-grid {
        grid-template-columns: 1fr;
    }

    .tarife-table {
        font-size: 0.875rem;
    }

    .tarife-table th,
    .tarife-table td {
        padding: 0.75rem 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== Smooth Scrolling ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Utilities ===== */
.text-center {
    text-align: center;
}

strong {
    font-weight: 600;
}

/* ===== Service List (in service cards) ===== */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
}

.service-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ===== Tarife Cards Grid ===== */
.tarife-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.tarif-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.75rem;
    transition: box-shadow 0.3s;
}

.tarif-block:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.tarif-block-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
}

.tarif-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.tarif-block-extras {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarif-extra-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.tarif-extra-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.tarif-extra-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.tarif-block-fahrt .tarif-block-title {
    margin-bottom: 1rem;
}

.tarif-fahrt-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tarif-fahrt-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.4rem 0;
    border-bottom: 1px dashed var(--border);
}

.tarif-fahrt-list li:last-child {
    border-bottom: none;
}

.fahrt-plz {
    color: var(--text-muted);
    flex-shrink: 0;
}

.fahrt-plz-wide {
    font-style: italic;
}

.fahrt-price {
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

/* ===== Vision Grid ===== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.vision-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border-top: 3px solid var(--primary);
}

.vision-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.vision-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vision-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.vision-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ===== Fachpersonal Grid ===== */
.fachpersonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.fachpersonal-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.75rem;
    transition: all 0.3s;
}

.fachpersonal-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.fachpersonal-card-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border-color: rgba(245, 158, 11, 0.4);
}

.fachpersonal-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.fachpersonal-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.fachpersonal-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.fachpersonal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fachpersonal-list li {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
    border-bottom: 1px dashed var(--border);
}

.fachpersonal-list li:last-child {
    border-bottom: none;
}

.fachpersonal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ===== Contact Info Box ===== */
.contact-info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text);
}

.contact-info-icon {
    font-size: 1.1rem;
}

.contact-info-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* ===== Logo Images ===== */
.nav-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
