.page-header {
    padding: 120px 0 80px;
    background: var(--brand-gradient);
    color: white;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.story {
    padding: 100px 0;
}

.story h2,
.mission h2,
.team h2 {
    color: var(--heading-color);
}

.story-image {
    background: linear-gradient(130deg, var(--brand-deep) 0%, var(--brand-start) 60%, var(--brand-end) 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mission {
    padding: 100px 0;
    background: var(--surface-muted);
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card .icon {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-start-rgb), 0.12);
    color: var(--brand-start);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand-start);
}

.mission-card p {
    color: var(--muted-text);
    line-height: 1.8;
    margin: 0;
}

.team {
    padding: 100px 0;
}

.team-member {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.25rem;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--brand-gradient);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.team-member p {
    color: var(--brand-start);
    font-weight: 600;
    margin: 0;
}

.cta {
    padding: 90px 0 110px;
    background: var(--surface-color);
}

.cta .container {
    background: var(--brand-gradient);
    border-radius: 30px;
    padding: clamp(2.5rem, 5vw, 5rem);
    box-shadow: 0 24px 46px rgba(var(--brand-deep-rgb), 0.28);
    position: relative;
    overflow: hidden;
}

.cta .container::before {
    content: "";
    position: absolute;
    top: -45%;
    right: -25%;
    width: 70%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 72%);
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta .btn-white {
    --bs-btn-color: var(--brand-start);
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.26);
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: var(--brand-start);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

.cta .btn-white:hover,
.cta .btn-white:focus-visible {
    background: linear-gradient(135deg, var(--brand-start) 0%, var(--brand-deep) 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.24);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.26);
    text-decoration: none;
}

.cta .btn-white:focus-visible {
    outline: none;
}

.cta .btn-white:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .page-header {
        padding: 96px 0 64px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .story,
    .mission,
    .team {
        padding: 72px 0;
    }

    .story-image,
    .mission-card,
    .team-member {
        padding: 2rem;
    }

    .team-avatar {
        width: 110px;
        height: 110px;
        font-size: 2.25rem;
    }

    .cta {
        padding: 72px 0 88px;
    }

    .cta .container {
        border-radius: 22px;
    }
}
