/**
 * Premium About Page — scoped under .about-page only
 * Primary: #5786C7
 */

.about-page {
    --ap-primary: #5786C7;
    --ap-primary-dark: #4569a8;
    --ap-primary-deep: #3d6aab;
    --ap-primary-light: #DCE9FA;
    --ap-primary-soft: #EEF4FC;
    --ap-bg: #F8FAFD;
    --ap-white: #FFFFFF;
    --ap-text: #1F2937;
    --ap-muted: #64748B;
    --ap-radius: 24px;
    --ap-radius-sm: 18px;
    --ap-radius-lg: 32px;
    --ap-shadow: 0 12px 40px rgba(87, 134, 199, 0.12);
    --ap-shadow-hover: 0 18px 48px rgba(87, 134, 199, 0.18);
    --ap-container: min(1200px, calc(100% - 2rem));
    position: relative;
    overflow-x: clip;
    background: linear-gradient(180deg, var(--ap-white) 0%, var(--ap-bg) 35%, var(--ap-bg) 100%);
    color: var(--ap-text);
}

body.about-page .premium-pupil-bg,
body.about-page .premium-home-bg-accent,
body.about-page .bubbles-container {
    opacity: 0.35;
}

body.about-page .premium-montessori-float-layer {
    opacity: 0.2;
}

body.about-page a.nav-link[href="/pages/about"],
body.about-page .dropdown-menu a.nav-link[href="/pages/about"] {
    color: var(--ap-primary) !important;
    font-weight: 700;
    position: relative;
}

body.about-page a.nav-link[href="/pages/about"]::after,
body.about-page .dropdown-menu a.nav-link[href="/pages/about"]::after {
    content: "";
    position: absolute;
    bottom: 0.15rem;
    right: 0.75rem;
    left: 0.75rem;
    height: 2px;
    background: var(--ap-primary);
    border-radius: 2px;
}

.about-page .about-hero__container,
.about-page .about-trust__container,
.about-page .about-institute__container,
.about-page .about-offer__container,
.about-page .about-promo__container,
.about-page .about-vision-mission__container,
.about-page .about-goals__container,
.about-page .about-global__container,
.about-page .about-cta__container {
    width: var(--ap-container);
    max-width: 100%;
    margin-inline: auto;
}

.about-page .about-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .about-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .about-page .about-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-page .about-hero__blob,
    .about-page .about-hero__float-card,
    .about-page .about-hero__mockup,
    .about-page .about-global__float-card {
        animation: none !important;
    }
}

/* HERO */
.about-page .about-hero {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1rem, 3vw, 1.5rem);
    background: linear-gradient(180deg, var(--ap-white) 0%, var(--ap-bg) 100%);
}

.about-page .about-hero.is-visible .about-hero__content {
    animation: apHeroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes apHeroFadeUp {
    from { opacity: 0; transform: translate3d(0, 24px, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.about-page .about-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.about-page .about-hero__content {
    text-align: right;
}

.about-page .about-hero__title {
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--ap-primary);
    margin: 0 0 1rem;
}

.about-page .about-hero__lead {
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    line-height: 1.85;
    color: var(--ap-muted);
    margin: 0 0 1.5rem;
    max-width: 38em;
    margin-inline-start: auto;
}

.about-page .about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.about-page .about-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-page .about-hero__btn--primary {
    color: var(--ap-white);
    background: var(--ap-primary);
    box-shadow: 0 8px 24px rgba(87, 134, 199, 0.35);
}

.about-page .about-hero__btn--primary:hover {
    background: var(--ap-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(87, 134, 199, 0.4);
    color: var(--ap-white);
    text-decoration: none;
}

.about-page .about-hero__btn--secondary {
    color: var(--ap-primary);
    background: var(--ap-white);
    border: 2px solid var(--ap-primary);
}

.about-page .about-hero__btn--secondary:hover {
    background: var(--ap-primary-soft);
    transform: translateY(-2px);
    color: var(--ap-primary-dark);
    text-decoration: none;
}

.about-page .about-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-page .about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ap-primary);
    background: var(--ap-primary-soft);
    border-radius: 999px;
    border: 1px solid rgba(87, 134, 199, 0.12);
}

.about-page .about-hero__visual {
    position: relative;
    min-height: clamp(320px, 42vw, 480px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .about-hero__blob-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 0.95;
    margin-inline: auto;
}

.about-page .about-hero__blob {
    position: absolute;
    inset: 5% 0 8% 5%;
    background:
        radial-gradient(ellipse 80% 70% at 30% 35%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
        linear-gradient(145deg, #6a96d4 0%, var(--ap-primary) 42%, var(--ap-primary-deep) 100%);
    border-radius: 58% 42% 48% 52% / 52% 48% 55% 45%;
    box-shadow: 0 24px 60px rgba(87, 134, 199, 0.35), inset 0 -20px 40px rgba(0, 0, 0, 0.06);
    animation: apBlobDrift 9s ease-in-out infinite alternate;
}

@keyframes apBlobDrift {
    0%   { border-radius: 58% 42% 48% 52% / 52% 48% 55% 45%; transform: translate3d(0, 0, 0) scale(1); }
    100% { border-radius: 48% 52% 55% 45% / 45% 55% 42% 58%; transform: translate3d(-6px, 8px, 0) scale(1.02); }
}

.about-page .about-hero__deco {
    position: absolute;
    pointer-events: none;
}

.about-page .about-hero__deco--dots {
    width: 80px;
    height: 80px;
    top: 4%;
    left: 8%;
    background-image: radial-gradient(circle, var(--ap-primary) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.35;
}

.about-page .about-hero__deco--ring {
    width: 48px;
    height: 48px;
    top: 12%;
    right: 6%;
    border: 2px solid rgba(87, 134, 199, 0.35);
    border-radius: 50%;
}

.about-page .about-hero__deco--triangle {
    width: 0;
    height: 0;
    bottom: 18%;
    left: 4%;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 24px solid rgba(87, 134, 199, 0.2);
}

.about-page .about-hero__deco--circle {
    width: 20px;
    height: 20px;
    bottom: 28%;
    right: 10%;
    background: rgba(87, 134, 199, 0.25);
    border-radius: 50%;
}

.about-page .about-hero__mockup {
    position: absolute;
    inset: 14% 10% 12% 10%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: apMockupFloat 7s ease-in-out infinite alternate;
}

@keyframes apMockupFloat {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(0, -10px, 0); }
}

.about-page .about-hero__mockup-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
    border: 4px solid rgba(255, 255, 255, 0.65);
}

.about-page .about-hero__float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ap-white);
    border-radius: var(--ap-radius-sm);
    padding: 0.55rem 0.8rem;
    box-shadow: var(--ap-shadow);
    border: 1px solid rgba(87, 134, 199, 0.08);
    animation: apFloatCard 6s ease-in-out infinite;
}

.about-page .about-hero__float-card--1 { top: 4%; right: -2%; animation-delay: 0s; }
.about-page .about-hero__float-card--2 { top: 28%; left: -4%; animation-delay: -1.5s; }
.about-page .about-hero__float-card--3 { bottom: 28%; right: -3%; animation-delay: -3s; }
.about-page .about-hero__float-card--4 { bottom: 8%; left: 0; animation-delay: -4.5s; }

@keyframes apFloatCard {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%      { transform: translate3d(0, -8px, 0); }
}

.about-page .about-hero__float-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary-soft);
    color: var(--ap-primary);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.about-page .about-hero__float-icon .fas,
.about-page .about-hero__float-icon .fa {
    line-height: 1;
}

.about-page .about-hero__float-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ap-text);
    white-space: nowrap;
}

/* TRUST STRIP */
.about-page .about-trust {
    padding: 0 0 clamp(2rem, 4vw, 3rem);
    margin-top: -0.5rem;
}

.about-page .about-trust__panel {
    background: var(--ap-white);
    border-radius: var(--ap-radius);
    box-shadow: var(--ap-shadow);
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(87, 134, 199, 0.06);
}

.about-page .about-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.about-page .about-trust__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: right;
}

.about-page .about-trust__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary-soft);
    color: var(--ap-primary);
    border-radius: 50%;
    font-size: 1.15rem;
}

.about-page .about-trust__icon .fas,
.about-page .about-trust__icon .fa {
    line-height: 1;
}

/* Ensure Font Awesome glyphs render inside about page icons */
.about-page .fas,
.about-page .fa {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
}

.about-page .about-trust__value {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--ap-primary);
    margin: 0;
    line-height: 1.2;
}

.about-page .about-trust__label {
    font-size: 0.85rem;
    color: var(--ap-muted);
    margin: 0.15rem 0 0;
    line-height: 1.4;
}

/* ABOUT INSTITUTE */
.about-page .about-institute {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    background: var(--ap-primary-soft);
}

.about-page .about-institute__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.about-page .about-institute__visual {
    position: relative;
}

.about-page .about-institute__image-wrap {
    border-radius: var(--ap-radius-lg);
    overflow: hidden;
    box-shadow: var(--ap-shadow);
    background: var(--ap-white);
}

.about-page .about-institute__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-page .about-institute__trust-card {
    position: absolute;
    bottom: -1rem;
    right: -0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 260px;
    padding: 1rem 1.15rem;
    background: var(--ap-white);
    border-radius: var(--ap-radius-sm);
    box-shadow: var(--ap-shadow-hover);
    border: 1px solid rgba(87, 134, 199, 0.1);
}

.about-page .about-institute__trust-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary-soft);
    color: var(--ap-primary);
    border-radius: 50%;
    font-size: 1rem;
}

.about-page .about-institute__trust-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--ap-text);
    margin: 0 0 0.2rem;
}

.about-page .about-institute__trust-hint {
    font-size: 0.78rem;
    color: var(--ap-muted);
    margin: 0;
    line-height: 1.5;
}

.about-page .about-institute__content {
    text-align: right;
}

.about-page .about-institute__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ap-text);
    margin: 0 0 0.5rem;
}

.about-page .about-institute__title-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary);
    color: var(--ap-white);
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-page .about-institute__subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ap-primary);
    margin: 0 0 1rem;
}

.about-page .about-institute__text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--ap-muted);
    margin: 0 0 1rem;
}

.about-page .about-institute__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.65rem 1.35rem;
    margin-top: 0.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ap-white);
    background: var(--ap-primary);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(87, 134, 199, 0.3);
    transition: transform 0.25s ease, background 0.25s ease;
}

.about-page .about-institute__btn:hover {
    background: var(--ap-primary-dark);
    transform: translateY(-2px);
    color: var(--ap-white);
    text-decoration: none;
}

/* WHAT WE OFFER */
.about-page .about-offer {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.about-page .about-offer__header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.about-page .about-offer__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--ap-text);
    margin: 0;
}

.about-page .about-offer__title-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary-soft);
    color: var(--ap-primary);
    border-radius: 50%;
    font-size: 1.2rem;
}

.about-page .about-offer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.about-page .about-offer__card {
    display: flex;
    flex-direction: column;
    text-align: right;
    background: var(--ap-white);
    border-radius: var(--ap-radius);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    box-shadow: var(--ap-shadow);
    border: 1px solid rgba(87, 134, 199, 0.06);
    min-height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .about-offer__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ap-shadow-hover);
}

.about-page .about-offer__card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary);
    color: var(--ap-white);
    border-radius: 50%;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.about-page .about-offer__card-icon .fas,
.about-page .about-offer__card-icon .fa {
    line-height: 1;
}

.about-page .about-offer__card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ap-text);
    margin: 0 0 0.65rem;
    line-height: 1.4;
}

.about-page .about-offer__card-text {
    font-size: 0.88rem;
    color: var(--ap-muted);
    margin: 0;
    line-height: 1.75;
    flex-grow: 1;
}

/* PROMO BANNER */
.about-page .about-promo {
    padding: 0 0 clamp(2rem, 4vw, 3rem);
}

.about-page .about-promo__panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--ap-radius);
    background: linear-gradient(135deg, var(--ap-primary-light) 0%, var(--ap-primary-soft) 100%);
    border: 1px solid rgba(87, 134, 199, 0.15);
    text-align: right;
}

.about-page .about-promo__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary);
    color: var(--ap-white);
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-page .about-promo__text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
    color: var(--ap-primary-deep);
    margin: 0;
    flex: 1 1 280px;
    line-height: 1.5;
}

.about-page .about-promo__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ap-white);
    background: var(--ap-primary);
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease;
}

.about-page .about-promo__btn:hover {
    background: var(--ap-primary-dark);
    transform: translateY(-2px);
    color: var(--ap-white);
    text-decoration: none;
}

/* VISION & MISSION */
.about-page .about-vision-mission {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    background: var(--ap-bg);
}

.about-page .about-vision-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
}

.about-page .about-vision-mission__card {
    background: linear-gradient(160deg, var(--ap-white) 0%, var(--ap-primary-soft) 100%);
    border-radius: var(--ap-radius);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow: var(--ap-shadow);
    border: 1px solid rgba(87, 134, 199, 0.08);
    text-align: right;
}

.about-page .about-vision-mission__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary);
    color: var(--ap-white);
    border-radius: 50%;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-page .about-vision-mission__title {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--ap-text);
    margin: 0 0 0.75rem;
}

.about-page .about-vision-mission__accent {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--ap-primary);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.about-page .about-vision-mission__text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--ap-muted);
    margin: 0;
    max-width: 42em;
}

.about-page .about-vision-mission__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-page .about-vision-mission__list-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding-right: 0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--ap-muted);
}

.about-page .about-vision-mission__list-icon {
    color: var(--ap-primary);
    font-size: 1rem;
    margin-top: 0.35em;
    flex-shrink: 0;
}

.about-page .about-vision-mission__list-item::before {
    display: none;
}

.about-page .about-vision-mission__list-item:last-child {
    margin-bottom: 0;
}

/* GOALS */
.about-page .about-goals {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.about-page .about-goals__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 52em;
    margin-inline: auto;
}

.about-page .about-goals__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ap-text);
    margin: 0 0 1rem;
}

.about-page .about-goals__title-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary);
    color: var(--ap-white);
    border-radius: 50%;
    font-size: 1.1rem;
}

.about-page .about-goals__intro,
.about-page .about-goals__subtitle {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--ap-muted);
    margin: 0 0 0.5rem;
}

.about-page .about-goals__subtitle {
    font-weight: 700;
    color: var(--ap-text);
}

.about-page .about-goals__timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 720px;
    margin-inline: auto;
    position: relative;
}

.about-page .about-goals__timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 23px;
    width: 2px;
    background: linear-gradient(180deg, var(--ap-primary) 0%, var(--ap-primary-light) 100%);
    border-radius: 2px;
}

.about-page .about-goals__step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-page .about-goals__step:last-child {
    margin-bottom: 0;
}

.about-page .about-goals__step-marker {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary);
    color: var(--ap-white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(87, 134, 199, 0.35);
}

.about-page .about-goals__step-check {
    display: none;
    font-size: 0.85rem;
}

.about-page .about-goals__step.is-visible .about-goals__step-number {
    display: none;
}

.about-page .about-goals__step.is-visible .about-goals__step-check {
    display: block;
}

.about-page .about-goals__step-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius-sm);
    padding: 1.15rem 1.35rem;
    box-shadow: var(--ap-shadow);
    border: 1px solid rgba(87, 134, 199, 0.06);
    text-align: right;
}

.about-page .about-goals__step-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.about-page .about-goals__step-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary-soft);
    color: var(--ap-primary);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.about-page .about-goals__step-lead {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ap-primary);
    margin: 0;
}

.about-page .about-goals__step-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--ap-muted);
    margin: 0;
}

/* GLOBAL CONNECTION */
.about-page .about-global {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.about-page .about-global__inner {
    position: relative;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--ap-radius-lg);
    background: linear-gradient(135deg, #6a96d4 0%, var(--ap-primary) 45%, var(--ap-primary-deep) 100%);
    box-shadow: 0 24px 60px rgba(87, 134, 199, 0.35);
    overflow: hidden;
}

.about-page .about-global__map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    pointer-events: none;
}

.about-page .about-global__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 52em;
    margin-inline: auto;
}

.about-page .about-global__title {
    font-size: clamp(1.25rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--ap-white);
    margin: 0 0 1.25rem;
    line-height: 1.45;
}

.about-page .about-global__text {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem;
}

.about-page .about-global__text:last-of-type {
    margin-bottom: 0;
}

.about-page .about-global__floats {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.about-page .about-global__float-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: var(--ap-white);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    animation: apFloatCard 7s ease-in-out infinite;
}

.about-page .about-global__float-card--1 { animation-delay: 0s; }
.about-page .about-global__float-card--2 { animation-delay: -1.4s; }
.about-page .about-global__float-card--3 { animation-delay: -2.8s; }
.about-page .about-global__float-card--4 { animation-delay: -4.2s; }
.about-page .about-global__float-card--5 { animation-delay: -5.6s; }

.about-page .about-global__float-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-primary-soft);
    color: var(--ap-primary);
    border-radius: 50%;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.about-page .about-global__float-icon .fas,
.about-page .about-global__float-icon .fa {
    line-height: 1;
}

.about-page .about-global__float-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ap-text);
}

/* CTA */
.about-page .about-cta {
    padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.about-page .about-cta__panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: clamp(22px, 3vw, 28px);
    background: linear-gradient(135deg, #6a96d4 0%, var(--ap-primary) 45%, var(--ap-primary-deep) 100%);
    box-shadow: 0 24px 60px rgba(87, 134, 199, 0.35);
    overflow: hidden;
    position: relative;
}

.about-page .about-cta__deco--dots {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: auto, 18px 18px;
    pointer-events: none;
}

.about-page .about-cta__visual {
    position: relative;
    width: clamp(200px, 24vw, 300px);
    flex-shrink: 0;
    z-index: 1;
}

.about-page .about-cta__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--ap-radius);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
    border: 3px solid rgba(255, 255, 255, 0.25);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about-page .about-cta__copy {
    position: relative;
    z-index: 1;
    text-align: right;
}

.about-page .about-cta__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ap-white);
    margin: 0 0 0.75rem;
}

.about-page .about-cta__title-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: var(--ap-white);
    border-radius: 50%;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.about-page .about-cta__text {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 0.75rem;
    line-height: 1.75;
    max-width: 40em;
}

.about-page .about-cta__text:last-of-type {
    margin-bottom: 1.25rem;
}

.about-page .about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-page .about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-page .about-cta__btn--primary {
    color: var(--ap-primary);
    background: var(--ap-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-page .about-cta__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    color: var(--ap-primary-dark);
    text-decoration: none;
}

.about-page .about-cta__btn--secondary {
    color: var(--ap-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.about-page .about-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    color: var(--ap-white);
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .about-page .about-hero__grid,
    .about-page .about-institute__grid,
    .about-page .about-vision-mission__grid {
        grid-template-columns: 1fr;
    }

    .about-page .about-hero__visual {
        order: -1;
        min-height: clamp(280px, 55vw, 380px);
    }

    .about-page .about-hero__content,
    .about-page .about-institute__content {
        text-align: center;
    }

    .about-page .about-hero__lead {
        margin-inline: auto;
    }

    .about-page .about-hero__actions,
    .about-page .about-hero__badges {
        justify-content: center;
    }

    .about-page .about-institute__trust-card {
        right: 0.5rem;
        bottom: -0.75rem;
    }

    .about-page .about-offer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .about-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .about-cta__panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-page .about-cta__copy {
        text-align: center;
    }

    .about-page .about-cta__actions {
        justify-content: center;
    }

    .about-page .about-cta__visual {
        margin-inline: auto;
    }

    .about-page .about-hero__float-card--3,
    .about-page .about-hero__float-card--4 {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .about-page .about-goals__timeline::before {
        right: 19px;
    }

    .about-page .about-goals__step {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .about-page .about-goals__step-marker {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .about-page .about-hero__btn,
    .about-page .about-cta__btn,
    .about-page .about-promo__btn,
    .about-page .about-institute__btn {
        width: 100%;
    }

    .about-page .about-offer__grid,
    .about-page .about-trust__grid {
        grid-template-columns: 1fr;
    }

    .about-page .about-hero__float-card {
        display: none;
    }

    .about-page .about-hero__badges {
        display: none;
    }

    .about-page .about-promo__panel {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .about-page .about-promo__icon {
        margin-inline: auto;
    }

    .about-page .about-institute__title,
    .about-page .about-cta__title {
        justify-content: center;
    }

    .about-page .about-institute__trust-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }

    .about-page .about-global__float-card {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
    }
}

@media (max-width: 390px) {
    .about-page {
        --ap-container: min(1200px, calc(100% - 1.25rem));
    }

    .about-page .about-global__float-card {
        flex: 1 1 100%;
    }
}
