/* =========================================
   ABOUT SECTION
========================================= */
.about {
    padding: 90px 0;
    background: #ffffff;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* =========================================
   IMAGE SIDE
========================================= */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* FLOAT BADGE */
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;

    background: white;
    padding: 10px 14px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    box-shadow: var(--shadow-sm);
}

.about-image-badge span {
    font-size: 18px;
}

/* =========================================
   TEXT SIDE
========================================= */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* BADGE */
.section-badge {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 500;
    background: var(--primary-blue-light);
    padding: 6px 12px;
    border-radius: 999px;
    width: fit-content;
}

/* TITLE */
.about-text h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}

/* LEAD */
.about-lead {
    font-size: 15px;
    color: var(--grey-700);
    font-weight: 500;
}

/* BODY */
.about-text p {
    font-size: 14px;
    color: var(--grey-500);
    max-width: 520px;
}

/* =========================================
   HIGHLIGHTS GRID
========================================= */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 10px;
}

/* CARD */
.highlight-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;

    padding: 12px;
    border-radius: 12px;
    background: #f8faff;
    transition: 0.2s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    background: #f1f5ff;
}

/* ICON */
.highlight-icon {
    font-size: 18px;
}

/* TEXT */
.highlight-item strong {
    font-size: 14px;
}

.highlight-item p {
    font-size: 12px;
    color: var(--grey-500);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text {
        align-items: center;
    }

    .about-text p {
        max-width: 100%;
    }

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

    .highlight-item {
        text-align: left;
    }

    .about-image-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {

    .about {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-lead {
        font-size: 14px;
    }

    .about-text p {
        font-size: 13px;
    }
}