/* =========================================================
   ABOUT - PRODUCT ACTIVITY
========================================================= */

.about-stats-section {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 7% 15%,
            rgba(229,43,135,.07),
            transparent 27%
        ),
        radial-gradient(
            circle at 94% 88%,
            rgba(132,87,232,.08),
            transparent 29%
        ),
        #faf9fd;
}


/* Heading */

.about-section-heading {
    max-width: 800px;

    margin: 0 auto 46px;

    text-align: center;
}

.about-section-heading .eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: #d62f83;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.about-section-heading h2 {
    margin: 0;

    color: #182033;

    font-size: clamp(36px,4.3vw,52px);
    line-height: 1.14;

    letter-spacing: -1.6px;
}

.about-section-heading h2 span {
    color: transparent;

    background: linear-gradient(
        100deg,
        #df2b83,
        #865fea
    );

    -webkit-background-clip: text;
    background-clip: text;
}

.about-section-heading p {
    max-width: 690px;

    margin: 18px auto 0;

    color: #667085;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.about-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.about-stat-card {
    position: relative;
    overflow: hidden;

    min-height: 275px;

    padding: 28px 24px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5e5ee;
    border-radius: 24px;

    box-shadow:
        0 15px 42px rgba(31,40,70,.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.about-stat-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 58px rgba(70,45,108,.12);
}


/* Icon */

.about-stat-icon {
    width: 56px;
    height: 56px;

    margin: 0 auto 20px;

    display: grid;
    place-items: center;

    color: #ffffff;

    border-radius: 17px;

    font-size: 22px;
}


/* Counter */

.hyro-counter {
    display: block;

    margin-bottom: 7px;

    color: #182033;

    font-size: clamp(36px,4vw,50px);
    line-height: 1;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.about-stat-card h3 {
    margin: 10px 0 8px;

    color: #182033;

    font-size: 17px;
}

.about-stat-card p {
    margin: 0;

    color: #667085;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   GYM
========================================================= */

.gym-stat {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0edff
        );
}

.gym-stat .about-stat-icon {
    background:
        linear-gradient(
            135deg,
            #746fe8,
            #965fdc
        );
}


/* =========================================================
   SPA
========================================================= */

.spa-stat {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff0f8
        );
}

.spa-stat .about-stat-icon {
    background:
        linear-gradient(
            135deg,
            #e52b87,
            #b74bb5
        );
}


/* =========================================================
   ACCOUNTING
========================================================= */

.accounting-stat {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #ebfbf2
        );
}

.accounting-stat .about-stat-icon {
    background:
        linear-gradient(
            135deg,
            #20b358,
            #69ca70
        );
}


/* =========================================================
   TOTAL
========================================================= */

.total-stat {
    background:
        linear-gradient(
            145deg,
            #fff7fc,
            #eee9ff
        );
}

.total-stat .about-stat-icon {
    background:
        linear-gradient(
            135deg,
            #e52b87,
            #855fea
        );
}


/* Tablet */

@media (max-width:980px) {

    .about-stats-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* Mobile */

@media (max-width:640px) {

    .about-stats-section {
        padding: 68px 0;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-stat-card {
        min-height: auto;
    }

}

/* =========================================================
   ABOUT PAGE HERO
========================================================= */

.about-page-hero {
    position: relative;
    overflow: hidden;

    padding: 120px 0 105px;

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(132, 87, 232, .12),
            transparent 30%
        ),
        radial-gradient(
            circle at 8% 80%,
            rgba(214, 47, 131, .08),
            transparent 30%
        ),
        #ffffff;
}


.about-page-hero-grid {
    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 70px;

    align-items: center;
}


.about-page-hero-copy h1 {
    margin: 0;

    color: #182033;

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.08;

    letter-spacing: -2.3px;
}


.about-page-hero-copy h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            #d62f83,
            #865fea
        );

    -webkit-background-clip: text;
    background-clip: text;
}


.about-page-hero-copy > p {
    max-width: 700px;

    margin: 24px 0 0;

    color: #667085;

    font-size: 17px;
    line-height: 1.8;
}


.about-page-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* =========================================================
   ABOUT HERO CARD
========================================================= */

.about-page-hero-card {
    padding: 36px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #faf7ff
        );

    border: 1px solid #e6e7ef;
    border-radius: 28px;

    box-shadow:
        0 25px 70px rgba(31, 40, 70, .10);
}


.about-page-card-label {
    display: inline-block;

    margin-bottom: 17px;

    color: #d62f83;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.about-page-hero-card h2 {
    margin: 0;

    color: #182033;

    font-size: clamp(28px, 3.4vw, 42px);

    line-height: 1.16;

    letter-spacing: -1px;
}


.about-page-hero-card h2 span {
    display: block;

    color: #865fea;
}


.about-page-mini-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;

    margin-top: 28px;
}


.about-page-mini-grid div {
    padding: 18px;

    background: #ffffff;

    border: 1px solid #e7e8ef;
    border-radius: 16px;
}


.about-page-mini-grid strong {
    display: block;

    margin-bottom: 4px;

    color: #d62f83;

    font-size: 15px;
}


.about-page-mini-grid span {
    color: #667085;

    font-size: 11px;
}


/* =========================================================
   OUR STORY
========================================================= */

.about-story-section {
    padding: 105px 0;

    background:
        linear-gradient(
            145deg,
            #faf9fd,
            #ffffff
        );
}


.about-story-grid {
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 70px;

    align-items: start;
}


.about-story-heading h2 {
    margin: 0;

    color: #182033;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.12;

    letter-spacing: -1.5px;
}


.about-story-heading h2 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            #d62f83,
            #865fea
        );

    -webkit-background-clip: text;
    background-clip: text;
}


.about-story-copy > p {
    margin: 0 0 18px;

    color: #667085;

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   STORY VALUES
========================================================= */

.about-story-values {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin-top: 30px;
}


.about-story-values div {
    padding: 20px;

    background: #ffffff;

    border: 1px solid #e6e7ef;
    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(31, 40, 70, .04);
}


.about-story-values strong {
    display: block;

    margin-bottom: 5px;

    color: #d62f83;

    font-size: 14px;
}


.about-story-values span {
    color: #667085;

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .about-page-hero-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-page-hero-grid,
    .about-story-grid {
        gap: 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .about-page-hero {
        padding: 85px 0 70px;
    }

    .about-page-hero-copy h1 {
        font-size: 42px;
    }

    .about-page-actions {
        flex-direction: column;
    }

    .about-page-actions .btn {
        width: 100%;
    }

    .about-page-hero-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .about-page-mini-grid {
        grid-template-columns: 1fr;
    }

    .about-story-section {
        padding: 72px 0;
    }

    .about-story-values {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   ABOUT PAGE - CTA / FOOTER FINAL ADJUSTMENTS
========================================================= */


/* SPACE AFTER CTA BEFORE FOOTER */

.about-page-hero ~ .final-cta,
.final-cta {
    margin-bottom: 70px;
}


/* WHATSAPP BUTTON INSIDE CTA */

.final-cta .btn-outline-light[href*="wa.me"] {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(37, 211, 102, 0.22);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.final-cta .btn-outline-light[href*="wa.me"]:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(37, 211, 102, 0.30);
}


/* MOBILE */

@media (max-width: 640px) {

    .final-cta {
        margin-bottom: 45px;
    }

}