/**
 * About Section - Warum SuchyConsulting
 * Date: 2025-11-08
 * Kurz & knackig mit Schlagwörtern und Fakten
 */

/* ================================================================
   ABOUT SECTION - Glassmorphism Background
   ================================================================ */

.about-section {
    position: relative;
    background: rgba(255, 255, 255, 0.5) !important;
}

/* Glassmorphism-Overlay - WEIẞ statt lila */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-section > .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.about-section .section-header h2 {
    color: #1f2937 !important;
    font-size: 2.5rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
}

.about-section .section-subtitle {
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

/* ================================================================
   HIGHLIGHTS GRID - 4 Cards
   ================================================================ */

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

/* Highlight Cards - Glassmorphism */
.about-highlight-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.75rem;

    text-align: center;

    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-highlight-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85) !important;
    box-shadow:
        0 20px 60px rgba(128, 0, 255, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(128, 0, 255, 0.3);
}

/* Icon */
.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;

    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(128, 0, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1rem auto;

    border: 2px solid rgba(128, 0, 255, 0.2);
    box-shadow: 0 4px 12px rgba(128, 0, 255, 0.15);

    transition: all 0.3s ease;
}

.about-highlight-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(128, 0, 255, 0.15);
    box-shadow: 0 8px 20px rgba(128, 0, 255, 0.25);
}

/* Title */
.about-highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

/* Description */
.about-highlight-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* ================================================================
   KEY FACTS - Checkmarks
   ================================================================ */

.about-facts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 700px;
    margin: 2rem auto;

    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;

    box-shadow: 0 4px 16px rgba(31, 38, 135, 0.1);
}

.about-fact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.about-fact strong {
    color: #8000ff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ================================================================
   CTA BUTTONS
   ================================================================ */

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-cta-buttons .btn-gradient,
.about-cta-buttons .btn-glass {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-cta-buttons .btn-gradient {
    background: linear-gradient(135deg, #8000ff 0%, #6366f1 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 16px rgba(128, 0, 255, 0.3);
}

.about-cta-buttons .btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(128, 0, 255, 0.4);
}

.about-cta-buttons .btn-glass {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(128, 0, 255, 0.3);
    color: #8000ff;
}

.about-cta-buttons .btn-glass:hover {
    background: rgba(128, 0, 255, 0.1);
    border-color: rgba(128, 0, 255, 0.5);
    transform: translateY(-2px);
}

/* ================================================================
   RESPONSIVE - Mobile
   ================================================================ */

@media (max-width: 768px) {
    .about-section .section-header h2 {
        font-size: 2rem !important;
    }

    .about-section .section-subtitle {
        font-size: 1rem !important;
    }

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

    .about-highlight-card {
        padding: 1.25rem;
    }

    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .about-highlight-card h3 {
        font-size: 1.1rem;
    }

    .about-highlight-card p {
        font-size: 0.85rem;
    }

    .about-facts {
        padding: 1rem 1.25rem;
    }

    .about-fact {
        font-size: 0.95rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .btn-gradient,
    .about-cta-buttons .btn-glass {
        width: 100%;
    }
}

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