/* =========================================================
   Saku Ajaib - Landing Page Styles
   ========================================================= */

:root {
    /* Warna brand */
    --primary: #f5a623;
    --primary-dark: #e8920f;
    --primary-light: #ffc759;

    /* Warna aksen tambahan */
    --biru: #2f6bff;
    --biru-soft: #eaf0ff;
    --ungu: #7c4dff;
    --ungu-soft: #f0eaff;
    --hijau: #1a9c5e;
    --hijau-soft: #e6f8ef;
    --pink: #ff5d8f;
    --pink-soft: #ffe9f0;

    /* Netral */
    --ink: #16162b;
    --ink-soft: #4a4a5e;
    --muted: #8a8a9a;
    --bg: #ffffff;
    --bg-alt: #fbf7f0;
    --line: #ececf0;

    --radius: 18px;
    --shadow-sm: 0 2px 10px rgba(22, 22, 43, .06);
    --shadow-md: 0 10px 34px rgba(22, 22, 43, .10);
    --shadow-lg: 0 22px 54px rgba(245, 166, 35, .22);
    --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn i { font-size: 14px; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; margin-top: auto; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.btn-primary:hover { box-shadow: 0 26px 60px rgba(245, 166, 35, .32); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-dark); }

.btn-light { background: #fff; color: var(--primary-dark); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: #fff; }

/* ---------- Pill / Badge ---------- */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(245, 166, 35, .12);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    margin-bottom: 18px;
}
.pill i { font-size: 12px; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.badge-ready { background: var(--hijau-soft); color: var(--hijau); }
.badge-soon { background: #fff1e0; color: var(--primary-dark); }

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand-logo { height: 36px; width: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; color: var(--ink-soft); font-size: 15px; transition: color .2s ease; }
.nav-links a:hover { color: var(--primary-dark); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 96px 0 84px;
    background:
        radial-gradient(circle at 12% 18%, rgba(245, 166, 35, .16), transparent 42%),
        radial-gradient(circle at 88% 8%, rgba(124, 77, 255, .12), transparent 40%),
        radial-gradient(circle at 70% 90%, rgba(47, 107, 255, .10), transparent 45%),
        var(--bg);
    overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; }
.blob-1 { width: 360px; height: 360px; background: var(--primary-light); top: -80px; left: -60px; }
.blob-2 { width: 320px; height: 320px; background: var(--ungu); bottom: -120px; right: -40px; opacity: .25; }
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center; }
.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 18px; color: var(--ink-soft); max-width: 640px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: inline-flex; align-items: center; gap: 16px; }
.hero-avatars { display: flex; }
.hero-avatars img {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: var(--shadow-sm);
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-trust-text { text-align: left; }
.hero-stars { color: var(--primary); font-size: 13px; letter-spacing: 1px; }
.hero-trust-text span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ---------- Partner Strip ---------- */
.partner-strip { padding: 38px 0; border-bottom: 1px solid var(--line); background: var(--bg); }
.partner-label { text-align: center; font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 22px; }
.partner-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.partner-item { display: inline-flex; align-items: center; gap: 10px; color: #9a9aab; font-weight: 700; font-size: 17px; transition: color .2s ease, transform .2s ease; }
.partner-item i { font-size: 22px; }
.partner-item:hover { color: var(--primary-dark); transform: translateY(-2px); }

/* ---------- Section ---------- */
.section { padding: 94px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 58px; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -.6px; margin-bottom: 16px; }
.section-desc { font-size: 17px; color: var(--ink-soft); }

/* ---------- Produk Grid ---------- */
.produk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.produk-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.produk-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--primary); }
.produk-card.aksen-biru::before { background: linear-gradient(90deg, var(--biru), #6ea0ff); }
.produk-card.aksen-ungu::before { background: linear-gradient(90deg, var(--ungu), #b39bff); }
.produk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(245, 166, 35, .4); }
.produk-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.produk-icon {
    width: 58px; height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    color: #fff;
}
.aksen-biru .produk-icon { background: linear-gradient(135deg, var(--biru), #6ea0ff); }
.aksen-ungu .produk-icon { background: linear-gradient(135deg, var(--ungu), #b39bff); }
.produk-nama { font-size: 27px; font-weight: 800; margin-bottom: 6px; }
.produk-tagline { font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.aksen-biru .produk-tagline { color: var(--biru); }
.aksen-ungu .produk-tagline { color: var(--ungu); }
.produk-deskripsi { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; }

.fitur-list { margin-bottom: 24px; display: flex; flex-direction: column; gap: 12px; }
.fitur-list.small { gap: 9px; margin-bottom: 0; }
.fitur-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink-soft); }
.fitur-list.small li { font-size: 14px; }
.fitur-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 11px;
    margin-top: 1px;
}
.aksen-biru .fitur-icon { background: var(--biru-soft); color: var(--biru); }
.aksen-ungu .fitur-icon { background: var(--ungu-soft); color: var(--ungu); }

/* Unggulan Box */
.unggulan-box {
    background: linear-gradient(135deg, var(--ungu-soft), #faf5ff);
    border: 1px solid rgba(124, 77, 255, .22);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
}
.unggulan-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--ungu); margin-bottom: 8px; }
.unggulan-box h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.unggulan-box p { font-size: 14px; color: var(--ink-soft); }

/* Pro Box */
.pro-box { background: var(--bg-alt); border: 1px dashed #d8c9a8; border-radius: 14px; padding: 20px; margin-bottom: 24px; }
.pro-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.pro-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 16px; font-weight: 700; color: var(--primary-dark); }
.pro-box p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }

/* ---------- Cara Kerja ---------- */
.langkah-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.langkah-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 28px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .25s ease;
}
.langkah-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.langkah-no {
    position: absolute;
    top: 18px; right: 22px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(245, 166, 35, .16);
    line-height: 1;
}
.langkah-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}
.langkah-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.langkah-card p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Statistik ---------- */
.stats-band { background: linear-gradient(135deg, #16162b, #2a2a4a); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat-card { text-align: center; color: #fff; }
.stat-icon {
    width: 58px; height: 58px;
    margin: 0 auto 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 23px;
    color: var(--primary-light);
    background: rgba(245, 166, 35, .14);
}
.stat-angka { display: block; font-size: 34px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 14px; color: #b9b9cc; }

/* ---------- Why Grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: transform .2s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-icon {
    width: 62px; height: 62px;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}
.why-1 .why-icon { background: var(--hijau-soft); color: var(--hijau); }
.why-2 .why-icon { background: var(--ungu-soft); color: var(--ungu); }
.why-3 .why-icon { background: #fff1e0; color: var(--primary-dark); }
.why-4 .why-icon { background: var(--biru-soft); color: var(--biru); }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Ulasan ---------- */
.ulasan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ulasan-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .25s ease;
}
.ulasan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ulasan-stars { color: var(--primary); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.ulasan-card blockquote { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
.quote-mark { color: var(--primary-light); margin-right: 4px; }
.ulasan-orang { display: flex; align-items: center; gap: 13px; }
.ulasan-foto { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.ulasan-nama { display: block; font-weight: 700; font-size: 15px; }
.ulasan-peran { display: block; font-size: 13px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 4px 22px;
    box-shadow: var(--shadow-sm);
    transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(245, 166, 35, .45); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    padding: 18px 0;
    font-weight: 600;
    font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--primary-dark); transition: transform .25s ease; font-size: 14px; }
.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer { padding: 0 0 20px; font-size: 15px; color: var(--ink-soft); }

/* ---------- CTA Band ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 78px 0;
    position: relative;
    overflow: hidden;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; color: #fff; }
.cta-icon {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: 28px;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.cta-inner p { font-size: 17px; opacity: .94; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #c9c9d4; padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 290px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: #d4d4de;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col a { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #c9c9d4; margin-bottom: 11px; transition: color .2s ease; }
.footer-col a i { width: 16px; color: var(--primary-light); }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 24px 0; }
.footer-bottom p { font-size: 13px; color: var(--muted); text-align: center; }

/* ---------- Maskot Karakter (Si Saku) ---------- */
.maskot {
    position: fixed;
    top: 0;
    left: 0;
    width: 92px;
    z-index: 55;
    cursor: pointer;
    display: block;
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}
.maskot-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 22px rgba(232, 146, 15, .4));
    animation: maskot-bob 3.6s ease-in-out infinite;
    transition: transform .25s ease;
}
.maskot:hover .maskot-svg,
.maskot:focus .maskot-svg,
.maskot.active .maskot-svg { transform: scale(1.12); animation-play-state: paused; }
.maskot .pupil { transition: transform .12s ease-out; }
.maskot-arm { transform-origin: 165px 124px; animation: maskot-wave 3.4s ease-in-out infinite; }

/* ---------- Ekspresi maskot ---------- */
/* default: sembunyikan semua varian, lalu tampilkan sesuai state */
.maskot .eyes-happy,
.maskot .eyes-wow,
.maskot .mouth-grin,
.maskot .mouth-ooh { display: none; }

.maskot.expr-idle  .eyes-normal { display: block; }
.maskot.expr-idle  .mouth-smile { display: block; }
.maskot.expr-idle  .eyes-happy, .maskot.expr-idle .eyes-wow,
.maskot.expr-idle  .mouth-grin, .maskot.expr-idle .mouth-ooh { display: none; }

.maskot.expr-hover .eyes-normal, .maskot.expr-hover .mouth-smile,
.maskot.expr-hover .eyes-wow, .maskot.expr-hover .mouth-ooh { display: none; }
.maskot.expr-hover .eyes-happy { display: block; }
.maskot.expr-hover .mouth-grin { display: block; }

.maskot.expr-fly   .eyes-normal, .maskot.expr-fly .mouth-smile,
.maskot.expr-fly   .eyes-happy, .maskot.expr-fly .mouth-grin { display: none; }
.maskot.expr-fly   .eyes-wow  { display: block; }
.maskot.expr-fly   .mouth-ooh { display: block; }

/* saat terbang: miring sesuai arah scroll, garis kecepatan muncul, bob mati */
.maskot.is-flying .maskot-svg {
    animation-play-state: paused;
    transform: rotate(var(--tilt, 0deg)) scale(1.05);
}
.maskot.is-flying .speed-lines { opacity: .85 !important; }
.maskot .speed-lines { transition: opacity .2s ease; }

/* saat ditarik: kursor grab & sedikit membesar */
.maskot { cursor: grab; }
.maskot.is-dragging { cursor: grabbing; }
.maskot.is-dragging .maskot-svg {
    animation-play-state: paused;
    transform: scale(1.16) rotate(-3deg);
    filter: drop-shadow(0 18px 28px rgba(232, 146, 15, .5));
}

.maskot-bubble {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px) scale(.6);
    transform-origin: bottom center;
    width: max-content;
    max-width: 230px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    padding: 10px 14px;
    border-radius: 14px;
    white-space: normal;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.maskot.active .maskot-bubble,
.maskot:hover .maskot-bubble,
.maskot:focus .maskot-bubble { opacity: 1; transform: translateX(-50%) translateY(-10px) scale(1); pointer-events: auto; }
.bubble-link {
    color: #1a9c5e;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid rgba(26, 156, 94, .35);
    white-space: nowrap;
}
.bubble-link:hover { border-bottom-color: #1a9c5e; }
.maskot-bubble::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #fff;
    border-bottom: 0;
}

@keyframes maskot-bob { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-6px) rotate(2deg); } }
@keyframes maskot-wave { 0%,100% { transform: rotate(0deg); } 25% { transform: rotate(-24deg); } 50% { transform: rotate(8deg); } 75% { transform: rotate(-16deg); } }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
    transition: transform .2s ease, box-shadow .2s ease;
}
.fab-wa i { font-size: 22px; }
.fab-wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 38px rgba(37, 211, 102, .55); }
.fab-wa::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid #25d366;
    animation: fab-ping 1.8s ease-out infinite;
}
@keyframes fab-ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .why-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ulasan-grid, .langkah-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .nav-links { display: none; }
    .produk-grid { grid-template-columns: 1fr; }
    .section { padding: 66px 0; }
    .stats-grid { gap: 30px 20px; }
    .maskot { width: 96px; top: 78px; right: 4%; }
    .maskot-bubble { font-size: 11px; padding: 6px 10px; }
    .fab-wa-text { display: none; }
    .fab-wa { padding: 16px; }
}
@media (max-width: 520px) {
    .why-grid, .stats-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .hero-actions, .cta-actions { flex-direction: column; }
    .hero-actions .btn, .cta-actions .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .hero-trust-text { text-align: center; }
    .maskot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .maskot, .maskot-arm-right, .fab-wa::before { animation: none; }
}
