﻿.about-page {
    background: #f5f7fb;
    padding: 2.5rem 1rem 3.5rem;
}

.about-inner {
    max-width: 1320px;
    margin: 0 auto;
}

/* HERO */

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.about-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.4rem;
}

.about-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 0 0 0.7rem;
    color: #111827;
}

.about-lead {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 550px;
    margin-bottom: 1.3rem;
}

/* STATS */

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.about-stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #059669;
}

.about-stat-label {
    font-size: 0.8rem;
    color: #6b7280;
}

/* HERO PHOTO */

.about-hero-photo {
    justify-self: end;
    text-align: center;
    padding-right: 1.4rem;
}

.about-photo-frame {
    width: 220px;
    height: 260px;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 4px;
    box-shadow: 0 18px 45px rgba(34, 197, 94, 0.38);
    margin: 0 auto 0.6rem;
}

    .about-photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 22px;
        display: block;
        background: #0f172a;
    }

.about-photo-caption {
    font-size: 0.82rem;
    color: #4b5563;
}

/* ROW SECTIONS */

.about-rows {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2.6rem;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.8rem;
    align-items: start;
    background: #ffffff;
    border-radius: 18px;
    padding: 1.3rem 1.4rem 1.25rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    font-size: 0.9rem;
    color: #4b5563;
}

.about-row-image {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

    .about-row-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        background: #e5e7eb;
    }

.about-row-text {
    min-width: 0;
}

.about-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.6rem;
    color: #111827;
}

/* Lists & steps */

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-list li {
        margin-bottom: 0.5rem;
    }

    .about-list strong {
        color: #111827;
    }

.about-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-steps li {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 0.5rem;
        row-gap: 0.15rem;
        margin-bottom: 0.55rem;
    }

.step-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #111827;
}

.step-text {
    font-size: 0.86rem;
    color: #4b5563;
}

.about-note {
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 0.6rem;
}

/* CTA */

.about-cta {
    text-align: center;
    background: #111827;
    color: #e5e7eb;
    border-radius: 18px;
    padding: 1.5rem 1.4rem 1.6rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

    .about-cta h2 {
        font-size: 1.3rem;
        margin: 0 0 0.4rem;
    }

    .about-cta p {
        font-size: 0.9rem;
        max-width: 520px;
        margin: 0 auto 0.9rem;
        color: #d1d5db;
    }

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

/* Buttons */

.about-btn-primary,
.about-btn-secondary {
    border-radius: 999px;
    padding: 0.5rem 1.3rem;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.about-btn-primary {
    background: #10b981;
    color: #f9fafb;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
}

    .about-btn-primary:hover {
        background: #059669;
    }

.about-btn-secondary {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

    .about-btn-secondary:hover {
        background: rgba(15, 23, 42, 0.7);
    }

/* RESPONSIVE */

@media (max-width: 900px) {
    .about-hero {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .about-hero-photo {
        display: none;
    }

    .about-lead {
        max-width: none;
    }

    .about-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-row-image {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .about-page {
        padding-inline: 1rem;
        padding-top: 2rem;
    }

    .about-cta {
        padding-inline: 1rem;
    }
}
