/* =========================================================
   ASCESA — stylesheet redesign (colorful)
   Ditulis ulang total, tanpa Bootstrap.
   ========================================================= */

:root {
    /* Palet warna */
    --violet: #6C2BD9;
    --violet-lt: #9B5DE5;
    --pink: #FF2E93;
    --orange: #FF8A00;
    --yellow: #FFD93D;
    --cyan: #00C2FF;
    --blue: #1E6BFF;
    --green: #12D18E;

    --ink: #14103A;
    --ink-soft: #55507A;
    --line: #EAE6FB;
    --bg: #FFFFFF;
    --bg-soft: #F7F5FF;

    --radius: 22px;
    --radius-sm: 16px;
    --shadow: 0 18px 40px -18px rgba(30, 16, 90, .35);
    --shadow-lg: 0 30px 70px -25px rgba(76, 29, 149, .45);
    --wrap: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 22px;
}

/* Gaya dasar semua ikon SVG */
.ic {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ikon dengan fill solid memakai presentation attribute langsung di <defs>,
   karena selector CSS tidak menembus shadow tree hasil <use> */

/* ---------- Navbar ---------- */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    /* Di atas hero: transparan + scrim tipis, biar menyatu dengan gradasi gelap */
    background: linear-gradient(180deg, rgba(11, 5, 33, .42) 0%, rgba(11, 5, 33, 0) 100%);
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

/* Setelah di-scroll (atau saat menu mobile terbuka) baru berubah jadi panel putih */
.nav.is-stuck,
.nav.is-open,
.nav--solid {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px -22px rgba(20, 16, 58, .5);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 74px;
}

.brand img {
    max-height: 48px;
    width: auto;
    /* Di atas hero gelap logo dijadikan putih supaya wordmark tetap terbaca */
    filter: brightness(0) invert(1);
    transition: filter .3s ease;
}

.nav.is-stuck .brand img,
.nav.is-open .brand img,
.nav--solid .brand img { filter: none; }

.nav__links { display: flex; align-items: center; gap: 6px; }

.nav__links a {
    position: relative;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: .93rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    transition: color .25s ease, background .25s ease;
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    transform: scaleX(0);
    transition: transform .28s ease;
}

.nav__links a:hover { color: #fff; background: rgba(255, 255, 255, .14); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: #fff; }

/* Versi terang: dipakai saat navbar sudah menempel / menu mobile terbuka */
.nav.is-stuck .nav__links a,
.nav.is-open .nav__links a,
.nav--solid .nav__links a { color: var(--ink-soft); }
.nav.is-stuck .nav__links a:hover,
.nav.is-open .nav__links a:hover,
.nav--solid .nav__links a:hover { color: var(--violet); background: rgba(108, 43, 217, .07); }
.nav.is-stuck .nav__links a.is-active,
.nav.is-open .nav__links a.is-active,
.nav--solid .nav__links a.is-active { color: var(--violet); }

.burger {
    display: none;
    width: 46px; height: 46px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--violet), var(--pink));
    cursor: pointer;
    padding: 0;
    place-items: center;
}

.burger span {
    display: block;
    width: 20px; height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

.nav.is-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .burger span:nth-child(2) { opacity: 0; }
.nav.is-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 130px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(1100px 600px at 12% 8%, #3D1D8F 0%, transparent 60%),
        radial-gradient(900px 700px at 88% 18%, #B3178C 0%, transparent 62%),
        radial-gradient(900px 600px at 60% 100%, #0C4BA8 0%, transparent 60%),
        linear-gradient(150deg, #2A0E63 0%, #170A45 55%, #26095C 100%);
    color: #fff;
    text-align: center;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    pointer-events: none;
    animation: float 16s ease-in-out infinite;
}

.blob--1 { width: 380px; height: 380px; top: -60px; left: -80px; background: var(--pink); }
.blob--2 { width: 320px; height: 320px; bottom: -70px; right: -60px; background: var(--cyan); animation-delay: -5s; }
.blob--3 { width: 260px; height: 260px; top: 40%; right: 18%; background: var(--orange); opacity: .38; animation-delay: -9s; }

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33%      { transform: translate3d(30px, -35px, 0) scale(1.08); }
    66%      { transform: translate3d(-25px, 25px, 0) scale(.94); }
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 78%);
    pointer-events: none;
}

.hero__inner { position: relative; z-index: 2; max-width: 940px; }

/* Hero versi halaman dalam: lebih pendek, tidak 100vh */
.hero--page { min-height: 0; padding: 168px 0 110px; }
.hero--page h1 { font-size: clamp(1.9rem, 4.8vw, 3.2rem); }
.hero--page .lead { margin-top: 16px; }

/* Halaman tanpa hero gelap: pakai <nav class="nav nav--solid"> + <body class="has-solid-nav"> */
.has-solid-nav { padding-top: 74px; }




.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 6.2vw, 4.3rem);
    line-height: 1.08;
    letter-spacing: -.02em;
    margin: 0;
}

.grad-warm {
    background: linear-gradient(100deg, var(--yellow) 0%, var(--orange) 45%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p.lead {
    font-size: clamp(1rem, 2.1vw, 1.28rem);
    color: rgba(255, 255, 255, .84);
    max-width: 660px;
    margin: 22px auto 0;
}

.hero__cta {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.02rem;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn--primary {
    color: #fff;
    background: linear-gradient(100deg, var(--pink) 0%, var(--orange) 100%);
    box-shadow: 0 16px 34px -12px rgba(255, 46, 147, .75);
}

.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -12px rgba(255, 138, 0, .8); }

.btn--ghost {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .06);
}

.btn--ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }

.wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; line-height: 0; }
.wave svg { width: 100%; height: 90px; display: block; }

/* ---------- Section umum ---------- */
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--bg-soft); }

.section--stripe {
    background:
        radial-gradient(700px 400px at 90% 0%, rgba(0, 194, 255, .14), transparent 60%),
        radial-gradient(600px 400px at 5% 100%, rgba(255, 46, 147, .12), transparent 60%),
        var(--bg);
}

.section__head { text-align: center; max-width: 720px; margin: 0 auto 54px; }

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    color: var(--violet);
    background: rgba(108, 43, 217, .1);
}

.section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.85rem, 4.2vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 16px 0 0;
}

.grad-cool {
    background: linear-gradient(100deg, var(--violet) 0%, var(--blue) 45%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Kartu fitur / layanan ---------- */
.card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 28px 32px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--c1), var(--c2));
}

.card::after {
    content: "";
    position: absolute;
    right: -70px; top: -70px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    opacity: .1;
    transition: transform .45s ease, opacity .45s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card:hover::after { transform: scale(1.35); opacity: .18; }

.card__icon {
    position: relative;
    width: 84px; height: 84px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    box-shadow: 0 14px 30px -14px var(--c2);
    transition: transform .35s ease;
}

.card:hover .card__icon { transform: translateY(-3px) rotate(-4deg); }

.card__icon .ic { width: 44px; height: 44px; }

.card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    margin: 0 0 10px;
    position: relative;
}

.card p { margin: 0; color: var(--ink-soft); font-size: .97rem; position: relative; }

/* ---------- Kartu paket ---------- */
.pack {
    position: relative;
    border-radius: var(--radius);
    padding: 34px 26px 30px;
    color: #fff;
    background: linear-gradient(160deg, var(--c1) 0%, var(--c2) 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.pack::after {
    content: "";
    position: absolute;
    left: -40px; bottom: -80px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    transition: transform .45s ease;
}

.pack:hover { transform: translateY(-12px) scale(1.02); box-shadow: var(--shadow-lg); }
.pack:hover::after { transform: scale(1.3); }

.pack__icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .3);
    margin-bottom: 18px;
    position: relative;
    color: #fff;
}

.pack__icon .ic { width: 32px; height: 32px; }

.pack h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 4px;
    position: relative;
}

.pack__speed {
    position: relative;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .88;
    margin: 0 0 18px;
}

.pack__price {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0;
}

.pack__price small { display: block; font-size: .82rem; font-weight: 500; opacity: .85; letter-spacing: 0; }

.pack__btn {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 22px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 700;
    background: #fff;
    color: var(--ink);
    transition: transform .25s ease, color .25s ease;
}

.pack__btn:hover { transform: translateY(-2px); color: var(--violet); }

/* ---------- Footer ---------- */
.footer {
    position: relative;
    background: #120C33;
    color: #fff;
    padding: 78px 0 32px;
}


.footer__top {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(0, 2.3fr);
    gap: 50px;
    align-items: start;
}

.footer__brand img {
    filter: brightness(0) invert(1);
    opacity: .92;
    max-height: 72px;
    width: auto;
    margin-bottom: 20px;
}

.footer__tag {
    color: rgba(255, 255, 255, .66);
    max-width: 330px;
    margin: 0 0 22px;
    font-size: .95rem;
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .93rem;
    color: #fff;
    background: linear-gradient(100deg, var(--pink), var(--orange));
    box-shadow: 0 14px 30px -14px rgba(255, 46, 147, .9);
    transition: transform .25s ease;
}

.footer__cta:hover { transform: translateY(-2px); }
.footer__cta .ic { width: 18px; height: 18px; }

.footer__info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
}

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

.info {
    align-self: start;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 22px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

.info:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .18);
    transform: translateY(-4px);
}

.info__icon {
    flex: 0 0 40px;
    width: 40px; height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--c1), var(--c2));
}

.info__icon .ic { width: 20px; height: 20px; }

.info__body { min-width: 0; flex: 1; }

.info__label {
    display: block;
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 5px;
}

.info__text {
    display: block;
    color: rgba(255, 255, 255, .9);
    font-size: .92rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

a.info__text { transition: color .25s ease; }
a.info__text:hover { color: var(--yellow); }

.footer__bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, .45);
    font-size: .86rem;
}

.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__bottom nav a { transition: color .25s ease; }
.footer__bottom nav a:hover { color: #fff; }

/* ---------- Tombol WhatsApp mengambang ---------- */
.wa-float {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 60;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #25D366, #12B457);
    box-shadow: 0 14px 30px -10px rgba(18, 180, 87, .8);
    color: #fff;
    transition: transform .25s ease;
}

.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.09); }

/* ---------- Animasi reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1);
}

.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsif ---------- */
@media (max-width: 1080px) {
    .footer__top { grid-template-columns: 1fr; gap: 38px; }
    .footer__info { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
    .footer__tag { max-width: 520px; }
}

@media (max-width: 992px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .burger { display: grid; }

    .nav__links {
        position: absolute;
        top: 74px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px 18px 22px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease;
    }

    .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
    .nav__links a { padding: 13px 16px; border-radius: var(--radius-sm); }
    .nav__links a::after { display: none; }

    .grid--3 { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
    .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
    .grid--4 { grid-template-columns: 1fr; }
    .footer__info { grid-template-columns: 1fr; }
    .hero { padding-top: 116px; }
    .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Animasi ikon SVG
   Sub-elemen diberi kelas sendiri, jadi tiap bagian ikon
   bisa dianimasikan terpisah (bukan seluruh ikon).
   ========================================================= */

.ic g,
.ic path,
.ic circle,
.ic rect { transform-box: view-box; }

/* Speedometer — jarum menyapu naik-turun */
.ic--speed .needle {
    transform-origin: 12px 17.6px;
    animation: needle 2.8s cubic-bezier(.5, .05, .3, 1) infinite;
}

@keyframes needle {
    0%, 100% { transform: rotate(-42deg); }
    35%      { transform: rotate(30deg); }
    50%      { transform: rotate(8deg); }
    70%      { transform: rotate(22deg); }
}

/* Label harga — berayun seperti tag tergantung */
.ic--tag .swing {
    transform-origin: 7.9px 7.9px;
    animation: swing 3.6s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(-8deg); }
    50%      { transform: rotate(8deg); }
}

/* Headset — mengangguk, earcup berkedip bergantian */
.ic--headset .nod {
    transform-origin: 12px 14px;
    animation: nod 3.4s ease-in-out infinite;
}

@keyframes nod {
    0%, 100% { transform: rotate(-5deg); }
    50%      { transform: rotate(5deg); }
}

.ic--headset .cup { animation: cup 1.8s ease-in-out infinite; }
.ic--headset .cup--r { animation-delay: .9s; }

@keyframes cup {
    0%, 100% { opacity: .4; }
    50%      { opacity: 1; }
}

/* Wifi — gelombang menyala berurutan */
.ic--wifi .w { animation: sig 2.1s ease-in-out infinite; }
.ic--wifi .w2 { animation-delay: .22s; }
.ic--wifi .w3 { animation-delay: .44s; }

@keyframes sig {
    0%, 62%, 100% { opacity: .2; }
    18%, 42%      { opacity: 1; }
}

/* Awan — melayang, panah data naik berulang */
.ic--cloud .drift { animation: drift 4.6s ease-in-out infinite; }

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(1px, -1.2px); }
}

.ic--cloud .up { animation: rise 2.6s ease-in-out infinite; }

@keyframes rise {
    0%        { opacity: 0; transform: translateY(2.5px); }
    25%, 65%  { opacity: 1; transform: translateY(0); }
    100%      { opacity: 0; transform: translateY(-2.5px); }
}

/* Perisai — centang digambar berulang */
.ic--shield .check {
    stroke-dasharray: 9;
    stroke-dashoffset: 9;
    animation: draw 3.4s ease-in-out infinite;
}

@keyframes draw {
    0%, 10%   { stroke-dashoffset: 9; }
    32%, 74%  { stroke-dashoffset: 0; }
    92%, 100% { stroke-dashoffset: 9; }
}

/* Roket — badan naik-turun, api berkedip */
.ic--rocket .bob { animation: bob 2.6s ease-in-out infinite; }

@keyframes bob {
    0%, 100% { transform: translateY(.7px); }
    50%      { transform: translateY(-1.4px); }
}

.ic--rocket .flame {
    transform-origin: 12px 17.6px;
    animation: flame .5s ease-in-out infinite alternate;
}

@keyframes flame {
    from { transform: scaleY(.7); opacity: .5; }
    to   { transform: scaleY(1.3); opacity: 1; }
}

/* Roket melesat saat kartu paket disentuh */
.pack:hover .ic--rocket .bob { animation-duration: .9s; }
.pack:hover .ic--rocket .flame { animation-duration: .25s; }

/* Denyut halus di tombol WhatsApp mengambang */
.wa-float { animation: waring 2.6s ease-out infinite; }

@keyframes waring {
    0%        { box-shadow: 0 14px 30px -10px rgba(18, 180, 87, .8), 0 0 0 0 rgba(37, 211, 102, .55); }
    70%, 100% { box-shadow: 0 14px 30px -10px rgba(18, 180, 87, .8), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* Hormati preferensi pengguna yang tidak ingin animasi */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    .ic--shield .check { stroke-dashoffset: 0; }
    .ic--wifi .w, .ic--headset .cup, .ic--cloud .up { opacity: 1; }
}

/* =========================================================
   Section Cakupan Wilayah & Tentang Kami
   ========================================================= */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.split--rev { grid-template-columns: 1.08fr .92fr; }

.split__text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
}

.split__text p {
    color: var(--ink-soft);
    margin: 0 0 16px;
}

/* Peta cakupan */
.map-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
}

.map-card img { width: 100%; height: auto; }

.map-pin {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(100deg, var(--violet), var(--pink));
    color: #fff;
    font-size: .78rem;
    white-space: nowrap;
    box-shadow: 0 10px 22px -8px rgba(108, 43, 217, .9);
    animation: pinbob 2.8s ease-in-out infinite;
}

.map-pin .ic { flex: 0 0 auto; }

@keyframes pinbob {
    0%, 100% { transform: translate(-50%, -50%); }
    50%      { transform: translate(-50%, calc(-50% - 5px)); }
}

/* Chip wilayah */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0 22px;
}

.chip {
    padding: 7px 15px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--violet);
    background: rgba(108, 43, 217, .09);
    border: 1px solid rgba(108, 43, 217, .16);
}

.btn--solid {
    padding: 14px 30px;
    color: #fff;
    background: linear-gradient(100deg, var(--violet), var(--blue));
    box-shadow: 0 16px 34px -14px rgba(108, 43, 217, .85);
}

.btn--solid:hover { transform: translateY(-3px); }

/* Poin ringkas di Tentang Kami */
.points {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 15px;
}

.points li { display: flex; gap: 13px; align-items: flex-start; }

.points li .ic {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    color: var(--violet);
}

.points li b { display: block; font-size: .99rem; }
.points li span { color: var(--ink-soft); font-size: .93rem; }

/* Foto */



@media (max-width: 900px) {
    .split,
    .split--rev { grid-template-columns: 1fr; gap: 34px; }

    .map-pin { font-size: .72rem; padding: 6px 11px; }
}

/* Panel identitas di section Tentang Kami */
.id-card {
    position: relative;
    border-radius: var(--radius);
    padding: 36px 32px;
    color: #fff;
    background: linear-gradient(150deg, var(--violet) 0%, #3B2BC4 45%, var(--blue) 100%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.id-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.id-card__logo {
    position: relative;
    max-height: 66px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
    margin-bottom: 20px;
}

.id-card__lead {
    position: relative;
    margin: 0 0 24px;
    font-size: 1rem;
    color: rgba(255, 255, 255, .86);
}

.id-card__list {
    position: relative;
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    gap: 15px;
}

.id-card__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .93rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .92);
}

.id-card__list .ic {
    flex: 0 0 auto;
    margin-top: 3px;
    opacity: .85;
}

.id-card__btn {
    position: relative;
    display: inline-flex;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    background: #fff;
    color: var(--violet);
    transition: transform .25s ease;
}

.id-card__btn:hover { transform: translateY(-2px); }

/* =========================================================
   Wave divider antar section
   SVG di-stretch penuh (preserveAspectRatio="none"), warnanya
   mengikuti --to = warna latar section berikutnya.
   ========================================================= */

.wave svg path:not(.wave__line) { fill: var(--to, #FFFFFF); }

/* section yang memakai wave butuh ruang bawah ekstra agar teks tidak tertimpa */
.section--wave { padding-bottom: 170px; }

.wave--footer svg { height: 110px; }

@media (max-width: 820px) {
    .wave svg { height: 55px; }
    .wave--footer svg { height: 70px; }
    .section--wave { padding-bottom: 118px; }
}
