/* BEVYPLUS Website - About Page Styles
   Version: 3.2.0
   Date: 2026-07-26 */

.atm-illustration {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
}

.about-hero {
    background: var(--brand-cloud-gray);
    padding: 5rem 0;
}

.timeline-visual {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.timeline-item {
    text-align: center;
    padding: 1.5rem;
}

.timeline-item .year {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.timeline-item-1996 .year {
    color: var(--brand-green);
}

.timeline-item-2023 .year {
    color: var(--brand-blue);
}

.timeline-item .event {
    font-size: 1.1rem;
    color: var(--brand-midnight-charcoal);
    font-weight: 600;
}

.timeline-item.highlight {
    background: var(--brand-warm-sand);
    border-radius: 12px;
}

.timeline-item.highlight .year {
    color: var(--brand-orange);
}

.timeline-connector {
    height: 40px;
    width: 3px;
    background: var(--brand-navy);
    margin: 0 auto;
}

.journey-section {
    background: white;
}

.atm-service-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    width: 100%;
}

.mobile-banking-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    width: 100%;
}

.phone-illustration {
    display: block;
    width: clamp(230px, 58vw, 400px);
    height: auto;
    margin: 0 auto;
    mix-blend-mode: multiply;
}

@media (max-width: 991px) {
    .atm-service-visual,
    .mobile-banking-visual {
        display: none;
    }
}

.section-badge {
    display: inline-block;
    background: var(--brand-cloud-gray);
    color: var(--brand-midnight-charcoal);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.journey-subtext-muted {
    color: var(--brand-silver-gray);
}

.value-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--brand-cloud-gray);
    padding: 0.75rem 1.5rem 0.75rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--brand-midnight-charcoal);
}

.value-pill-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-pill-icon i {
    font-size: 1.1rem;
    color: var(--brand-white);
}

.partnership-section {

    background: var(--brand-cloud-gray);
}

.partnership-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.partnership-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.partnership-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.partnership-section .row.g-4.mb-5 > div:nth-child(1) .partnership-icon { background: var(--brand-green); }
.partnership-section .row.g-4.mb-5 > div:nth-child(2) .partnership-icon { background: var(--brand-blue); }
.partnership-section .row.g-4.mb-5 > div:nth-child(3) .partnership-icon { background: var(--brand-orange); }

.partnership-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.partnership-card p {
    color: var(--brand-graphite);
    margin: 0;
}

.combined-value-prop {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.combined-value-prop h3 {
    font-size: 2rem;
    color: var(--brand-midnight-charcoal);
}

.value-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-point i {
    font-size: 2rem;
    color: var(--brand-green);
    min-width: 32px;
}

.value-point h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--brand-midnight-charcoal);
}

.value-point p {
    color: var(--brand-graphite);
    margin: 0;
    font-size: 0.95rem;
}

.core-value-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.core-value-card:hover {
    border-color: var(--brand-navy);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
}

.values-section .row.g-4 > div:nth-child(1) .value-icon-large { background: var(--brand-green); }
.values-section .row.g-4 > div:nth-child(2) .value-icon-large { background: var(--brand-blue); }
.values-section .row.g-4 > div:nth-child(3) .value-icon-large { background: var(--brand-orange); }
.values-section .row.g-4 > div:nth-child(4) .value-icon-large {
    background: var(--brand-cloud-gray);
    color: var(--brand-navy);
}

.core-value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.core-value-card p {
    color: var(--brand-graphite);
    margin: 0;
}

@media (max-width: 991px) {
    .about-hero {
        padding: 3rem 0;
    }

    .timeline-visual {
        padding: 2rem;
    }

    .timeline-item .year {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .combined-value-prop {
        padding: 2rem;
    }

    .value-point {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .value-point i {
        font-size: 1.5rem;
        min-width: 24px;
    }

    .value-point > div > h5 {
        text-align: center;
    }
}
