    /* --- ABOUT PAGE HERO --- */
    .about-hero {
        padding-top: 160px;
        padding-bottom: 60px;
        text-align: left;
        position: relative;
        overflow: hidden;
    }
    .about-hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 107, 0, 0.08), transparent 70%);
        pointer-events: none;
    }

    /* --- VIZIUNE / MISIUNE --- */
    .about-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
    .about-block {
        padding: 2.5rem;
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 20px;
        background: rgba(255,255,255,0.02);
        transition: border-color 0.3s;
    }
    .about-block:hover { border-color: rgba(255,107,0,0.3); }
    .about-block-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: rgba(255,107,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-gold);
        margin-bottom: 1.5rem;
    }
    .about-block h3 {
        color: #fff;
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-family: var(--font-display);
    }
    .about-block p {
        color: var(--text-secondary);
        line-height: 1.8;
    }

    /* --- ECHIPA --- */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .team-card {
        text-align: center;
        padding: 2.5rem 2rem;
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 20px;
        background: rgba(255,255,255,0.02);
        transition: border-color 0.3s, transform 0.3s;
    }
    .team-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); }
    .team-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(255,107,0,0.15);
        border: 2px solid rgba(255,107,0,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--accent-gold);
        font-size: 2rem;
        font-weight: 700;
        font-family: var(--font-display);
    }
    .team-name { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
    .team-role { color: var(--accent-gold); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
    .team-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

    /* --- SERVICII OVERVIEW --- */
    .services-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }
    .service-item {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.5rem;
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 14px;
        background: rgba(255,255,255,0.02);
        transition: border-color 0.3s;
    }
    .service-item:hover { border-color: rgba(255,107,0,0.3); }
    .service-item-icon {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(255,107,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-gold);
    }
    .service-item h4 { color: #fff; font-size: 1rem; margin-bottom: 0.4rem; }
    .service-item p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; margin: 0; }

    /* --- DATE LEGALE --- */
    .legal-facts {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }
    .fact-item {
        text-align: center;
        padding: 2rem 1rem;
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 16px;
        background: rgba(255,255,255,0.02);
    }
    .fact-label { color: var(--text-secondary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
    .fact-value { color: var(--accent-gold); font-size: 1.1rem; font-weight: 700; }

    /* --- VALORI --- */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    .value-card {
        padding: 2rem;
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 16px;
        transition: 0.3s;
        background: rgba(5, 10, 20, 0.4);
    }
    .value-card:hover {
        border-color: var(--accent-gold);
        transform: translateY(-5px);
        background: rgba(255,255,255,0.03);
    }
    .value-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 107, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-gold);
        margin-bottom: 1.5rem;
    }

    /* --- TIMELINE --- */
    .timeline {
        position: relative;
        max-width: 800px;
        margin: 4rem auto;
        padding: 2rem 0;
    }
    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
    }
    .timeline-item {
        margin-bottom: 4rem;
        position: relative;
        width: 50%;
        padding: 0 2rem;
    }
    .timeline-item:nth-child(odd) { left: 0; text-align: right; }
    .timeline-item:nth-child(even) { left: 50%; text-align: left; }
    .timeline-dot {
        position: absolute;
        top: 0;
        width: 20px;
        height: 20px;
        background: var(--bg-dark);
        border: 2px solid var(--accent-gold);
        border-radius: 50%;
        z-index: 2;
    }
    .timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
    .timeline-item:nth-child(even) .timeline-dot { left: -10px; }
    .year {
        color: var(--accent-gold);
        font-weight: 800;
        font-size: 1.5rem;
        display: block;
        margin-bottom: 0.5rem;
        font-family: var(--font-display);
    }

    @media (max-width: 768px) {
        .about-split { grid-template-columns: 1fr; }
        .team-grid { grid-template-columns: 1fr; max-width: 400px; }
        .timeline::before { left: 20px; }
        .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; text-align: left; }
        .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; text-align: left; }
        .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 10px; right: auto; }
    }
