/* =========================================================== */
/* 1. HERO SECTION                                             */
/* =========================================================== */
.about-hero {
    padding: 10rem 0 6rem 0;
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subheading {
    font-size: 1.125rem;
    color: var(--text-subtle);
    font-weight: 400;
    line-height: 1.7;
    max-width: 45rem;
    margin: 0 auto;
}

/* =========================================================== */
/* 2. STORY CONTENT (EDITORIAL SECTION)                        */
/* =========================================================== */
/* ----------------------------------------------------------- */
/* 2. STORY CONTENT (EDITORIAL SECTION) */
/* ----------------------------------------------------------- */
.about-content {
    padding: 0 2rem;
    margin-bottom: 10rem;
    display: flex;
    justify-content: center;
}

.glass-card-about {
    max-width: var(--mw-content);
    width: 100%;
    background: var(--surface-color);
    backdrop-filter: blur(1.875rem);
    border: 1px solid var(--border-color);
    border-radius: 1.875rem;
    padding: 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    box-shadow: var(--card-shadow);
}

.about-text {
    flex: 1.2;
    /* FIX: start aligns left for EN and right for AR automatically */
    text-align: start;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-subtle);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-visual {

    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: var(--text-color);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.05), 0 0 40px var(--aurora-1);
    transition: transform 0.6s ease;
}

/* =========================================================== */
/* 3. VALUES GRID                                              */
/* =========================================================== */
.values-section {
    padding: 0 2rem;
    margin-bottom: 10rem;
}

.section-headline {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--mw-content);
    margin: 0 auto;
}

.value-card {
    background: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.1);
    border-color: var(--text-color);
    background: var(--surface-color);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 1.875rem var(--aurora-1);
    transition: all 0.4s ease;
}

.value-card:hover i {
    transform: scale(1.1) rotate(10deg);
    background: var(--surface-color);
    border-color: var(--text-color);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    font-size: 1rem;
    color: var(--text-subtle);
    line-height: 1.6;
}

/* =========================================================== */
/* 4. RESPONSIVE MEDIA QUERIES (TABLET / LAPTOP)               */
/* =========================================================== */
@media (max-width: 64rem) {

    /* Story Content Responsive */
    .about-content {
        padding: 0 1.5rem;
        margin-bottom: 6rem;
    }

    .glass-card-about {
        flex-direction: column;
        background: transparent;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
        gap: 3rem;
    }

    .about-visual {
        order: 1;
        width: 100%;
        justify-content: flex-start;
    }

    .visual-placeholder {
        width: 100%;
        height: 220px;
        border-radius: 50px;
        background: var(--surface-color);
        border: 1px solid var(--border-color);
        font-size: 3.5rem;
        animation: floatCapsule 6s ease-in-out infinite;
    }

    .about-text {
        order: 2;
        padding-inline-start: 1.5rem;
        border-inline-start: 3px solid var(--border-color);
    }

    .about-text h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        line-height: 1;
    }

    /* Values Grid Responsive */
    .values-section {
        padding: 0 1.5rem;
        margin-bottom: 5rem;
    }

    .section-headline {
        margin-bottom: 3.5rem;
    }

    .values-grid {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .value-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: start;
        padding: 2rem 2.5rem;
        background: var(--surface-color);
        backdrop-filter: blur(1.25rem);
        border-radius: 1.5rem;
        transform: none !important;
    }

    .value-card:hover {
        background: var(--glass-bg);
        padding-left: 3rem;
    }

    .value-card i {
        width: 5rem;
        height: 5rem;
        font-size: 2.5rem;
        flex-shrink: 0;
        margin: 0;
        margin-inline-end: 2rem;
        border-radius: 1rem;
    }

    .value-card h3 {
        font-size: 1.8rem;
        margin: 0;
    }

    .value-card p {
        display: none;
    }
}

/* =========================================================== */
/* 5. RESPONSIVE MEDIA QUERIES (MOBILE)                        */
/* =========================================================== */
@media (max-width: 48rem) {
    .about-content {
        margin-bottom: 4rem;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .visual-placeholder {
        width: 80%;
        font-size: 7rem;
        margin: auto;
    }

    .section-headline {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .value-card {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }

    .value-card i {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
    }

    .value-card h3 {
        font-size: 1.4rem;
    }
}

/* =========================================================== */
/* 6. ANIMATIONS                                               */
/* =========================================================== */
@keyframes floatCapsule {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}