/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* Hero Section Kompakt */
.about-hero {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: var(--color-bg-dark);
}

.about-title {
    font-size: var(--heading-1);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: var(--text-lg);
    color: #cbd5e1;
    font-weight: 500;
}

/* Background Glows */
.glow-sphere {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.glow-sphere.bg-blue {
    top: -150px;
    left: -150px;
    background: var(--color-tech-blue);
}

.glow-sphere.bg-orange {
    bottom: -150px;
    right: -150px;
    background: var(--color-energy-orange);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* Grid & Layout Helfer */
.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-layout {
    display: grid;
    gap: 2rem;
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: transform var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-energy-orange);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* =========================================
   CEO SECTION STYLES
   ========================================= */
.ceo-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.ceo-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-tech-blue), var(--color-energy-orange));
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ceo-photo {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--color-bg-dark);
    display: block;
}

.ceo-badge {
    position: absolute;
    bottom: 15px;
    right: -20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 10;
}

.badge-icon {
    background: var(--gradient-blue);
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

/* Premium Zertifikate */
.ceo-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 0 1.75rem 0;
}

.ceo-cert-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 32px rgba(0,0,0,0.28);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ceo-cert-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.14), rgba(30, 58, 138, 0.12));
    opacity: 1;
    pointer-events: none;
}

.ceo-cert-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: rgba(255,255,255,0.18);
}

.ceo-cert-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 81, 0, 0.35);
    box-shadow: 0 18px 38px rgba(0,0,0,0.36);
}

.ceo-cert-icon {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-energy-orange), var(--color-energy-red));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(230, 81, 0, 0.28);
}

.ceo-cert-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.2px;
}

/* =========================================
   RESPONSIVE FIXES
   ========================================= */
@media (max-width: 992px) {
    .layout-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-hero {
        min-height: 50vh;
    }

    .ceo-image-wrapper {
        margin: 0 auto;
    }

    .ceo-certifications {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ceo-photo {
        width: 260px;
        height: 260px;
    }

    .ceo-badge {
        bottom: -10px;
        right: 50%;
        transform: translateX(50%) scale(0.9);
    }

    .about-title {
        font-size: 2.5rem;
    }

    .ceo-certifications {
        gap: 0.8rem;
    }

    .ceo-cert-card {
        width: 100%;
        justify-content: flex-start;
        border-radius: 18px;
        padding: 0.95rem 1rem;
        text-align: left;
    }
}