/* resources/css/about.css */

.about-hero-gradient {
    background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.15), transparent 50%),
                radial-gradient(circle at bottom left, rgba(239, 68, 68, 0.05), transparent 50%);
}

.journey-timeline {
    position: relative;
    padding-left: 2rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.different-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.different-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-10px);
}

.audit-box-premium {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.stat-card-about {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-cta-banner {
    background: linear-gradient(90deg, #991b1b 0%, #ef4444 100%);
}
