body {
   background: #faf9f900 !important;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* HERO */
.about-hero {
    width: 90%;
    max-width: 1200px;
    margin: 180px auto 100px auto;
    text-align: center;
}

.about-hero p {
    font-size: 24px;
    opacity: 0.8;
    margin-top: 20px;
    line-height: 1.6;
}

.underline-animate {
    font-size: 64px;
    line-height: 1.2;
    display: inline;
    background-image: linear-gradient(#F28C28, #F28C28);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 3px;
    animation: underlineMulti 1.2s ease-out forwards;
}

@keyframes underlineMulti {
    from { background-size: 0% 3px; }
    to { background-size: 100% 3px; }
}

/* STORY */
.about-story {
    width: 90%;
    max-width: 900px;
    margin: 80px auto;
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
}

.about-story p {
    font-size: 20px;
    line-height: 1.6;
    color: #CCCCCC;
}

.about-story h2 {
    margin-bottom: 15px;
    font-size: 32px;
    border-bottom: 2px solid #F28C28;
    padding-bottom: 10px;
}

/* STATISTIKA */
.about-stats {
    width: 90%;
    max-width: 1000px;
    margin: 100px auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-number {
    font-size: 64px;
    font-weight: bold;
    color: #F28C28;
    text-shadow: 0 0 12px #F28C28;
}

.about-stats p {
    opacity: 0.7;
    margin-top: 10px;
}

/* TIMELINE */
.about-process {
    width: 90%;
    max-width: 1000px;
    margin: 100px auto;
}

.about-process h2 {
    margin-bottom: 25px;
    font-size: 32px;
    text-align: center;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.timeline-step {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #F28C28;
    transition: 0.3s ease;
}

.timeline-step:hover {
    transform: translateX(10px);
    border-color: #ff9f4a;
}

.step-number {
    font-size: 40px;
    font-weight: bold;
    color: #F28C28;
}

/* LOGO GRID */
.about-logos {
    width: 90%;
    max-width: 1000px;
    margin: 100px auto;
    text-align: center;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.logo-grid img {
    width: 100%;
    max-width: 160px;
    opacity: 0.8;
    transition: 0.3s;
}

.logo-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-note {
    opacity: 0.6;
    margin-top: 10px;
}

/* CTA */
.about-cta {
    width: 90%;
    max-width: 900px;
    margin: 120px auto;
    text-align: center;
    background: #111;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #F28C28;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #F28C28;
    color: #000;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ff9f4a;
}

/* REVEAL EFFECT */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 768px){
    .underline-animate {
        font-size: 42px;
    }

    .about-story{
        padding: 25px;
        width: 75%;
    }
    .stat-number {
        font-size: 48px;
    }
    .about-stats {
        flex-direction: column;
        gap: 35px;
    }

    .about-cta {
        padding: 30px;
        width: 75%;
    }
}
