/**
 * Bibercare CMS - Wiederverwendbare Komponenten
 * Datei: public/assets/css/components.css
 * 
 * NEUE DATEI - Zentrale Komponenten-Bibliothek
 * Wird auf ALLEN Seiten geladen (via header.php)
 * 
 * Enthält:
 * =========================================================================
 * 1. PAGE HEADER       - Blauer Gradient-Header mit Breadcrumb (alle Unterseiten)
 * 2. SECTION UTILITIES  - Wiederverwendbare Section-Hintergründe
 * 3. ICON CIRCLES       - Einheitliche Icon-Kreise in verschiedenen Größen
 * 4. CARD: VALUE        - Werte-Cards (zentriert, Icon, Titel, Text)
 * 5. CARD: TEAM         - Team-Kompetenz-Cards (Gradient-Icon, Beschreibung)
 * 6. CARD: FEATURE      - Feature/Philosophie-Cards (zentriert, Border-Hover)
 * 7. CARD: SERVICE      - Service-Cards (Icon-Header, Badge, Checkliste)
 * 8. CARD: POSITION     - Stellenangebote-Cards (großes Icon, zentriert)
 * 9. CARD: INFO-BOX     - Info-Boxen (Border-Left, Icon, Inhalt)
 * 10. CARD: BENEFIT     - Vorteile-Items (horizontal, Icon, Inhalt)
 * 11. QUOTE: ACCENT     - Zitat mit Akzent-Hintergrund (company-motto Stil)
 * 12. QUOTE: DARK       - Zitat auf dunklem Gradient (philosophy-quote Stil)
 * 13. HIGHLIGHT BOX     - Hervorgehobene Feature-Box (focus-highlight Stil)
 * 14. CTA SECTIONS      - Call-to-Action Bereiche (Gradient + Buttons)
 * 15. LIST STYLES       - Checklisten, Prozess-Schritte
 * 16. GRID SYSTEMS      - Wiederverwendbare Grid-Layouts
 * 17. RESPONSIVE        - Responsive für alle Komponenten
 * =========================================================================
 * 
 * Verwendet CSS-Variablen aus style.css:
 * --primary-color: #2c5aa0
 * --secondary-color: #f8f9fa
 * --accent-color: #e8f2ff
 * --text-dark: #2d3748
 * --text-light: #718096
 * --text-muted: #718096
 * --success-color: #48bb78
 * --border-color: #e2e8f0
 * --shadow-sm, --shadow-md, --shadow-lg
 * --transition-fast, --transition-normal
 */

/* ==========================================================================
   1. PAGE HEADER - Blauer Gradient für alle Unterseiten
   Verwendet auf: konzepte, team, leistungen, karriere, aboutus, faq
   Ersetzt: .legal-section Header auf Content-Seiten
   ========================================================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4278 100%);
    color: white;
    padding: 3rem 0 2.5rem;
}

.page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Breadcrumb Navigation (weiß auf blauem Hintergrund) */
.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: white;
}

.page-header .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: white;
    font-weight: 500;
}

/* Seitentitel im Page Header */
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: white;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 400;
    margin: 0;
    color: white;
}

/* ==========================================================================
   2. SECTION UTILITIES - Wiederverwendbare Section-Hintergründe
   ========================================================================== */

.section-white {
    padding: 80px 0;
    background: white;
}

.section-light {
    padding: 80px 0;
    background: var(--secondary-color);
}

.section-accent {
    padding: 80px 0;
    background: var(--accent-color);
}

.section-gradient {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4480 100%);
    color: white;
}

.section-gradient .section-title {
    color: white;
}

/* ==========================================================================
   3. ICON CIRCLES - Einheitliche Icon-Kreise
   ========================================================================== */

/* Standard Icon-Kreis (60px) - für Value Cards, Info-Bereiche */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Varianten */
.icon-circle-sm {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.icon-circle-lg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.icon-circle-xl {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

/* Farbvarianten */
.icon-accent {
    background: var(--accent-color);
    color: var(--primary-color);
}

.icon-primary {
    background: var(--primary-color);
    color: white;
}

.icon-gradient {
    background: linear-gradient(135deg, var(--primary-color), #4a7bc8);
    color: white;
    box-shadow: 0 4px 8px rgba(44, 90, 160, 0.2);
}

.icon-white {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-success {
    background: var(--success-color);
    color: white;
}

/* ==========================================================================
   4. CARD: VALUE - Werte-Cards
   Verwendet auf: team.php, aboutus.php, karriere.php
   Zentriert, Icon oben, Titel, Beschreibung
   ========================================================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.1);
    border-color: var(--primary-color);
}

/* Variante: Weiß auf hellem Hintergrund */
.value-card-white {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Variante: Accent-Hintergrund Icon */
.value-icon-accent {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ==========================================================================
   5. CARD: TEAM - Team-Kompetenz-Cards
   Verwendet auf: team.php
   Gradient-Icon, linksbündig, Titel, Beschreibung, optionale Liste
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), #4a7bc8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(44, 90, 160, 0.2);
}

.team-card-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-card-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   6. CARD: FEATURE - Feature/Philosophie-Cards
   Verwendet auf: aboutus.php (Philosophie-Bereich)
   Zentriert, großes Icon, Border bei Hover
   ========================================================================== */

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.1);
    border-color: var(--primary-color);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.philosophy-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.philosophy-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   7. CARD: SERVICE - Service-Cards (erweitert)
   Verwendet auf: leistungen.php
   Icon-Header mit Titel, Badge-Option, Checkliste
   ========================================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* service-card Basis ist bereits in style.css definiert */
/* Hier nur Erweiterungen für Leistungen-Seite */

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-content {
    margin-top: 1rem;
}

/* Hervorgehobene Service Card (z.B. Palliative Versorgung) */
.service-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fff 0%, #fef5f5 100%);
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.service-highlight .service-icon {
    background: linear-gradient(135deg, #ffebeb, #ffe0e0);
    color: #ff6b6b;
}

/* Checklisten in Cards */
.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-check li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.list-check li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.125rem;
    color: var(--success-color);
    font-size: 0.875rem;
}

/* ==========================================================================
   8. CARD: POSITION - Stellenangebote-Cards
   Verwendet auf: karriere.php
   Großes zentriertes Icon, Titel, Untertitel, Beschreibung
   ========================================================================== */

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.position-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.position-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(44, 90, 160, 0.15);
    border-color: var(--primary-color);
}

.position-header {
    margin-bottom: 1.5rem;
}

.position-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1a4480);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.position-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.position-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.position-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 1rem;
}

/* Hinweis-Box unter Stellenangeboten */
.positions-note {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--success-color);
}

.note-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
}

/* ==========================================================================
   9. CARD: INFO-BOX - Info-Boxen mit Border-Left
   Verwendet auf: leistungen.php, faq.php
   ========================================================================== */

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

/* Variante: Auf hellem Hintergrund */
.info-box-light {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--secondary-color);
    border-radius: 8px;
}

.info-box-light i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-box-light p {
    margin: 0;
    flex: 1;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   10. CARD: BENEFIT - Vorteile-Items (horizontal)
   Verwendet auf: karriere.php
   ========================================================================== */

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.4;
}

/* ==========================================================================
   11. QUOTE: ACCENT - Zitat mit Akzent-Hintergrund
   Verwendet auf: aboutus.php (company-motto)
   Heller Hintergrund, Border-Left, zentrierter Text
   ========================================================================== */

.quote-accent,
.company-motto {
    margin: 3rem auto;
    max-width: 700px;
    padding: 2.5rem;
    background: var(--accent-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.quote-accent .fa-quote-left,
.company-motto .fa-quote-left {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.motto-text,
.quote-accent-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.motto-cite,
.quote-accent-cite {
    color: var(--text-light);
    font-size: 1rem;
    font-style: normal;
}

/* ==========================================================================
   12. QUOTE: DARK - Zitat auf dunklem Gradient
   Verwendet auf: konzepte.php (philosophy-section)
   Dunkler Gradient, weißer Text, große Schrift
   ========================================================================== */

.quote-dark-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4278 100%);
    color: white;
}

.quote-dark-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.philosophy-quote {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.philosophy-quote:last-child {
    margin-bottom: 0;
}

.philosophy-quote i {
    font-size: 2rem;
    opacity: 0.3;
}

.philosophy-quote i.fa-quote-left {
    display: block;
    margin-bottom: 1rem;
}

.philosophy-quote i.fa-quote-right {
    display: block;
    margin-top: 1rem;
}

.philosophy-quote p {
    font-size: 1.375rem;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

.philosophy-quote.primary p {
    font-size: 1.5rem;
    font-weight: 500;
}

.philosophy-quote.secondary {
    opacity: 0.9;
}

.philosophy-quote.secondary p {
    font-size: 1.25rem;
}

/* ==========================================================================
   13. HIGHLIGHT BOX - Hervorgehobene Feature-Box
   Verwendet auf: aboutus.php (focus-highlight / Palliative Care)
   Gradient-Hintergrund, farbiger Rand
   ========================================================================== */

.highlight-box,
.focus-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffebeb 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 107, 107, 0.15);
    position: relative;
    overflow: hidden;
}

.highlight-box::before,
.focus-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
}

.focus-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.focus-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.focus-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1rem;
}

.focus-detail {
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

/* Variante: Blauer Highlight */
.highlight-box-blue {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f0f7ff 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(44, 90, 160, 0.15);
    position: relative;
    overflow: hidden;
}

.highlight-box-blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #1e4278);
}

/* Focus Items Grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.focus-item {
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.focus-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.focus-item h4 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.focus-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   14. CTA SECTIONS - Call-to-Action Bereiche
   ========================================================================== */

/* CTA auf Gradient-Hintergrund (z.B. Leistungen, Team) */
.cta-section-gradient {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4480 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #e8f2ff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-highlight {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-highlight i {
    font-size: 1.25rem;
    color: #ffd700;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-note {
    color: #e8f2ff;
    font-size: 0.9rem;
    font-style: italic;
}

.cta-note i {
    margin-right: 0.25rem;
}

/* CTA auf hellem Hintergrund (z.B. Konzepte, FAQ) */
.cta-section-light {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

/* CTA auf weißem Hintergrund (z.B. Team) */
.cta-section-white {
    padding: 4rem 2rem;
    background: white;
}

.cta-section-white .cta-title {
    color: var(--text-dark);
}

.cta-section-white .cta-description {
    color: var(--text-light);
}

.cta-section-white .cta-note {
    color: var(--text-light);
}

.cta-section-white .cta-note i {
    color: var(--primary-color);
}

/* CTA Box (z.B. FAQ) */
.cta-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h3 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.cta-box .cta-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   15. LIST STYLES - Prozess-Schritte, Kosten
   ========================================================================== */

/* Prozess-Schritte (z.B. FAQ) */
.process-steps {
    margin-top: 1rem;
}

.process-steps .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    padding-top: 0.2rem;
}

/* Kosten-Liste (z.B. FAQ) */
.cost-examples {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.cost-examples h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cost-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cost-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cost-list li:last-child {
    border-bottom: none;
}

.cost-list .amount {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Support Note */
.support-note {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.support-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.support-note p {
    margin: 0;
}

/* Cost Info */
.cost-info {
    background: var(--accent-color);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--success-color);
}

.cost-info p {
    margin: 0;
}

/* ==========================================================================
   16. GRID SYSTEMS - Wiederverwendbare Grids
   ========================================================================== */

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.grid-auto-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

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

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

/* ==========================================================================
   17. RESPONSIVE - Alle Komponenten
   ========================================================================== */

@media (max-width: 768px) {
    /* Page Header */
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }

    /* Sections */
    .section-white,
    .section-light,
    .section-accent,
    .section-gradient {
        padding: 60px 0;
    }

    /* Cards & Grids */
    .values-grid,
    .philosophy-grid,
    .team-grid,
    .positions-grid,
    .focus-grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-highlight {
        grid-column: 1;
    }
    
    /* Benefit Items */
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Quotes */
    .quote-accent,
    .company-motto {
        padding: 2rem;
    }
    
    .motto-text,
    .quote-accent-text {
        font-size: 1.5rem;
    }
    
    .philosophy-quote p {
        font-size: 1.125rem;
    }
    
    .philosophy-quote.primary p {
        font-size: 1.25rem;
    }
    
    .philosophy-quote.secondary p {
        font-size: 1.0625rem;
    }
    
    /* Highlight Box */
    .highlight-box,
    .focus-highlight {
        padding: 2rem;
    }
    
    .focus-title {
        font-size: 1.5rem;
    }
    
    /* CTA */
    .cta-section-gradient {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    /* Info Box */
    .info-box {
        flex-direction: column;
    }
    
    /* Kosten */
    .cost-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Team & Value Cards Padding */
    .team-card,
    .value-card,
    .value-card-white {
        padding: 1.5rem;
    }
    
    .team-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Page Header */
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Cards */
    .philosophy-card,
    .value-card,
    .value-card-white,
    .position-card,
    .team-card {
        padding: 1.25rem;
    }
    
    .team-card-title {
        font-size: 1.2rem;
    }
    
    .value-icon,
    .value-icon-accent {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    /* Quotes */
    .quote-accent,
    .company-motto {
        padding: 1.5rem;
    }
    
    .motto-text,
    .quote-accent-text {
        font-size: 1.25rem;
    }
    
    .philosophy-quote {
        padding: 1.5rem 1rem;
    }
    
    /* Highlight */
    .highlight-box,
    .focus-highlight {
        padding: 1.5rem;
    }
    
    .focus-title {
        font-size: 1.25rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-box h3 {
        font-size: 1.35rem;
    }
    
    /* Info & Kosten */
    .cost-examples,
    .info-box-light,
    .support-note {
        padding: 1rem;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    /* Service Grid */
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .page-header {
        background: #2c5aa0 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .cta-buttons,
    .cta-section-gradient,
    .cta-section-light,
    .cta-section-white {
        display: none;
    }
}