/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.about-page-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.about-page-hero {
    padding: 75px 0 55px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(78, 92, 245, 0.08),
            transparent 45%
        ),
        #f4f6ff;
        margin-top: 200px;
}

.about-page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 5px 14px;

    border: 1px solid #b8c8ff;
    border-radius: 999px;

    background: #eef2ff;

    color: #3558e8;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.about-page-hero-badge i {
    font-size: 10px;
}

.about-page-hero h1 {
    margin: 13px 0 7px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;

    font-weight: 800;

    color: #111827;
}

.about-page-hero h1 span {
    color: #4b55ee;
}

.about-page-hero-description {
    max-width: 650px;

    margin: 0 auto;

    color: #65708a;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   STATS
========================================================= */

.about-page-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    gap: 55px;

    margin-top: 30px;
}

.about-page-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page-stat strong {
    color: #4b55ee;

    font-size: 27px;
    line-height: 1;

    font-weight: 800;
}

.about-page-stat span {
    margin-top: 5px;

    color: #667085;

    font-size: 9px;
    font-weight: 500;
}


/* =========================================================
   STORY
========================================================= */

.about-page-story {
    padding: 70px 0;
    background: #ffffff;
}

.about-page-story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 55px;
}

.about-page-section-label {
    display: block;

    margin-bottom: 8px;

    color: #5263ef;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.about-page-story-content h2 {
    margin: 0 0 15px;

    font-size: 30px;
    line-height: 1.15;

    color: #111827;
}

.about-page-story-content p {
    margin: 0 0 11px;

    color: #687386;

    font-size: 12px;
    line-height: 1.65;
}

.about-page-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 8px;

    padding: 9px 15px;

    border-radius: 7px;

    background: linear-gradient(
        135deg,
        #3862ee,
        #6840e8
    );

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(68, 80, 235, 0.2);

    transition: 0.25s ease;
}

.about-page-work-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 25px rgba(68, 80, 235, 0.28);
}

.about-page-story-visual {
    position: relative;
}

.about-page-story-image-wrapper {
    position: relative;

    border-radius: 10px;

    overflow: visible;
}

.about-page-story-image-wrapper img {
    display: block;

    width: 100%;
    height: 330px;

    object-fit: cover;

    border-radius: 10px;
}

.about-page-growth-card {
    position: absolute;

    right: -10px;
    bottom: 12px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 9px 12px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #e5e7eb;

    border-radius: 8px;

    box-shadow:
        0 10px 25px rgba(31, 41, 55, 0.13);
}

.about-page-growth-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #effff8;

    color: #20bf7b;

    font-size: 13px;
}

.about-page-growth-card strong,
.about-page-growth-card span {
    display: block;
}

.about-page-growth-card strong {
    color: #344054;

    font-size: 9px;
    font-weight: 800;
}

.about-page-growth-card span {
    margin-top: 2px;

    color: #98a2b3;

    font-size: 7px;
}


/* =========================================================
   VALUES
========================================================= */

.about-page-values {
    padding: 55px 0 65px;

    background: #f8f9fb;
}

.about-page-centered-heading {
    text-align: center;

    margin-bottom: 28px;
}

.about-page-centered-heading .about-page-section-label {
    display: none;
}

.about-page-centered-heading h2 {
    margin: 0;

    color: #111827;

    font-size: 28px;
    line-height: 1.15;
}

.about-page-centered-heading h2 span {
    color: #5254ed;
}

.about-page-values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

.about-page-value-card {
    min-height: 145px;

    padding: 16px;

    background: #ffffff;

    border: 1px solid #e8ebf1;

    border-radius: 8px;

    box-shadow:
        0 4px 12px rgba(16, 24, 40, 0.04);
}

.about-page-value-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 6px;

    font-size: 12px;
}

.about-page-value-icon.blue {
    color: #4169ed;
    background: #eef3ff;
}

.about-page-value-icon.purple {
    color: #8754ef;
    background: #f2ecff;
}

.about-page-value-icon.green {
    color: #1ebd79;
    background: #eafff6;
}

.about-page-value-icon.orange {
    color: #f4a529;
    background: #fff6e5;
}

.about-page-value-card h3 {
    margin: 0 0 6px;

    color: #111827;

    font-size: 11px;
    font-weight: 800;
}

.about-page-value-card p {
    margin: 0;

    color: #6b7280;

    font-size: 9px;
    line-height: 1.55;
}


/* =========================================================
   TEAM
========================================================= */

.about-page-team {
    padding: 65px 0 80px;

    background: #ffffff;
}

.about-page-team-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.about-page-team-card {
    padding: 12px;

    text-align: center;

    border: 1px solid #e9ebef;

    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 3px 10px rgba(16, 24, 40, 0.03);

    transition: 0.25s ease;
}

.about-page-team-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(16, 24, 40, 0.08);
}

.about-page-member-image {
    position: relative;

    width: 46px;
    height: 46px;

    margin: 0 auto 7px;
}

.about-page-member-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 8px;
}

.about-page-linkedin {
    position: absolute;

    right: -4px;
    bottom: -3px;

    width: 15px;
    height: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;

    background: #5b4be8;

    color: #ffffff;

    font-size: 7px;
}

.about-page-team-card h3 {
    margin: 0;

    color: #111827;

    font-size: 10px;
    font-weight: 800;
}

.about-page-team-card p {
    margin: 3px 0 0;

    color: #5263ee;

    font-size: 8px;
}
.about-page-reveal {
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.about-page-visible {
    opacity: 1;
    transform: translateY(0);
}