.about-page {
    background: linear-gradient(180deg, #f5f7f3 0%, #ffffff 34%, #f5f7f3 100%);
}

.about-hero {
    padding-top: 46px;
}

.about-hero-card {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 242, 235, 0.92) 100%);
    box-shadow: var(--shadow-sm);
}

.about-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 14px;
}

.about-breadcrumbs a:hover {
    color: var(--green-dark);
}

.about-hero-card h1 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.about-hero-text {
    max-width: 860px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 18px;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.about-stat-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
}

.about-stat-card strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
}

.about-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.about-intro-text {
    display: grid;
    gap: 16px;
}

.about-intro-text p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.about-directions {
    background: var(--white);
}

.about-direction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-direction-card {
    position: relative;
    min-height: 310px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf5 100%);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.about-direction-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 124, 70, 0.16) 0%, rgba(41, 124, 70, 0) 72%);
}

.about-direction-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--bg-soft);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
}

.about-direction-card h3 {
    position: relative;
    z-index: 1;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 800;
}

.about-direction-card p {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-approach-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.about-trust-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 20px;
    padding: 28px;
    border: 1px solid rgba(41, 124, 70, 0.18);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(238, 242, 235, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: var(--shadow-sm);
}

.about-trust-note {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
}

.about-trust-note p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.about-suggestion {
    margin-top: 14px;
}

.about-contact-strip {
    padding: 0 0 88px;
}

.about-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px 30px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.about-contact-card .eyebrow,
.about-contact-card .section-title,
.about-contact-card .section-text {
    color: var(--white);
}

.about-contact-card .eyebrow::before {
    background: rgba(255, 255, 255, 0.72);
}

.about-contact-info {
    display: grid;
    gap: 10px;
    text-align: right;
}

.about-contact-info a {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    overflow-wrap: anywhere;
}

@media (max-width: 980px) {
    .about-hero-stats,
    .about-intro-grid,
    .about-direction-grid,
    .about-approach-grid,
    .about-trust-card,
    .about-contact-card {
        grid-template-columns: 1fr;
    }

    .about-contact-info {
        text-align: left;
    }
}

@media (max-width: 760px) {
    .about-hero {
        padding-top: 32px;
    }

    .about-hero-card,
    .about-approach-card,
    .about-trust-card,
    .about-contact-card {
        padding: 24px;
    }

    .about-direction-card {
        min-height: unset;
    }
}

@media (max-width: 560px) {
    .about-hero-card h1 {
        font-size: 38px;
    }

    .about-hero-text,
    .about-intro-text p,
    .about-trust-note p {
        font-size: 16px;
    }

    .about-contact-info a {
        font-size: 21px;
    }
}
