/* =========================================
   Front Page – Highlights / Achievements
   ========================================= */

.fp-highlights {
    position: relative;
    padding: 5rem 0 6rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    overflow: hidden;
}

/* Dark overlay over the image */
.fp-highlights__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 12, 0.86) 0%, rgba(8, 16, 12, 0.78) 100%);
}

.fp-highlights__inner {
    position: relative;
    z-index: 1;
}

/* ── Header ────────────────────────────── */
.fp-highlights__header {
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.fp-highlights__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
}

.fp-highlights__eyebrow-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border: 2px dotted #2ecc71;
    border-radius: 50%;
    animation: spin-slow 8s linear infinite;
    flex-shrink: 0;
}

.fp-highlights__headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 0.5rem;
}

.fp-highlights__subtitle {
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    margin: 0;
}

/* ─────────────────────────────────────────
   TOP GRID: story | side
   ───────────────────────────────────────── */
.fp-highlights__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

/* ── Story (left column) ───────────────── */
.fp-highlights__story-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem;
}

.fp-highlights__story-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin: 0 0 1.75rem;
    max-width: 460px;
}

/* Video card */
.fp-highlights__video {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 12px 36px rgba(0,0,0,0.45);
    cursor: pointer;
}

.fp-highlights__video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.fp-highlights__video:hover img { transform: scale(1.04); }

.fp-highlights__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #2ecc71;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(46,204,113,0.25);
    transition: transform 0.25s ease;
}
.fp-highlights__video:hover .fp-highlights__play-btn { transform: translate(-50%, -50%) scale(1.08); }
.fp-highlights__play-btn svg { width: 26px; height: 26px; margin-left: 3px; }

/* ── Side (right column) ───────────────── */
.fp-highlights__checklist {
    background: rgba(20, 28, 24, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.75rem 1.75rem 1.5rem;
    margin-bottom: 2rem;
}

.fp-highlights__checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fp-highlights__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: rgba(255,255,255,0.92);
    font-size: 0.92rem;
    line-height: 1.55;
}

.fp-highlights__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2ecc71;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.fp-highlights__check svg { width: 12px; height: 12px; }

/* Impact block */
.fp-highlights__impact-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.85rem;
}

.fp-highlights__impact-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin: 0 0 1.5rem;
    max-width: 460px;
}

.fp-highlights__cta {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background: #ffffff;
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.fp-highlights__cta:hover {
    background: #2ecc71;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   CASE STUDY CARDS
   ───────────────────────────────────────── */
.fp-highlights__cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.fp-highlights__case {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
}
.fp-highlights__case:hover { transform: translateY(-4px); }

.fp-highlights__case-img {
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.fp-highlights__case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.fp-highlights__case:hover .fp-highlights__case-img img { transform: scale(1.05); }

.fp-highlights__case-tag {
    display: inline-block;
    background: #2ecc71;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 0.6rem;
}

.fp-highlights__case-title {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .fp-highlights__top { grid-template-columns: 1fr; gap: 2.5rem; }
    .fp-highlights__cases { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .fp-highlights { background-attachment: scroll; padding: 4rem 0 5rem; }
    .fp-highlights__cases { grid-template-columns: 1fr; }
}
