/*  About page — extra components (on top of detailed.css)  */

/*  Hero stat badges  */

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.about-stat {
    display: flex;
    align-items: center;
    column-gap: 10px;
    background: var(--white);
    border-radius: 16px;
    padding: 10px 20px;
    box-shadow: 0 4px 20px rgba(33, 42, 52, 0.06);
}

.about-stat-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.about-stat-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: var(--main-dark);
}

/*  Highlighted quote card  */

.about-quote {
    display: flex;
    align-items: center;
    column-gap: 32px;
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 50px;
}

.about-quote-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-quote-icon img {
    width: 30px;
    height: 30px;
}

.about-quote-text p {
    font-weight: 600;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 145%;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

/*  Generic image slot (placeholder-friendly)  */

.about-media {
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 50px;
}

.about-media img {
    width: 100%;
    height: auto;
    display: block;
}

.about-media--placeholder {
    aspect-ratio: 16 / 9;
    background: var(--background-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--main-light);
    font-weight: 500;
    font-size: 14px;
    padding: 20px;
}

/*  Two-column text + image split  */

.about-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    column-gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.about-split .about-media {
    margin-bottom: 0;
}

.about-split--reverse .about-split-media {
    order: 2;
}

.about-split--reverse .about-split-text {
    order: 1;
}

/*  Process steps (how it works)  */

.about-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    margin: 28px 0 40px;
}

.about-step {
    background: var(--white);
    border-radius: 24px;
    padding: 28px 24px;
}

.about-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.about-step-icon img {
    width: 26px;
    height: 26px;
}

.about-step-num {
    display: block;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.about-step-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.about-step-descr {
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: -0.01em;
    color: var(--main-light);
}

/*  Technology platform icon grid  */

.about-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
    row-gap: 16px;
    margin: 28px 0 40px;
}

.about-tech-item {
    display: flex;
    align-items: center;
    column-gap: 14px;
    background: var(--white);
    border-radius: 18px;
    padding: 16px 18px;
}

.about-tech-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-tech-icon img {
    width: 22px;
    height: 22px;
}

.about-tech-label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

/*  Country badges  */

.about-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 24px 0 40px;
}

.about-country {
    display: flex;
    align-items: center;
    column-gap: 10px;
    background: var(--white);
    border-radius: 16px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--main-dark);
}

.about-country-flag {
    font-size: 20px;
    line-height: 1;
}

/*  Why Anywatt — feature cards  */

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    margin: 28px 0 50px;
}

.about-why-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px 22px;
}

.about-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-why-icon img {
    width: 26px;
    height: 26px;
}

.about-why-title {
    font-weight: 700;
    font-size: 17px;
    line-height: 120%;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.about-why-descr {
    font-weight: 500;
    font-size: 13.5px;
    line-height: 145%;
    letter-spacing: -0.01em;
    color: var(--main-light);
}

/*  Mission closing block  */

.about-mission {
    background: var(--main-dark);
    border-radius: 32px;
    padding: 50px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 40px;
    align-items: center;
}

.about-mission-title {
    font-weight: 700;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 115%;
    color: var(--white);
    margin-bottom: 16px;
}

.about-mission-text p {
    font-weight: 500;
    font-size: 15px;
    line-height: 155%;
    letter-spacing: -0.01em;
    color: var(--light-grey);
}

.about-mission-text p:not(:last-child) {
    margin-bottom: 14px;
}

.about-mission-media {
    border-radius: 24px;
    overflow: hidden;
}

.about-mission-media img {
    width: 100%;
    height: auto;
    display: block;
}

.about-mission-media--placeholder {
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-grey);
    font-weight: 500;
    font-size: 13px;
    padding: 20px;
}

/*  Responsive  */

@media (max-width: 1180px) {
    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-split {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .about-split--reverse .about-split-media {
        order: 1;
    }

    .about-split--reverse .about-split-text {
        order: 2;
    }

    .about-mission {
        grid-template-columns: 1fr;
        row-gap: 30px;
        padding: 36px;
    }
}

@media (max-width: 720px) {
    .about-steps {
        grid-template-columns: 1fr;
    }

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

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

    .about-quote {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }
}

@media (max-width: 430px) {
    .about-mission {
        padding: 26px;
    }

    .about-stat {
        padding: 8px 14px;
    }
}