.about-page {
    background-color: #fdfdfd;
}

.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }

.badge-premium {
    display: inline-block;
    padding: 6px 18px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.hero-visual-stack {
    position: relative;
    padding: 40px;
}
.visual-main {
    transform: rotate(5deg);
    transition: transform 0.5s ease;
}
.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    z-index: 10;
    transform: translateY(-20px);
}
.hero-visual-stack:hover .visual-main {
    transform: rotate(0deg);
}

.value-card {
    transition: all 0.4s ease;
}
.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary) !important;
}
.value-icon {
    font-size: 40px;
    color: var(--accent);
}

.timeline-item {
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: #e2e8f0;
}
.timeline-item:last-child::before {
    display: none;
}

@media (max-width: 991px) {
    .display-2 { font-size: 48px; }
    .hero-visual-stack { padding: 0; margin-top: 40px; }
    .visual-overlay { width: 200px; }
}