/* BYT3LAB À Propos Component Styles */

.component-apropos-body {
    position: relative;
    overflow-x: hidden;
}

.apropos-hero {
    position: relative;
    padding: 100px 0 80px;
    background: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
                #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.apropos-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 132, 199, 0.08);
    color: #0284c7;
    border: 1px solid rgba(2, 132, 199, 0.2);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 9999px;
    letter-spacing: 1px;
}

.apropos-hero__title {
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.apropos-hero__title-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #38bdf8 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apropos-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.apropos-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -6px rgba(2, 132, 199, 0.1);
    border-color: rgba(2, 132, 199, 0.3);
}

.apropos-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #0284c7, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.apropos-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.apropos-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0284c7, #38bdf8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.apropos-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -8px rgba(2, 132, 199, 0.12);
    border-color: rgba(56, 189, 248, 0.4);
}

.apropos-pillar-card:hover::before {
    opacity: 1;
}

.apropos-pillar-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.apropos-branch-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 32px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 6px 24px -4px rgba(0, 0, 0, 0.04);
}

.apropos-branch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px -10px rgba(0, 0, 0, 0.08);
}

.team-anchor-banner {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.04) 0%, rgba(56, 189, 248, 0.08) 100%);
    border: 1px dashed rgba(2, 132, 199, 0.3);
    border-radius: 14px;
    padding: 16px 24px;
}

/* Ngrafix Communication Agency Card Styles */
.ngrafix-card {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}

.ngrafix-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -8px rgba(147, 51, 234, 0.12);
    border-color: rgba(147, 51, 234, 0.4) !important;
}

.ngrafix-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

