/* ================================================
   Pelora — About Page Styles
   ================================================ */

main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 4rem;
}

.about-hero {
    min-height: clamp(440px, 72vh, 620px);
    padding: 3.5rem 0 2.5rem;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(145deg, rgba(10, 8, 36, 0.7) 0%, rgba(24, 16, 64, 0.62) 52%, rgba(12, 10, 36, 0.74) 100%),
        url("../assets/img/pelora-hero-3840x2160.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-orbs {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(124, 76, 255, 0.26), transparent 32%),
        radial-gradient(circle at 82% 24%, rgba(255, 107, 107, 0.18), transparent 30%),
        radial-gradient(circle at 66% 74%, rgba(154, 230, 180, 0.14), transparent 34%);
}

.about-hero-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1rem;
}

.about-hero-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.breadcrumbs {
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(247, 247, 251, 0.72);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: rgba(247, 247, 251, 0.9);
}

.about-intro,
.about-steps,
.about-trust,
.about-final {
    border-radius: 20px;
    padding: 1.6rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.25rem;
}

.highlight-text {
    color: #e9ddff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.about-quote {
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem;
}

.about-quote-text {
    color: #efe9ff;
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.45;
}

.about-quote-author {
    color: rgba(247, 247, 251, 0.76);
    font-size: 0.92rem;
}

.about-section-title {
    margin-bottom: 1.1rem;
}

.about-reasons,
.about-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-reason-card,
.about-tile {
    border-radius: 16px;
    padding: 1.15rem;
}

.about-reason-icon,
.about-tile-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 76, 255, 0.16);
    border: 1px solid rgba(124, 76, 255, 0.35);
}

.about-reason-icon svg,
.about-tile-icon svg {
    width: 22px;
    height: 22px;
    fill: #f7f7fb;
}

.about-reason-title,
.about-tile-title {
    margin-bottom: 0.45rem;
    font-size: 1.1rem;
}

.about-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-step-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c4cff, #9e62ff);
    color: #fff;
    font-weight: 700;
}

.about-categories-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.about-tile {
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 76, 255, 0.5);
}

.about-trust {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1rem;
}

.about-trust-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.about-final {
    text-align: center;
}

.about-final-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .about-intro,
    .about-trust {
        grid-template-columns: 1fr;
    }

    .about-reasons,
    .about-categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    main {
        gap: 2rem;
    }

    .about-hero {
        min-height: 420px;
        padding: 2rem 0 1.8rem;
    }

    .about-intro,
    .about-steps,
    .about-trust,
    .about-final {
        padding: 1.1rem;
        border-radius: 16px;
    }

    .about-hero-cta,
    .about-final-actions {
        width: 100%;
    }

    .about-hero-cta .btn,
    .about-final-actions .btn {
        width: 100%;
    }
}

.about-hero-bg {
    background-image:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(245, 237, 255, 0.64) 52%, rgba(255, 255, 255, 0.8) 100%),
        url("../assets/img/pelora-hero-3840x2160.jpg");
}

.breadcrumbs {
    color: rgba(75, 58, 110, 0.74);
}

.breadcrumbs a,
.highlight-text,
.about-quote-text {
    color: #2b2145;
}

.about-quote-author {
    color: #71658f;
}

.about-quote {
    border-color: rgba(143, 113, 228, 0.14);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 30px rgba(111, 92, 170, 0.08);
}

.about-reason-icon,
.about-tile-icon {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.22);
}

.about-reason-icon svg,
.about-tile-icon svg {
    fill: #8b5cf6;
}

.about-step {
    border-bottom-color: rgba(143, 113, 228, 0.1);
}

.about-tile:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.68);
}
