/* ==========================================================================
   About Page Styles — pixel-perfect from Figma screenshot
   ========================================================================== */

/* ─────────────────────────────────────────
   ① Hero Section
───────────────────────────────────────── */
.about-hero-section {
    background-image: url('/assets/aboutUs/business_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 389px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-welcome {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

.about-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
    max-width: 595px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ─────────────────────────────────────────
   ② About Armloop Intro
───────────────────────────────────────── */
.about-intro-section {
    background: #fff;
    padding: 60px 0 70px;
}

.about-intro-inner {
    max-width: 890px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-intro-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    text-align: center;
}

.about-intro-separator {
    width: 100%;
    height: 3px;
    background: #2194F3;
    border-radius: 2px;
    margin-bottom: 28px;
}

.about-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(83, 81, 81, 1);
    line-height: 1.85;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.about-intro-text:last-child {
    margin-bottom: 0;
}

/* ─────────────────────────────────────────
   ③ Why Businesses Choose Armloop
───────────────────────────────────────── */
.why-choose {
    background: #fff;
    padding: 10px 0 80px;
}

.why-choose__heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a252a;
    margin-bottom: 40px;
}

.why-choose__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ---- item row (grid ensures exact 50/50 alignment) ---- */
.why-choose__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.why-choose__item--reverse .why-choose__text-block {
    order: 2;
}
.why-choose__item--reverse .why-choose__img-block {
    order: 1;
}

/* ---- text block ---- */
.why-choose__text-block {
    border-radius: 14px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #F1F1F1;
}

.why-choose__label {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 14px;
    line-height: 1.4;
}

.why-choose__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* ---- image block ---- */
.why-choose__img-block {
    border-radius: 14px;
    overflow: hidden;
    min-height: 220px;
    position: relative;
}

.why-choose__img-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .about-hero-welcome { font-size: 1rem; }
    .about-hero-title   { font-size: 1.4rem; }
    .about-hero-text    { font-size: 1rem; }

    .about-intro-section { padding: 48px 0 56px; }
    .about-intro-title   { font-size: 1.5rem; }
    .about-intro-text    { font-size: 1rem; }

    .why-choose { padding: 10px 0 50px; }
    .why-choose__heading { font-size: 1.3rem; margin-bottom: 28px; }
    .why-choose__list { gap: 24px; }

    .why-choose__item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-choose__item--reverse .why-choose__text-block,
    .why-choose__item--reverse .why-choose__img-block {
        order: unset;
    }

    .why-choose__text-block {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .why-choose__img-block {
        height: 220px;
        min-height: 220px;
        border-radius: 12px;
    }

    .why-choose__label { font-size: 0.9rem; }
    .why-choose__desc  { font-size: 0.84rem; }
}

@media (max-width: 480px) {
    .about-hero-title { font-size: 1.2rem; }
    .why-choose__img-block { height: 180px; min-height: 180px; }
}
