.akra-about {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #05010d 0%,
            #090312 100%);
}

/* =========================================================
   GRID BACKGROUND
========================================================= */
.akra-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .35;
}

/* =========================================================
   GLOW
========================================================= */
.about-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(123, 97, 255, .16),
            transparent 70%);
    filter: blur(140px);
    top: -300px;
    right: -250px;
    pointer-events: none;
}

/* =========================================================
   HERO
========================================================= */
.about-hero {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    margin-bottom: 110px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    margin-bottom: 32px;
    font-size: 13px;
    letter-spacing: 3px;
    color:
        rgba(255, 255, 255, .72);
}

.about-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ba6eeb;
    box-shadow:
        0 0 15px #ba6eeb;
}

.about-hero h1 {
    font-size: clamp(48px, 6vw, 88px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -4px;
    color: #fff;
    max-width: 1200px;
    margin: auto auto 34px;
}

.about-hero h1 span {
    background:
        linear-gradient(90deg,
            #7b61ff,
            #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    max-width: 900px;
    margin: auto;
    font-size: 22px;
    line-height: 1.9;
    color:
        rgba(255, 255, 255, .68);
}

/* =========================================================
   NEW ABOUT LAYOUT
========================================================= */
.about-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* =========================================================
   FEATURE FULL
========================================================= */
.about-feature-card {
    min-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* =========================================================
   TWO COLUMN
========================================================= */
.about-two-col {
    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr) minmax(320px, .6fr);
    gap: 32px;
    align-items: start;
}

/* =========================================================
   LEFT
========================================================= */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* =========================================================
   RIGHT
========================================================= */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 120px;
}

/* =========================================================
   CARD
========================================================= */
.about-card,
.about-side-card {
    position: relative;
    padding: 42px;
    border-radius: 38px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: .4s;
}

.about-card::before,
.about-side-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .08),
            transparent);
    opacity: 0;
    transition: .4s;
}

.about-card:hover,
.about-side-card:hover {
    transform:
        translateY(-8px);
    border-color:
        rgba(123, 97, 255, .35);
    box-shadow:
        0 0 40px rgba(123, 97, 255, .12);
}

.about-card:hover::before,
.about-side-card:hover::before {
    opacity: 1;
}

/* =========================================================
   TOP
========================================================= */
.about-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.about-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background:
        rgba(123, 97, 255, .14);
    border:
        1px solid rgba(123, 97, 255, .28);
}

.about-label {
    padding: 12px 18px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .05);
    border:
        1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    color:
        rgba(255, 255, 255, .78);
}

/* =========================================================
   FEATURE TYPOGRAPHY
========================================================= */
.about-feature-card h2 {
    font-size: 64px;
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 900;
    color: #fff;
    max-width: 95%;
    margin-bottom: 40px;
}

.about-feature-card p {
    font-size: 20px;
    line-height: 2;
    color:
        rgba(255, 255, 255, .66);
    max-width: 92%;
    margin-bottom: 22px;
}

/* =========================================================
   OTHER TYPOGRAPHY
========================================================= */
.about-card h2 {
    font-size: 44px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 28px;
    max-width: 92%;
}

.about-card p {
    font-size: 17px;
    line-height: 2;
    color:
        rgba(255, 255, 255, .66);
    margin-bottom: 22px;
    max-width: 95%;
}

/* =========================================================
   METRICS
========================================================= */
.about-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: auto;
    padding-top: 60px;
}

.about-metric {
    flex: 1;
    min-width: 160px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .03));
    border:
        1px solid rgba(255, 255, 255, .08);
}

.about-metric strong {
    display: block;
    font-size: 54px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.about-metric span {
    font-size: 13px;
    color:
        rgba(255, 255, 255, .55);
}

/* =========================================================
   TAGS
========================================================= */
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.about-tags span {
    padding: 12px 18px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .05);
    border:
        1px solid rgba(255, 255, 255, .08);
    color:
        rgba(255, 255, 255, .78);
    font-size: 13px;
}

/* =========================================================
   MEDIA CARD
========================================================= */
.about-media-card {
    min-height: 760px;
}

/* =========================================================
   SERVICE LIST
========================================================= */
.about-service-list {
    margin-top: 34px;
}

.about-service-item {
    padding: 26px;
    border-radius: 26px;
    background:
        rgba(255, 255, 255, .03);
    border:
        1px solid rgba(255, 255, 255, .06);
    margin-bottom: 16px;
    transition: .35s;
}

.about-service-item:hover {
    transform:
        translateY(-4px);
    border-color:
        rgba(123, 97, 255, .35);
    box-shadow:
        0 0 30px rgba(123, 97, 255, .12);
}

.about-service-item strong {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.about-service-item span {
    color:
        rgba(255, 255, 255, .62);
    line-height: 1.8;
}

/* =========================================================
   SIDEBAR
========================================================= */
.about-side-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.side-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

/* =========================================================
   OVERVIEW
========================================================= */
.overview-grid {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 18px;
}

.overview-item {
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .03));
    border:
        1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
}

.overview-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(123, 97, 255, .16),
            transparent 60%);
    opacity: 0;
    transition: .35s;
}

.overview-item:hover::before {
    opacity: 1;
}

.overview-item strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.overview-item span {
    font-size: 13px;
    color:
        rgba(255, 255, 255, .55);
}

/* =========================================================
   CONTACT
========================================================= */
.about-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-contact-list a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 22px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    color:
        rgba(255, 255, 255, .78);
    transition: .35s;
    font-size: 15px;
    overflow: hidden;
    position: relative;
}

.about-contact-list a::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(123, 97, 255, .12),
            transparent);
    opacity: 0;
    transition: .35s;
}

.about-contact-list a:hover {
    transform:
        translateY(-4px);
    border-color:
        rgba(123, 97, 255, .35);
    color: #fff;
}

.about-contact-list a:hover::before {
    opacity: 1;
}

/* =========================================================
   TABLET
========================================================= */
@media(max-width:1200px) {
    .about-two-col {
        grid-template-columns: 1fr;
    }

    .about-right {
        position: relative;
        top: auto;
    }
}

@media(max-width:992px) {
    .akra-about {
        padding: 120px 0 100px;
    }

    .about-hero h1 {
        font-size: 58px;
    }

    .about-feature-card h2 {
        font-size: 52px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media(max-width:768px) {
    .about-hero {
        margin-bottom: 70px;
    }

    .about-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .about-hero p {
        font-size: 17px;
    }

    .about-card,
    .about-side-card {
        padding: 30px;
    }

    .about-feature-card,
    .about-media-card {
        min-height: auto;
    }

    .about-feature-card h2 {
        font-size: 40px;
        line-height: 1.05;
    }

    .about-feature-card p {
        font-size: 17px;
    }

    .about-card h2 {
        font-size: 34px;
    }

    .about-metric strong {
        font-size: 40px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media(max-width:576px) {
    .akra-about {
        padding: 100px 0 80px;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
