/* =========================================================
   DESPRE MINE — 3C
   CSS CURAT
========================================================= */


/* =========================================================
   VARIABLES + LOCAL RESET
========================================================= */

.about-page {
    --about-blue: #4192ff;
    --about-green: #46f484;
    --about-yellow: #e1ff58;

    --about-dark: #0d1722;
    --about-dark-soft: #111d29;

    --about-text: #15212d;
    --about-soft-text: #61707d;

    --about-white: #ffffff;
    --about-soft: #f7fafc;

    --about-line: rgba(13, 23, 34, .09);

    --about-max: 1180px;

    width: 100%;
    overflow: hidden;

    background: var(--about-white);
    color: var(--about-text);

    font-family: "Inter", system-ui, sans-serif;
    line-height: 1.7;
}


.about-page *,
.about-page *::before,
.about-page *::after {
    box-sizing: border-box;
}


.about-page h1,
.about-page h2,
.about-page h3,
.about-page p,
.about-page blockquote {
    margin-top: 0;
}


.about-page h1,
.about-page h2,
.about-page h3 {
    font-family: "Manrope", sans-serif !important;

    color: var(--about-text);

    text-transform: none;
}


.about-page p {
    color: var(--about-soft-text);
}


.about-page strong {
    color: var(--about-text);
}


.about-page a {
    text-decoration: none;
}


.about-page a:hover {
    text-decoration: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.about-container {
    width: min(
        calc(100% - 48px),
        var(--about-max)
    );

    margin: 0 auto;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.about-section {
    position: relative;

    padding:
        clamp(56px, 6vw, 82px)
        0;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.about-page h1 {
    margin-bottom: 24px;

    font-size:
        clamp(
            2rem,
            3.15vw,
            3rem
        ) !important;

    font-weight: 800;

    line-height: 1.07;

    letter-spacing: -.04em;
}


.about-page h1 span {
    display: block;

    color: var(--about-blue);
}


.about-page h2 {
    margin-bottom: 20px;

    font-size:
        clamp(
            1.75rem,
            3vw,
            2.85rem
        );

    font-weight: 760;

    line-height: 1.15;

    letter-spacing: -.035em;
}


.about-page h3 {
    margin-bottom: 10px;

    font-size: 1.08rem;

    font-weight: 750;

    line-height: 1.35;
}


.about-page p {
    margin:
        0
        0
        16px;

    font-size: .98rem;

    line-height: 1.72;
}


/* =========================================================
   KICKER
========================================================= */

.about-kicker {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    color: var(--about-blue);

    font-family: "Manrope", sans-serif;

    font-size: .67rem;

    font-weight: 800;

    line-height: 1.4;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.about-kicker::before {
    content: "";

    width: 27px;
    height: 2px;

    flex: 0 0 27px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--about-blue),
            var(--about-green),
            var(--about-yellow)
        );
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.about-heading {
    max-width: 760px;

    margin-bottom: 40px;
}


.about-heading > p {
    max-width: 650px;
}


.about-heading--center {
    margin:
        0
        auto
        42px;

    text-align: center;
}


.about-heading--center .about-kicker::before {
    display: none;
}


.about-heading--center > p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-btn {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        11px
        18px;

    border:
        1px solid
        transparent;

    border-radius: 10px;

    font-family: "Inter", sans-serif;

    font-size: .82rem;

    font-weight: 700;

    line-height: 1.35;

    cursor: pointer;

    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease,
        background-color .3s ease,
        border-color .3s ease;
}


.about-btn i {
    font-size: 1.08rem;
}


.about-btn--primary {
    background: var(--about-blue);

    color: #fff !important;

    box-shadow:
        8px
        13px
        26px
        rgba(65, 146, 255, .20);
}


.about-btn--outline {
    border-color:
        rgba(65, 146, 255, .24);

    background:
        rgba(255, 255, 255, .86);

    color:
        var(--about-text) !important;
}


@media (hover: hover) {

    .about-btn:hover {
        transform: translateY(-2px);
    }


    .about-btn--primary:hover {
        box-shadow:
            10px
            17px
            30px
            rgba(65, 146, 255, .24);
    }


    .about-btn--outline:hover {
        border-color:
            rgba(65, 146, 255, .45);

        background: #fff;
    }

}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;

    padding:
        clamp(58px, 6vw, 90px)
        0
        clamp(70px, 7vw, 100px);

    background:
        radial-gradient(
            circle at 7% 12%,
            rgba(65, 146, 255, .11),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 20%,
            rgba(70, 244, 132, .09),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #fbfdff
        );
}


.about-hero::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width:
        min(
            calc(100% - 48px),
            var(--about-max)
        );

    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(65, 146, 255, .34),
            rgba(70, 244, 132, .30),
            rgba(225, 255, 88, .38),
            transparent
        );
}


/* =========================================================
   HERO LAYOUT
========================================================= */

.about-hero__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(300px, .76fr);

    align-items: center;

    gap:
        clamp(
            36px,
            6vw,
            82px
        );
}


.about-hero__content {
    min-width: 0;
}


.about-hero__title {
    max-width: 610px;
}


/* =========================================================
   HERO TEXT
========================================================= */

.about-hero__lead {
    max-width: 650px;

    margin-bottom: 13px !important;

    color: var(--about-text) !important;

    font-size:
        clamp(
            1.04rem,
            1.3vw,
            1.18rem
        ) !important;

    line-height: 1.66;
}


.about-hero__text,
.about-hero__reflection {
    max-width: 650px;

    margin-bottom: 12px !important;

    font-size: .94rem !important;

    line-height: 1.72;
}


.about-hero__reflection {
    color: var(--about-soft-text) !important;
}


.about-hero__reflection strong {
    color: var(--about-text);
}


.about-hero__hook-end {
    max-width: 650px;

    margin:
        21px
        0
        25px !important;

    padding-left: 16px;

    border-left:
        3px solid
        var(--about-green);

    color:
        var(--about-text) !important;

    font-size: .95rem !important;

    font-weight: 650;

    line-height: 1.65;
}


.about-hero__hook-end strong {
    color: var(--about-blue);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.about-hero__visual {
    position: relative;

    width: 100%;

    max-width: 445px;

    margin-left: auto;

    isolation: isolate;
}


/* lumini colorate */

.about-hero__visual::before,
.about-hero__visual::after {
    content: "";

    position: absolute;

    z-index: -2;

    border-radius: 50%;

    filter: blur(30px);

    pointer-events: none;
}


.about-hero__visual::before {
    width: 180px;
    height: 180px;

    top: -25px;
    right: -25px;

    background:
        rgba(65, 146, 255, .19);
}


.about-hero__visual::after {
    width: 160px;
    height: 160px;

    bottom: -10px;
    left: -25px;

    background:
        rgba(70, 244, 132, .17);
}

/* =========================================================
   HERO PHOTO — RAMĂ 3C ANIMATĂ
========================================================= */

/*
 * Permite animarea unghiului gradientului.
 * Dacă un browser foarte vechi nu suportă @property,
 * rama va rămâne vizibilă, doar fără rotație.
 */

@property --about-frame-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}


.about-hero__photo {
    /*
     * VITEZA ROTAȚIEI
     *
     * 20s = foarte lent
     * 16s = lent
     * 12s = mediu
     * 8s  = rapid
     * 5s  = foarte rapid
     */

    --about-frame-speed: 4s;
    --about-frame-angle: 0deg;


    position: relative;

    width: 100%;

    padding: 8px;

    overflow: visible;

    border-radius: 26px;


    /*
     * Gradient circular 3C:
     * albastru → verde → galben → albastru
     */

    background:
        conic-gradient(
            from var(--about-frame-angle),

            rgba(65, 146, 255, .96) 0deg,

            rgba(70, 244, 132, .82) 120deg,

            rgba(225, 255, 88, .84) 240deg,

            rgba(65, 146, 255, .96) 360deg
        );


    /*
     * Sensul este în sensul acelor de ceas.
     */

    animation:
        aboutHeroFrameSpin
        var(--about-frame-speed)
        linear
        infinite;


    box-shadow:
        0 28px 54px
        rgba(13, 23, 34, .15),

        14px 20px 42px
        rgba(65, 146, 255, .15),

        -9px 16px 32px
        rgba(70, 244, 132, .10);
}


/* rotația circulară */

@keyframes aboutHeroFrameSpin {

    from {
        --about-frame-angle: 0deg;
    }

    to {
        --about-frame-angle: 360deg;
    }

}


.about-hero__photo::after {
    content: "";

    position: absolute;

    inset: 8px;

    z-index: 2;

    border:
        1px solid
        rgba(255, 255, 255, .30);

    border-radius: 19px;

    pointer-events: none;
}


.about-hero__photo picture {
    display: block;

    width: 100%;

    border-radius: 19px;

    overflow: hidden;
}


.about-hero__photo img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 4 / 5;

    border-radius: 19px;

    object-fit: cover;
    object-position: center top;

    background: #edf3f8;
}


/* oglindire */

.about-hero__photo-img--mirror {
    transform: scaleX(-1);
}


/* =========================================================
   VISUAL BADGE
========================================================= */

.about-hero__visual-badge {
    position: absolute;

    z-index: 4;

    top: 18px;
    left: -16px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        9px
        12px;

    border:
        1px solid
        rgba(255, 255, 255, .65);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .87);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0
        12px
        25px
        rgba(13, 23, 34, .10);

    color: var(--about-text);

    font-size: .72rem;

    font-weight: 700;

    line-height: 1.2;
}


.about-hero__visual-badge i {
    color: var(--about-blue);

    font-size: 1rem;
}


/* =========================================================
   HERO SIGNATURE
========================================================= */

.about-hero__signature {
    position: absolute;

    z-index: 5;

    left: -18px;
    bottom: -34px;

    width:
        min(
            84%,
            380px
        );

    padding:
        16px
        18px
        16px
        20px;

    border:
        1px solid
        rgba(255, 255, 255, .62);

    border-radius: 17px;

    background:
        rgba(255, 255, 255, .88);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0
        18px
        34px
        rgba(13, 23, 34, .14),
        7px
        10px
        22px
        rgba(65, 146, 255, .08);

    transform:
        rotate(-1deg);
}


.about-hero__signature::before {
    content: "";

    position: absolute;

    top: 13px;
    bottom: 13px;
    left: 0;

    width: 4px;

    border-radius: 999px;

background: var(--about-green);
}


.about-hero__signature span {
    display: inline-flex;

    margin-bottom: 7px;

    padding:
        4px
        9px;

    border-radius: 999px;

    color: var(--about-text);

    background:
        linear-gradient(
            90deg,
            rgba(65, 146, 255, .28) 0%,
            rgba(70, 244, 132, .28) 46%,
            rgba(225, 255, 88, .32) 100%
        );

    font-family:
        "Manrope",
        sans-serif;

    font-size: .58rem;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.about-hero__signature strong {
    display: block;

    color:
        var(--about-text);

    font-size: .83rem;

    font-weight: 700;

    line-height: 1.5;
}


/* =========================================================
   PERSPECTIVE
========================================================= */

.about-perspective {
    background: #fff;
}


.about-perspective__grid {
    display: grid;

    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);

    gap:
        clamp(
            42px,
            7vw,
            90px
        );

    align-items: start;
}


.about-perspective__intro {
    position: sticky;

    top: 100px;
}


.about-perspective__content {
    max-width: 680px;
}


.about-perspective__strong {
    margin:
        25px
        0 !important;

    padding:
        19px
        21px;

    border-left:
        3px solid
        var(--about-blue);

    background:
        linear-gradient(
            135deg,
            rgba(65, 146, 255, .07),
            rgba(70, 244, 132, .04)
        );

    color:
        var(--about-text) !important;

    font-family:
        "Lora",
        serif;

    font-size:
        1.05rem !important;

    font-style: italic;
}


/* =========================================================
   FOUNDATIONS / PREVENTION
========================================================= */

.about-prevention {
    background:
        var(--about-soft);
}


.about-foundations {
    display: grid;

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

    gap: 18px;
}


.about-foundation {
    position: relative;

    min-height: 300px;

    padding:
        28px
        24px;

    overflow: hidden;

    border:
        1px solid
        var(--about-line);

    border-radius: 2px;

    background: #fff;

    box-shadow:
        8px
        13px
        26px
        rgba(13, 32, 48, .055);
}


.about-foundation::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;
}


.about-foundation--mission::before {
    background:
        var(--about-blue);
}


.about-foundation--values::before {
    background:
        var(--about-green);
}


.about-foundation--attraction::before {
    background:
        var(--about-yellow);
}


.about-foundation__number {
    position: absolute;

    top: 17px;
    right: 20px;

    color:
        rgba(13, 23, 34, .10);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 2.4rem;

    font-weight: 800;
}


.about-foundation__icon {
    width: 47px;
    height: 47px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(65, 146, 255, .08);

    color:
        var(--about-blue);

    font-size: 1.35rem;
}


.about-foundation--values
.about-foundation__icon {
    background:
        rgba(70, 244, 132, .12);

    color: #149550;
}


.about-foundation--attraction
.about-foundation__icon {
    background:
        rgba(225, 255, 88, .22);

    color: #859200;
}


.about-foundation p {
    margin-bottom: 18px;
}


.about-foundation > strong {
    display: block;

    padding-top: 17px;

    border-top:
        1px solid
        var(--about-line);

    font-size: .87rem;

    line-height: 1.55;
}


.about-foundations__summary {
    margin-top: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    color:
        var(--about-text);

    font-size: .78rem;

    font-weight: 700;
}


.about-foundations__summary i {
    width: 5px;
    height: 5px;

    display: block;

    border-radius: 50%;

    background:
        var(--about-green);
}


/* =========================================================
   MATURITY
========================================================= */

.about-maturity {
    background: #fff;
}


.about-maturity__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .82fr);

    gap:
        clamp(
            42px,
            7vw,
            90px
        );

    align-items: center;
}


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


.about-maturity__statement {
    padding:
        32px
        28px;

    border:
        1px solid
        var(--about-line);

    border-radius: 2px;

    background:
        linear-gradient(
            145deg,
            rgba(65, 146, 255, .055),
            rgba(70, 244, 132, .045),
            rgba(225, 255, 88, .07)
        );

    box-shadow:
        9px
        14px
        28px
        rgba(14, 31, 47, .07);
}


.about-maturity__statement > span {
    display: block;

    margin-bottom: 8px;

    color:
        var(--about-soft-text);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .05em;

    text-transform: uppercase;
}


.about-maturity__statement > p {
    margin-bottom: 19px;

    color:
        var(--about-text);

    font-weight: 700;
}


.about-maturity__statement > div {
    width: 55px;
    height: 2px;

    margin:
        21px
        0;

    background:
        linear-gradient(
            90deg,
            var(--about-blue),
            var(--about-green),
            var(--about-yellow)
        );
}


.about-maturity__statement blockquote {
    margin: 0;

    color:
        var(--about-text);

    font-family:
        "Lora",
        serif;

    font-size:
        clamp(
            1.04rem,
            1.8vw,
            1.28rem
        );

    font-style: italic;

    line-height: 1.62;
}


/* =========================================================
   3C
========================================================= */

.about-3c {
    background:
        var(--about-dark);
}


.about-3c h2 {
    color: #fff;
}


.about-3c .about-heading > p {
    color:
        rgba(255, 255, 255, .60);
}


.about-3c__grid {
    display: grid;

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

    gap: 1px;

    background:
        rgba(255, 255, 255, .10);
}


.about-3c__item {
    min-height: 255px;

    padding:
        28px
        25px;

    background:
        var(--about-dark-soft);
}


.about-3c__letter {
    width: 44px;
    height: 44px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.1rem;

    font-weight: 800;
}


.about-3c__item--blue
.about-3c__letter {
    background:
        rgba(65, 146, 255, .14);

    color:
        var(--about-blue);
}


.about-3c__item--green
.about-3c__letter {
    background:
        rgba(70, 244, 132, .12);

    color:
        var(--about-green);
}


.about-3c__item--yellow
.about-3c__letter {
    background:
        rgba(225, 255, 88, .12);

    color:
        var(--about-yellow);
}


.about-3c__item h3 {
    color: #fff;
}


.about-3c__item p {
    margin-bottom: 0;

    color:
        rgba(255, 255, 255, .57);
}


/* =========================================================
   ROLE
========================================================= */

.about-role {
    background: #fff;
}


.about-role__grid {
    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(300px, 1.05fr);

    gap:
        clamp(
            42px,
            7vw,
            90px
        );

    align-items: center;
}


.about-role__steps {
    display: grid;

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

    border-top:
        1px solid
        var(--about-line);

    border-left:
        1px solid
        var(--about-line);
}


.about-role__steps > div {
    min-height: 112px;

    padding: 21px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-right:
        1px solid
        var(--about-line);

    border-bottom:
        1px solid
        var(--about-line);
}


.about-role__steps span {
    color:
        var(--about-blue);

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: .08em;
}


.about-role__steps strong {
    font-family:
        "Manrope",
        sans-serif;

    font-size: .93rem;
}


/* =========================================================
   PERSON
========================================================= */

.about-person {
    background:
        linear-gradient(
            180deg,
            #f8fbfd,
            #fff
        );
}


.about-person__grid {
    display: grid;

    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);

    gap:
        clamp(
            42px,
            7vw,
            90px
        );
}


.about-person__content {
    padding-left: 25px;

    border-left:
        2px solid
        var(--about-green);
}


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


/* =========================================================
   AUDIENCE
========================================================= */

.about-audience {
    background:
        var(--about-soft);
}


.about-audience__items {
    max-width: 980px;

    margin:
        0
        auto;

    display: grid;

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

    gap: 14px;
}


.about-audience__items > div {
    min-height: 140px;

    padding:
        22px
        20px;

    display: flex;

    flex-direction: column;

    gap: 16px;

    border:
        1px solid
        var(--about-line);

    border-radius: 2px;

    background: #fff;
}


.about-audience__items i {
    color:
        var(--about-blue);

    font-size: 1.4rem;
}


.about-audience__items span {
    color:
        var(--about-text);

    font-size: .86rem;

    font-weight: 700;

    line-height: 1.5;
}


.about-audience__note {
    max-width: 760px;

    margin:
        24px
        auto
        0 !important;

    text-align: center;

    font-size: .86rem !important;
}


/* =========================================================
   PROGRAM
========================================================= */

.about-program {
    background:
        linear-gradient(
            135deg,
            rgba(65, 146, 255, .075),
            rgba(70, 244, 132, .045),
            rgba(225, 255, 88, .065)
        );
}


.about-program__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .78fr);

    gap:
        clamp(
            42px,
            7vw,
            90px
        );

    align-items: center;
}


.about-program__actions {
    display: flex;

    flex-wrap: wrap;

    gap: 11px;

    margin-top: 26px;
}


.about-program__motto {
    padding:
        31px
        28px;

    border-radius: 2px;

    background:
        var(--about-dark);

    box-shadow:
        12px
        18px
        34px
        rgba(13, 23, 34, .17);
}


.about-program__motto > span {
    display: block;

    margin-bottom: 16px;

    color:
        var(--about-green);

    font-size: .59rem;

    font-weight: 800;

    letter-spacing: .14em;
}


.about-program__motto blockquote {
    margin:
        0
        0
        9px;

    color: #fff;

    font-family:
        "Lora",
        serif;

    font-size:
        clamp(
            1.2rem,
            2.4vw,
            1.7rem
        );

    font-style: italic;

    line-height: 1.52;
}


.about-program__motto cite {
    display: block;

    color:
        rgba(255, 255, 255, .50);

    font-size: .7rem;

    font-style: normal;

    font-weight: 650;
}


.about-program__line {
    width: 55px;
    height: 2px;

    margin:
        21px
        0;

    background:
        linear-gradient(
            90deg,
            var(--about-blue),
            var(--about-green),
            var(--about-yellow)
        );
}


.about-program__motto p {
    margin-bottom: 0;

    color:
        rgba(255, 255, 255, .60);
}


/* =========================================================
   REVEAL
========================================================= */

.js-about-reveal
[data-about-reveal] {
    opacity: 0;

    transform:
        translateY(22px);

    transition:
        opacity .72s ease,
        transform .82s cubic-bezier(.22, 1, .36, 1);
}


.js-about-reveal
[data-about-reveal].is-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   LAPTOP / TABLETĂ LANDSCAPE
========================================================= */

@media (max-width: 1050px) {

    .about-container {
        width:
            calc(100% - 36px);
    }


    .about-hero {
        padding:
            52px
            0
            76px;
    }


    .about-hero__grid {
        grid-template-columns:
            minmax(0, 1.10fr)
            minmax(270px, .78fr);

        gap: 30px;
    }


    .about-hero__title {
        font-size:
            clamp(
                1.85rem,
                3.4vw,
                2.55rem
            ) !important;
    }


    .about-hero__lead {
        font-size:
            .98rem !important;
    }


    .about-hero__text,
    .about-hero__reflection,
    .about-hero__hook-end {
        font-size:
            .88rem !important;
    }


    .about-hero__visual {
        max-width:
            350px;
    }


    .about-hero__signature {
        left: -10px;
        bottom: -26px;

        width:
            calc(100% - 4px);

        padding:
            13px
            14px
            13px
            17px;
    }


    .about-hero__signature strong {
        font-size:
            .76rem;
    }


    .about-hero__visual-badge {
        top: 11px;
        left: -8px;

        padding:
            7px
            9px;

        font-size:
            .63rem;
    }


    .about-perspective__grid,
    .about-maturity__grid,
    .about-role__grid,
    .about-person__grid,
    .about-program__grid {
        gap: 42px;
    }

}


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

@media (max-width: 760px) {

    /*
     * HERO rămâne încă pe 2 coloane până la 620px.
     */

    .about-hero__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(220px, 275px);

        gap: 22px;
    }


    .about-hero__visual {
        max-width: 275px;
    }


    .about-hero__title {
        font-size:
            clamp(
                1.65rem,
                4.4vw,
                2.05rem
            ) !important;
    }


    .about-hero__lead,
    .about-hero__text,
    .about-hero__reflection,
    .about-hero__hook-end {
        font-size:
            .82rem !important;
    }


    /*
     * Restul secțiunilor pot trece pe o coloană.
     */

    .about-perspective__grid,
    .about-maturity__grid,
    .about-role__grid,
    .about-person__grid,
    .about-program__grid {
        grid-template-columns:
            1fr;
    }


    .about-perspective__intro {
        position: static;
    }


    .about-perspective__content {
        max-width: none;
    }


    .about-foundations,
    .about-3c__grid,
    .about-audience__items {
        grid-template-columns:
            1fr;
    }


    .about-foundation,
    .about-3c__item,
    .about-audience__items > div {
        min-height: 0;
    }


    .about-person__content {
        padding-left: 0;
        padding-top: 20px;

        border-left: 0;

        border-top:
            2px solid
            var(--about-green);
    }

}


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

@media (max-width: 620px) {

    .about-container {
        width:
            calc(100% - 28px);
    }


    .about-section {
        padding:
            48px
            0;
    }


    .about-hero {
        padding:
            42px
            0
            68px;
    }


    .about-hero__grid {
        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .about-hero__title {
        max-width: 100%;

        font-size:
            clamp(
                1.85rem,
                8.3vw,
                2.3rem
            ) !important;

        line-height: 1.08;
    }


    .about-hero__lead {
        font-size:
            .98rem !important;
    }


    .about-hero__text,
    .about-hero__reflection,
    .about-hero__hook-end {
        font-size:
            .9rem !important;
    }


    .about-btn {
        width: 100%;
    }


    .about-hero__visual {
        width:
            min(
                420px,
                100%
            );

        max-width: none;

        margin:
            0 auto;
    }


    .about-hero__signature {
        left: 10px;
        bottom: -24px;

        width:
            calc(100% - 20px);

        transform: none;
    }


    .about-hero__visual-badge {
        top: 10px;
        left: 10px;
    }


    .about-heading {
        margin-bottom: 30px;
    }


    .about-foundations__summary {
        align-items: flex-start;

        flex-direction: column;

        gap: 6px;
    }


    .about-foundations__summary i {
        width: 28px;
        height: 1px;

        border-radius: 0;

        background:
            linear-gradient(
                90deg,
                var(--about-blue),
                var(--about-green)
            );
    }


    .about-maturity__statement {
        padding:
            25px
            20px;
    }


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


    .about-role__steps > div {
        min-height: 92px;
    }


    .about-program__actions {
        flex-direction: column;
    }


    .about-program__motto {
        padding:
            26px
            20px;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 359.98px) {

    .about-container {
        width:
            calc(100% - 20px);
    }


    .about-hero__title {
        font-size:
            1.78rem !important;
    }

}

.about-hero__content {text-align: center;}
.about-hero__content p {text-align: left;}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .js-about-reveal
    [data-about-reveal] {
        opacity: 1;

        transform: none;

        transition: none;
    }


    .about-btn {
        transition: none;
    }


    .about-hero__photo {
        animation: none;
    }

}