.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.why-item.reveal {
    transition-delay: calc(var(--reveal-index, 0) * 0.08s);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
    }
}

.page-banner {
    background: linear-gradient(135deg, #ab00e8, #3e867b);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}
.page-banner h1 {
    font-size: 40px;
    margin-bottom: 10px;
}
.page-banner p {
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}
.about-hero__image,
.about-hero__text {
    flex: 1;
}
.about-hero__image img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.about-hero__text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 18px;
}

.about-block {
    padding: 50px 0;
    border-top: 1px solid #eee;
}
.about-block--alt {
    background: #faf6fc;
    border-radius: 12px;
    padding: 50px 40px;
}
.about-block h2 {
    text-align: center;
    font-size: 30px;
    color: #333;
    margin-bottom: 36px;
    position: relative;
}
.about-block h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #ab00e8;
    margin: 12px auto 0;
    border-radius: 2px;
}

.about-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.about-list li {
    position: relative;
    padding: 16px 22px 16px 54px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ab00e8;
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
}
.about-list li::before {
    content: '\2713';
    position: absolute;
    left: 20px;
    top: 16px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ab00e8;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-list li strong {
    color: #222;
}
.about-block--alt .about-list li {
    border-left-color: #3e867b;
}
.about-block--alt .about-list li::before {
    background: #3e867b;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-item {
    background: #fff;
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}
.why-item h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}
.why-item h3::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ab00e8;
    margin-right: 8px;
}
.why-item p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}
.why-item:nth-child(3n+2) h3::before { background: #3e867b; }
.why-item:nth-child(3n) h3::before { background: #d6862b; }

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 50px 20px;
    }
    .page-banner h1 {
        font-size: 30px;
    }
    .about-hero {
        flex-direction: column;
        gap: 25px;
        padding: 40px 0;
    }
    .about-hero__image img {
        max-height: 260px;
    }
    .about-hero__text p {
        font-size: 14.5px;
    }
    .about-block {
        padding: 40px 0;
    }
    .about-block--alt {
        padding: 40px 20px;
    }
    .about-block h2 {
        font-size: 24px;
        margin-bottom: 28px;
    }
    .about-list li {
        padding: 14px 18px 14px 48px;
        font-size: 14.5px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
