/* ============================================
   GLOBAL & THEMES
   ============================================ */
:root {
    --primary: #0f172a;
    --accent: #c5a059; /* LUXURY GOLD */
    --accent-rgb: 197, 160, 89;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --card: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

[data-theme="dark"] {
    --bg: #020617;
    --bg-soft: #0f172a;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --border: #1e293b;
    --card: #1e293b;
    --shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* PALETTEN DEFINITIONEN */
[data-palette="blue"] { --accent: #3b82f6; --accent-rgb: 59, 130, 246; }
[data-palette="emerald"] { --accent: #059669; --accent-rgb: 5, 150, 105; }
[data-palette="purple"] { --accent: #7c3aed; --accent-rgb: 124, 58, 237; }

/* RESET & BASE */
html { scroll-behavior: smooth; cursor: none; overflow-x: hidden; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; transition: background 0.5s; overflow-x: hidden; max-width: 100vw; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; overflow-x: hidden; }
.bg-soft { background: var(--bg-soft); }

/* --- CUSTOM CURSOR --- */
.cursor-dot, .cursor-outline { pointer-events: none; position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; }
.cursor-dot { width: 8px; height: 8px; background-color: var(--accent); }
.cursor-outline { width: 40px; height: 40px; border: 2px solid var(--accent); transition: all 0.2s ease-out; }

/* --- PAGE TRANSITION --- */
.page-transition { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--accent); z-index: 9998; transform: translateY(0); transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1); pointer-events: none; }
.page-transition.loaded { transform: translateY(-100%); }

/* --- NAVIGATION & MINIMALISTISCHES LOGO --- */
nav { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    height: 100px; 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(15px); 
    z-index: 1000; 
    border-bottom: 1px solid var(--border); 
    display: flex; 
    align-items: center; 
    transition: var(--transition); 
}

[data-theme="dark"] nav {
    background: rgba(2, 6, 23, 0.85);
}
.nav-container { width: 100%; display: flex; justify-content: space-between; align-items: center; max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

.logo-area { display: flex; align-items: center; }

.nav-logo-round {
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    overflow: hidden; 
    border: 3px solid var(--accent); 
    background: #000000;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.2);
}
.nav-logo-round img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain;
}
.logo-area:hover .nav-logo-round { 
    transform: scale(1.08); 
    box-shadow: 0 6px 25px rgba(var(--accent-rgb), 0.35);
    border-color: var(--accent);
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; transition: var(--transition); }
.nav-links a:hover { color: var(--accent); }

/* THEME TOGGLE SWITCH */
.theme-toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--border);
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.theme-toggle-switch::before {
    content: '☀️';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    z-index: 1;
    opacity: 0.7;
}

.theme-toggle-switch::after {
    content: '🌙';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    z-index: 1;
    opacity: 0.7;
}

.toggle-slider {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

[data-theme="dark"] .toggle-slider {
    transform: translateX(30px);
}

.theme-toggle-switch:hover {
    background: var(--border);
    box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.3);
}

/* --- HERO SECTION MIT GROSSEM LOGO BACKGROUND --- */
.hero-section { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    position: relative; 
    overflow: hidden;
}

.hero-section::before {
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh; 
    background-image: url('../img/logo.png'); 
    background-repeat: no-repeat;
    background-position: center; 
    background-size: cover;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
}

[data-theme="dark"] .hero-section::before { 
    opacity: 0.18;
    filter: blur(0px);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(248,250,252,0.6) 100%);
    z-index: 0;
    pointer-events: none;
}

[data-theme="dark"] .hero-section::after {
    background: linear-gradient(135deg, rgba(2,6,23,0.3) 0%, rgba(15,23,42,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.typing-header { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 2rem; min-height: 2.2em; display: flex; flex-direction: column; justify-content: center; }
.accent-text { color: var(--accent); }
.hero-desc { max-width: 700px; margin: 0 auto 3rem; font-size: 1.1rem; color: var(--text-muted); }

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* --- BUTTONS --- */
.btn { padding: 1rem 2.2rem; border-radius: 50px; font-weight: 700; text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.8rem; border: none; cursor: pointer; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
    background: var(--accent);
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.4);
}
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* --- SECTION TITLES --- */
.section-title { font-size: 2.8rem; font-weight: 800; text-align: center; margin-bottom: 5rem; position: relative; }
.section-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent); border-radius: 2px; }

/* --- KERNLEISTUNGEN FLIP CARDS --- */
.flip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.flip-card { height: 380px; perspective: 1000px; cursor: pointer; }
.flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); transform-style: preserve-3d; }
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 20px; display: flex; flex-direction: column; justify-content: center; padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow); }
.flip-card-front { background-color: var(--card); color: var(--text); }
.flip-card-back { background-color: var(--accent); color: white; transform: rotateY(180deg); border-color: var(--accent); }
.flip-card-front i { font-size: 3.5rem; color: var(--accent); margin-bottom: 1.5rem; }

/* --- TIMELINE MIT SICHTBAREN ZAHLEN --- */
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 2rem 0; }
.timeline::after { content: ''; position: absolute; width: 4px; background-color: var(--border); top: 0; bottom: 0; left: 50%; margin-left: -2px; }
.timeline-item { padding: 15px 40px; position: relative; width: 50%; }
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

.timeline-icon { 
    position: absolute; 
    width: 50px; 
    height: 50px; 
    background-color: var(--accent); 
    color: white; 
    border-radius: 50%; 
    top: 20px; 
    z-index: 10;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 800; 
    font-size: 1.3rem;
    border: 5px solid var(--bg-soft); 
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

.timeline-item.left .timeline-icon { right: -25px; }
.timeline-item.right .timeline-icon { left: -25px; }

.timeline-content { 
    padding: 2rem; 
    background: var(--card); 
    border-radius: 15px; 
    border: 1px solid var(--border); 
    box-shadow: var(--shadow); 
    transition: var(--transition); 
    position: relative; 
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.timeline-content h3 { margin-bottom: 0.8rem; line-height: 1.3; word-wrap: break-word; }
.timeline-content p { line-height: 1.6; word-wrap: break-word; }
.timeline-content:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }

.timeline-item:nth-child(1) .timeline-content { background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1) 0%, var(--card) 100%); border-left: 4px solid var(--accent); }
.timeline-item:nth-child(2) .timeline-content { background: linear-gradient(135deg, var(--card) 0%, rgba(var(--accent-rgb), 0.1) 100%); border-right: 4px solid var(--accent); }
.timeline-item:nth-child(3) .timeline-content { background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1) 0%, var(--card) 100%); border-left: 4px solid var(--accent); }
.timeline-item:nth-child(4) .timeline-content { background: linear-gradient(135deg, var(--card) 0%, rgba(var(--accent-rgb), 0.1) 100%); border-right: 4px solid var(--accent); }

/* --- KOMPETENZEN --- */
.competencies-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.skill-item-detailed { background: var(--card); padding: 2rem; border-radius: 15px; border: 1px solid var(--border); margin-bottom: 1.5rem; box-shadow: var(--shadow); }
.skill-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.skill-percentage { font-weight: 800; color: var(--accent); }
.skill-bar-outer { background: var(--border); height: 10px; border-radius: 10px; overflow: hidden; }
.skill-bar-inner { height: 100%; width: 0; background: var(--accent); transition: 1.5s ease-out; }
.placeholder-img-card { width: 100%; aspect-ratio: 4/3; background: var(--card); border: 2px dashed var(--border); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--accent); }

/* --- NEW PARTNER GRID SECTION --- */
.partner-section-bg {
    position: relative;
    overflow: hidden;
}

.partner-section-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* SKALIERBARKEIT: Passt sich automatisch an */
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.partner-card-wrapper {
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-card-wrapper:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.15);
}

.partner-card-header {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.02) 100%);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.partner-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logo-mini {
    width: 45px;
    height: 45px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.partner-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partner-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.partner-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.partner-meta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.partner-meta i {
    width: 25px;
    text-align: center;
    color: var(--accent);
}

.partner-link-btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.partner-link-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
}


/* --- ÜBER UNS (LEGACY - DO NOT REMOVE OLD CLASSES IF REFERENCED ELSEWHERE, BUT NEW GRID IS USED) --- */
.about-content { display: flex; align-items: stretch; justify-content: space-between; gap: 2rem; }
.card { padding: 2rem; background: var(--card); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); flex: 1; }
.skills-image { flex: 1.2; background: var(--bg-soft); border-radius: 20px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); padding: 2rem; text-align: center; }
.founder-visual i { font-size: 5rem; color: var(--accent); margin-bottom: 1.5rem; }

/* --- KONTAKT GRID --- */
.contact-grid-main { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; margin-top: 3rem; }
.contact-form-side { background: var(--card); padding: 3.5rem; border-radius: 25px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; display: flex; flex-direction: column; }
.form-group label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 0.6rem; }
input, select, textarea { background: var(--bg); border: 1px solid var(--border); padding: 0.8rem 1rem; border-radius: 10px; color: var(--text); font-family: inherit; font-size: 0.95rem; transition: var(--transition); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1); }
.submit-btn { width: 100%; justify-content: center; margin-top: 1rem; padding: 1.1rem; }
.map-box { height: 100%; min-height: 450px; border-radius: 25px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }

/* --- SIDEBAR PALETTE --- */
.palette-sidebar { 
    position: fixed; 
    right: 1.2rem; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 1100; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
    background: var(--card); 
    padding: 12px; 
    border-radius: 40px; 
    border: 1px solid var(--border); 
    box-shadow: var(--shadow); 
}
.palette-option { width: 25px; height: 25px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: var(--transition); }
.palette-option:hover { transform: scale(1.2); }
.palette-option.active { border-color: var(--text); box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.5); }
.palette-option[data-palette="gold"] { background: #c5a059; }
.palette-option[data-palette="blue"] { background: #3b82f6; }
.palette-option[data-palette="emerald"] { background: #059669; }
.palette-option[data-palette="purple"] { background: #7c3aed; }

/* --- FOOTER --- */
.glass-footer { background: rgba(var(--bg), 0.1); backdrop-filter: blur(20px) saturate(180%); border-top: 1px solid rgba(var(--border), 0.5); padding: 60px 0 30px; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 30px; }
.footer-logo { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { text-decoration: none; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); transform: translateX(5px); display: inline-block; }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(var(--border), 0.5); font-size: 0.85rem; color: var(--text-muted); }

#imprssum { margin: 0; padding: 0; font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
#imprssum a { color: var(--accent); text-decoration: none; font-weight: 600; transition: var(--transition); position: relative; padding-bottom: 2px; }
#imprssum a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
#imprssum a:hover::after { width: 100%; }

/* ANIMATION */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* BURGER MENU */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { width: 25px; height: 3px; background: var(--text); border-radius: 3px; transition: var(--transition); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .competencies-layout, .about-content, .contact-grid-main, .footer-content { grid-template-columns: 1fr; }
    .about-content { flex-direction: column; }
    .skills-image { order: -1; min-height: 250px; }
    .container { padding: 0 1.5rem; }
    .section-title { font-size: 2.2rem; word-wrap: break-word; }
}

@media (max-width: 768px) {
    /* CURSOR & SCHWEBENDE PALETTE KOMPLETT ENTFERNEN */
    .cursor-dot, .cursor-outline, .palette-sidebar { display: none !important; }
    html { cursor: auto !important; }

    /* BURGER MENU STYLING */
    .burger { display: flex; }
    .nav-links { 
        position: fixed; 
        top: 100px; 
        left: -100%; 
        width: 100%; 
        height: calc(100vh - 100px); 
        background: var(--card); 
        flex-direction: column; 
        padding: 2rem 0; 
        transition: 0.4s ease; 
        border-top: 1px solid var(--border); 
        overflow-y: auto; 
    }
    .nav-links.active { left: 0; }
    
    /* PALETTE IM MENÜ ANZEIGEN */
    .nav-links .palette-sidebar { 
        display: flex !important; 
        position: relative; 
        flex-direction: row; 
        justify-content: center; 
        right: auto; 
        top: auto; 
        transform: none; 
        background: transparent; 
        border: none; 
        box-shadow: none; 
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
        width: 80%;
    }

    /* RESTLICHE MOBILE ANPASSUNGEN */
    .hero-btns { flex-direction: column; align-items: center; width: 100%; gap: 1rem; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .timeline::after { left: 30px; }
    .timeline-item { width: calc(100% - 1rem); left: 0 !important; text-align: left; padding-left: 75px; padding-right: 1rem; margin-bottom: 2rem; }
    .timeline-item.left .timeline-icon, .timeline-item.right .timeline-icon { left: 5px; right: auto; }
    .timeline-content { padding: 1.5rem; width: 100%; }
    .timeline-item:nth-child(1) .timeline-content,
    .timeline-item:nth-child(2) .timeline-content,
    .timeline-item:nth-child(3) .timeline-content,
    .timeline-item:nth-child(4) .timeline-content { border-left: 4px solid var(--accent); border-right: none; }
    .form-grid { grid-template-columns: 1fr; }
    .container { padding: 0 1rem; max-width: 100%; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; margin-bottom: 3rem; word-wrap: break-word; padding: 0 1rem; }
    .nav-container { padding: 0 1rem; }
    .nav-logo-round { width: 60px; height: 60px; }
    .card { padding: 1.5rem; }
    .typing-header { font-size: clamp(1.8rem, 8vw, 3rem); padding: 0 1rem; word-wrap: break-word; }
    .hero-desc { font-size: 1rem; padding: 0 1rem; word-wrap: break-word; }
}

#ztp { color: var(--accent); text-align: right; }
#ztpp { text-align: right; }

/* --- NEUES MODERNE ABOUT GRID (ZUSATZ AUFTRAG - FIXED) --- */
.about-grid-modern {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.15);
}

.about-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--text);
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Grid Platzierung */
.philosophy-card {
    grid-column: span 7;
    justify-content: space-between;
}

.ceo-card { /* FIXED CLASS NAME */
    grid-column: span 5;
    grid-row: span 2;
    padding: 0; /* Spezielles Padding für Bilder */
    background: linear-gradient(135deg, var(--card) 0%, rgba(var(--accent-rgb), 0.05) 100%);
}

.location-card {
    grid-column: span 7;
}

/* Philosophie Liste */
.purpose-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.purpose-list li {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.purpose-list i {
    color: var(--accent);
    margin-right: 5px;
}

/* Founder / CEO Card Styling (Dual) */
.ceo-content-wrapper {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1rem 2rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.ceo-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.ceo-image-frame {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    padding: 4px;
    margin-bottom: 1rem;
    background: var(--bg);
}

.ceo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ceo-single h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text);
}

.ceo-single span {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ceo-divider {
    width: 80%;
    height: 1px;
    background: var(--border);
}

.ceo-text-bottom {
    background: rgba(var(--accent-rgb), 0.1);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(var(--accent-rgb), 0.2);
}

.ceo-text-bottom p {
    color: var(--text);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Location Extra */
.location-mini-map {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-soft);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    border: 1px solid var(--border);
}

/* Responsive Fixes for New Grid */
@media (max-width: 1024px) {
    .about-grid-modern { grid-template-columns: 1fr; gap: 1.5rem; }
    .philosophy-card, .ceo-card, .location-card { grid-column: span 1; grid-row: auto; }
    
    .ceo-content-wrapper { flex-direction: row; justify-content: space-around; align-items: flex-start; }
    .ceo-divider { width: 1px; height: 100px; margin: 0 1rem; }
}

@media (max-width: 768px) {
    .ceo-content-wrapper { flex-direction: column; }
    .ceo-divider { width: 80%; height: 1px; margin: 1.5rem 0; }
}