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

/* =========================================================
   GRID BG
========================================================= */
.akra-why::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;
    pointer-events: none;
}

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

/* =========================================================
   HEADING
========================================================= */
.why-heading {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: auto;
    text-align: center;
    margin-bottom: 90px;
}

.why-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: 28px;
    font-size: 13px;
    letter-spacing: 3px;
    color:
        rgba(255, 255, 255, .72);
}

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

.why-heading h2 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 26px;
}

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

.why-heading p {
    font-size: 20px;
    line-height: 1.8;
    color:
        rgba(255, 255, 255, .68);
}

/* =========================================================
   GRID
   Desktop Layout:
   Row 1: Thailand Market Insight full width
   Row 2: Localization | KOL | Event
========================================================= */
.why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.why-wide {
    grid-column: 1 / -1;
}

.why-large {
    grid-column: auto;
}

/* =========================================================
   CARD
========================================================= */
.why-card {
    position: relative;
    min-height: 280px;
    padding: 38px;
    border-radius: 34px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: .4s;
    display: flex;
    flex-direction: column;
}

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

.why-card:hover {
    transform:
        translateY(-10px);
    border-color:
        rgba(123, 97, 255, .4);
    box-shadow:
        0 0 50px rgba(123, 97, 255, .16);
}

.why-card:hover::before {
    opacity: 1;
}

/* =========================================================
   TOP
========================================================= */
.why-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 34px;
}

.why-icon {
    width: 72px;
    height: 72px;
    min-width: 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);
}

.why-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, .75);
    white-space: nowrap;
}

/* =========================================================
   TEXT
========================================================= */
.why-card h3 {
    position: relative;
    z-index: 1;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 20px;
}

.why-card p {
    position: relative;
    z-index: 1;
    font-size: 17px;
    line-height: 1.8;
    color:
        rgba(255, 255, 255, .65);
}

.why-wide h3 {
    max-width: 980px;
    font-size: 42px;
}

.why-wide p {
    max-width: 980px;
}

/* =========================================================
   METRICS
========================================================= */
.why-metrics {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
}

.why-metric {
    flex: 1;
    min-width: 140px;
    padding: 24px;
    border-radius: 24px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
}

.why-metric strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

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

/* =========================================================
   PROGRESS
========================================================= */
.why-progress-wrapper {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 40px;
}

.why-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 14px;
}

.why-progress {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background:
        rgba(255, 255, 255, .08);
}

.why-progress-fill {
    width: 98%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(90deg,
            #7b61ff,
            #c084fc);
    box-shadow:
        0 0 20px rgba(123, 97, 255, .45);
}

/* =========================================================
   TABLET
========================================================= */
@media(max-width:1200px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-wide {
        grid-column: 1 / -1;
    }

    .why-card h3 {
        font-size: 32px;
    }

    .why-wide h3 {
        font-size: 38px;
    }
}

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

    .why-heading h2 {
        font-size: 48px;
    }
}

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

    .why-heading h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .why-heading p {
        font-size: 16px;
    }

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

    .why-wide,
    .why-large {
        grid-column: auto;
    }

    .why-card {
        padding: 30px;
        min-height: auto;
    }

    .why-card h3,
    .why-wide h3 {
        font-size: 30px;
    }

    .why-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .why-label {
        white-space: normal;
    }
}

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

    .why-heading h2 {
        font-size: 32px;
    }

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