/* О проекте — лендинг с hero, статистикой и CTA-кнопками. */

.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px 60px;
    color: #1f2937;
}

/* === Page title (above hero) === */

.about-page__title {
    margin: 24px 0 16px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0d1b3d;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* === Hero === */

.about-hero {
    position: relative;
    margin: 0 0 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
}

.about-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 36px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0) 75%
    );
    color: #fff;
}

.about-hero__brand {
    margin: 0 0 8px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.about-hero__tagline {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    opacity: 0.95;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* === Intro text === */

.about-intro {
    max-width: 760px;
    margin: 0 auto 48px;
    font-size: 1.075rem;
    line-height: 1.65;
}

.about-intro p {
    margin: 0 0 16px;
}

.about-intro strong {
    color: #0d1b3d;
}

/* === Stats: 4 clickable counters === */

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 0 0 56px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    color: #1f2937;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-stat:hover {
    transform: translateY(-4px);
    border-color: #0d1b3d;
    box-shadow: 0 8px 20px rgba(13, 27, 61, 0.12);
    text-decoration: none;
    color: #1f2937;
}

.about-stat__count {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1b3d;
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.about-stat__label {
    font-size: 0.95rem;
    color: #6b7280;
    text-transform: lowercase;
}

/* === CTA buttons === */

.about-cta {
    margin: 0 0 56px;
}

.about-cta__heading {
    margin: 0 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1b3d;
    text-align: center;
}

.about-cta__buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}

.about-cta__btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 24px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #1f2937;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-cta__btn:hover {
    transform: translateY(-3px);
    border-color: #0d1b3d;
    box-shadow: 0 6px 18px rgba(13, 27, 61, 0.15);
    text-decoration: none;
    color: #1f2937;
}

.about-cta__btn--primary {
    background: #0d1b3d;
    border-color: #0d1b3d;
    color: #fff;
}

.about-cta__btn--primary:hover {
    background: #142654;
    border-color: #142654;
    color: #fff;
    box-shadow: 0 6px 18px rgba(13, 27, 61, 0.35);
}

.about-cta__btn-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.about-cta__btn-hint {
    font-size: 0.9rem;
    opacity: 0.75;
}

/* === Contact === */

.about-contact {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 28px;
    background: #f5f7fa;
    border-radius: 12px;
}

.about-contact h2 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d1b3d;
}

.about-contact p {
    margin: 0 0 12px;
    line-height: 1.6;
}

.about-contact p:last-child {
    margin-bottom: 0;
}

.about-contact a {
    color: #003580;
    text-decoration: underline;
}

.about-contact__rights {
    font-size: 0.9rem;
    color: #6b7280;
}

/* === Mobile === */

@media (max-width: 600px) {
    .about-hero {
        margin: 12px 0 28px;
        border-radius: 12px;
    }

    .about-hero__overlay {
        padding: 20px 22px;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-stat {
        padding: 20px 12px;
    }

    .about-stat__count {
        font-size: 2rem;
    }

    .about-contact {
        padding: 20px;
    }
}
