:root {
    --rose: #cd5d83;
    --teal: #51afa8;
    --yellow: #fff48f;
    --dark: #222222;
    --gray: #6b7280;
    --light: #f9f9f9;
    --white: #ffffff;
    --radius: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.nav-logo img {
    height: 44px;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose);
    transition: width 0.25s;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-cta {
    background: var(--rose);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.nav-cta:hover {
    background: #b8446e;
}

/* ── HERO ── */
.hero {
    background: var(--yellow);
    min-height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 48px 60px;
    position: relative;
    overflow: hidden;
}
.hero-swirl {
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 420px;
    opacity: 0.18;
    pointer-events: none;
}
.hero-dot-grid {
    position: absolute;
    left: 40px;
    top: 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    opacity: 0.25;
}
.hero-dot-grid span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose);
    display: block;
}
.hero-text {
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    display: inline-block;
    background: var(--rose);
    color: var(--white);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 18px;
}
.hero-title span {
    color: var(--rose);
}
.hero-sub {
    font-size: 17px;
    color: #444;
    font-weight: 600;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 32px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--rose);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.15s, background 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    background: #b8446e;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2.5px solid var(--dark);
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.15s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline:hover {
    transform: translateY(-2px);
}

/* Hero visual cards side */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 40px;
    position: relative;
    z-index: 2;
}
.campaign-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
    cursor: pointer;
}
.campaign-card:hover {
    transform: translateX(6px);
}
.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.icon-ckg {
    background: #fdeef4;
}
.icon-tbc {
    background: #e8f7f6;
}
.icon-rs {
    background: #fffbea;
}
.card-text h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}
.card-text p {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
}
.card-arrow {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--teal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ── KEY MESSAGES SECTION ── */
.key-messages {
    padding: 80px 48px;
    background: var(--white);
}
.section-label {
    text-align: center;
    margin-bottom: 12px;
}
.section-label span {
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.section-title {
    text-align: center;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    margin-bottom: 48px;
    color: var(--dark);
}
.section-title span {
    color: var(--rose);
}
.km-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.km-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}
.km-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}
.km-card-header {
    padding: 32px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.km-card-header.ckg {
    background: var(--rose);
}
.km-card-header.tbc {
    background: var(--teal);
}
.km-card-header.rs {
    background: var(--dark);
}
.km-num {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.km-icon-big {
    font-size: 40px;
}
.km-card-header h2 {
    font-size: 22px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
}
.km-card-body {
    background: white;
    padding: 24px 28px;
}
.km-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}
.km-tag {
    display: inline-block;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 800;
    margin: 0 4px 6px 0;
}
.tag-rose {
    background: #fdeef4;
    color: var(--rose);
}
.tag-teal {
    background: #e8f7f6;
    color: var(--teal);
}
.tag-yellow {
    background: var(--yellow);
    color: var(--dark);
}

/* ── ARTIKEL SECTION ── */
.artikel {
    padding: 0 48px 80px;
    background: var(--light);
}
.artikel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-top: 60px;
}
.artikel-header h2 {
    font-size: 26px;
    font-weight: 900;
}
.artikel-header h2 span {
    color: var(--rose);
}
.see-all {
    color: var(--teal);
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}
.artikel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.artikel-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s;
}
.artikel-card:hover {
    transform: translateY(-4px);
}
.artikel-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.artikel-body {
    padding: 18px 20px 22px;
}
.artikel-cat {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 8px;
}
.artikel-body h3 {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
}
.artikel-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}
.artikel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}
.artikel-meta span {
    font-size: 12px;
    color: #aaa;
    font-weight: 600;
}
.artikel-meta a {
    font-size: 12px;
    font-weight: 800;
    color: var(--teal);
    text-decoration: none;
}

/* ── STATS BANNER ── */
.stats {
    background: var(--rose);
    padding: 60px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item h3 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 6px;
}
.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: white;
    padding: 48px 48px 28px;
}
.footer-top {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-brand {
    flex: 1;
}
.footer-brand img {
    height: 38px;
    margin-bottom: 14px;
    /* filter: brightness(0) invert(1); */
}
.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--yellow);
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 8px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}
.footer-col a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}
.footer-partners {
    display: flex;
    gap: 16px;
    align-items: center;
}
.partner-badge {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 12px 20px;
    }
    .nav-links {
        display: none;
    }
    .hero {
        grid-template-columns: 1fr;
        padding: 48px 20px;
    }
    .hero-visual {
        padding-left: 0;
    }
    .km-grid {
        grid-template-columns: 1fr;
    }
    .artikel-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
    }
    .footer-top {
        flex-direction: column;
        gap: 28px;
    }
    .key-messages,
    .artikel {
        padding: 48px 20px;
    }
    footer {
        padding: 36px 20px 20px;
    }
}
@media (max-width: 560px) {
    .artikel-grid {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
    }
}
