
    :root {
      --color-bg: #F3F0E6;
      --color-text: #6A6456;
      --color-primary: #C49A5A;
      --color-border: #DCCFB8;
    }
    body {
      font-family: 'Libre Baskerville', serif;
      color: #6A6456;
      background-color: #F3F0E6;
      -webkit-font-smoothing: antialiased;
    }
    h1,h2,h3,h4,h5,h6 { font-family: 'Lora', serif; color: #3F3A33; }
    .no-scrollbar::-webkit-scrollbar { display: none; }
    .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
    .hero-overlay { background: linear-gradient(to bottom, rgba(63,58,51,0.35), rgba(63,58,51,0.15) 45%, rgba(63,58,51,0.7) 85%, rgba(63,58,51,0.85)); }
    .detail-image-overlay { background: linear-gradient(to top, rgba(63,58,51,0.3), transparent, transparent); }
    .nav-scrolled { background: rgba(243,240,230,0.85); backdrop-filter: blur(12px); border-color: #DCCFB8; }
    /* Menu mobile: backdrop solid agar link terbaca jelas, tidak tembus konten hero di belakangnya */
    #navbar.nav-open { background: #F3F0E6; border-color: #DCCFB8; box-shadow: 0 16px 36px -22px rgba(63,58,51,0.4); }
    .service-card:hover .service-icon { background-color: #C49A5A; color: #F3F0E6; }
    .stat-item { position: relative; }
    .stat-item:not(:last-child)::after { content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); height:48px; width:1px; background:#DCCFB8; }

    @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
    .animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
    .animate-delay-100 { animation-delay: 0.1s; }
    .animate-delay-200 { animation-delay: 0.2s; }
    .animate-delay-300 { animation-delay: 0.3s; }

    .scroll-animate { opacity:0; transform:translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
    .scroll-animate.visible { opacity:1; transform:translateY(0); }

    .testimonial-card { transition: border-color 150ms ease, box-shadow 150ms ease; }
    .testimonial-card:hover { border-color:#C49A5A; box-shadow:0 4px 12px rgba(0,0,0,0.06); }

    .toast { transform:translateY(100px); opacity:0; transition:all 0.4s ease; }
    .toast.show { transform:translateY(0); opacity:1; }

    /* ═══════════════════════════════════════════════
       BLOG CARD (menyusuianak.blogspot.com)
       ═══════════════════════════════════════════════ */

    .blog-card {
      display: flex; flex-direction: column;
      background: #FCFBF5;
      border: 1px solid #DCCFB8;
      border-radius: 0.5rem;
      overflow: hidden;
      position: relative;
      transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
    }
    .blog-card:hover { border-color: #C49A5A; box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .blog-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: #E7DFC6; }
    .blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .blog-card:hover .blog-card__media img { transform: scale(1.05); }
    .blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
    .blog-card__date { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: #C49A5A; }
    .blog-card__title { font-family: 'Lora', serif; font-size: 1.125rem; line-height: 1.3; color: #3F3A33; margin: 0.5rem 0 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .blog-card__excerpt { font-size: 0.875rem; color: #6A6456; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .blog-card__readmore { margin-top: 1rem; font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: #3F3A33; }
    .blog-card__link { position: absolute; inset: 0; z-index: 1; } /* overlay agar seluruh kartu clickable */

    /* Skeleton loading */
    .blog-skeleton { background: linear-gradient(90deg, #E7DFC6 25%, #F3F0E6 50%, #E7DFC6 75%); background-size: 200% 100%; animation: blogSkeleton 1.5s ease-in-out infinite; }
    @keyframes blogSkeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
    .blog-card--skeleton { pointer-events: none; }
    .blog-card--skeleton .blog-card__media,
    .blog-card__sk-line { background: linear-gradient(90deg, #E7DFC6 25%, #F3F0E6 50%, #E7DFC6 75%); background-size: 200% 100%; animation: blogSkeleton 1.5s ease-in-out infinite; }
    .blog-card__sk-line { height: 0.75rem; border-radius: 0.25rem; margin-bottom: 0.5rem; }

    /* Article body (render HTML Blogger di article.html) */
    .article-body { font-size: 1.05rem; line-height: 1.85; color: #6A6456; }
    .article-body h2 { font-family: 'Lora', serif; font-size: 1.5rem; color: #3F3A33; margin: 2.5rem 0 1rem; line-height: 1.3; }
    .article-body h3 { font-family: 'Lora', serif; font-size: 1.25rem; color: #3F3A33; margin: 2rem 0 0.75rem; line-height: 1.35; }
    .article-body p { margin-bottom: 1.25rem; }
    .article-body a { color: #C49A5A; text-decoration: underline; text-underline-offset: 3px; }
    .article-body img { max-width: 100%; height: auto; border-radius: 0.5rem; margin: 2rem 0; }
    .article-body blockquote { border-left: 4px solid #C49A5A; padding: 1rem 1.5rem; margin: 2rem 0; background: #FCFBF5; border-radius: 0 0.5rem 0.5rem 0; font-style: italic; color: #6A6456; }
    .article-body ul, .article-body ol { margin: 1.25rem 0; padding-left: 1.5rem; }
    .article-body ul li { list-style: disc; }
    .article-body ol li { list-style: decimal; }
    .article-body li { margin-bottom: 0.5rem; }
    .article-body table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
    .article-body th, .article-body td { border: 1px solid #DCCFB8; padding: 0.75rem 1rem; text-align: left; font-size: 0.9rem; }
    .article-body th { background: #E7DFC6; color: #3F3A33; }
    .article-body iframe { max-width: 100%; border-radius: 0.5rem; margin: 2rem 0; }

    .ig-embed-placeholder { text-align: center; padding: 4rem 2rem; }

    /* ═══════════════════════════════════════════════
       HERO ANIMATED — adaptasi gaya index2.html
       (palet & font mengikuti template index.html)
       ═══════════════════════════════════════════════ */
    .hero-anim { position:relative; overflow:hidden; background:
      radial-gradient(620px 420px at 86% 8%, rgba(196,154,90,.22), transparent 62%),
      radial-gradient(520px 400px at 6% 88%, rgba(220,207,184,.55), transparent 62%),
      var(--color-bg); }
    .hero-anim::before { content:""; position:absolute; inset:0; background-image:radial-gradient(rgba(63,58,51,.06) 1.3px, transparent 1.3px); background-size:24px 24px; -webkit-mask-image:radial-gradient(120% 90% at 50% 30%, #000 30%, transparent 80%); mask-image:radial-gradient(120% 90% at 50% 30%, #000 30%, transparent 80%); z-index:0; }
    .hero-blob { position:absolute; border-radius:50%; z-index:0; }
    .hero-blob.b1 { left:-130px; bottom:-90px; width:360px; height:360px; background:#E7DFC6; opacity:.7; }
    .hero-blob.b2 { left:38%; top:-90px; width:180px; height:180px; background:#C49A5A; opacity:.16; }
    .hero-arc { position:absolute; right:-150px; top:-150px; width:560px; height:560px; border:1.5px dashed rgba(196,154,90,.35); border-radius:50%; z-index:0; animation:spin 90s linear infinite; }
    .hero-arc::after { content:""; position:absolute; inset:60px; border:1.5px dashed rgba(196,154,90,.30); border-radius:50%; animation:spin 70s linear infinite reverse; }
    @keyframes spin { to { transform: rotate(360deg); } }
    .spark { position:absolute; z-index:1; pointer-events:none; color:#C49A5A; opacity:.85; }
    .spark svg { display:block; }
    .sp1 { top:14%; left:44%; width:22px; animation:floaty 6s ease-in-out infinite; }
    .sp2 { top:60%; left:6%; width:16px; animation:floaty 7s ease-in-out infinite .8s; color:#3F3A33; }
    .sp3 { top:30%; right:6%; width:18px; animation:floaty 5.4s ease-in-out infinite .4s; }
    .sp4 { bottom:18%; right:38%; width:14px; animation:floaty 6.6s ease-in-out infinite 1.1s; color:#3F3A33; }
    @keyframes floaty { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-14px) rotate(8deg)} }

    .hero-anim-inner { position:relative; z-index:5; display:grid; grid-template-columns:1.08fr .92fr; gap:50px; align-items:center; }
    .hero-copy { max-width:560px; }
    .hero-pill { display:inline-flex; align-items:center; gap:10px; background:#fff; border:2px solid #fff; border-radius:999px; padding:8px 16px 8px 12px; font:500 0.72rem 'IBM Plex Mono', monospace; letter-spacing:.06em; text-transform:uppercase; color:#3F3A33; box-shadow:0 12px 28px -16px rgba(63,58,51,.30); }
    .hero-pill .pdot { width:9px; height:9px; border-radius:50%; background:#C49A5A; position:relative; }
    .hero-pill .pdot::after { content:""; position:absolute; inset:-5px; border-radius:50%; border:2px solid #C49A5A; animation:ping 1.9s ease-out infinite; }
    @keyframes ping { 0%{transform:scale(.6);opacity:.9} 100%{transform:scale(1.8);opacity:0} }
    .hero-anim-title { font:600 clamp(2.5rem,5.6vw,4.1rem)/1.08 'Lora', serif; letter-spacing:-.014em; color:#3F3A33; margin:20px 0 0; }
    .hero-anim-title .line { display:block; }
    .hero-anim-title em { color:#C49A5A; font-style:italic; }
    .hero-anim-title .u-wrap { position:relative; display:inline-block; }
    .u-draw { position:absolute; left:0; right:0; bottom:-.12em; width:100%; height:.42em; overflow:visible; }
    .u-draw path { fill:none; stroke:#C49A5A; stroke-width:6; stroke-linecap:round; stroke-dasharray:340; stroke-dashoffset:340; animation:draw 1s ease 1.15s forwards; }
    @keyframes draw { to { stroke-dashoffset:0; } }
    .hero-anim-sub { font-size:1.08rem; color:#6A6456; margin:24px 0 30px; max-width:48ch; }
    .hero-cta { display:flex; flex-wrap:wrap; gap:14px; }
    .hero-trust { display:flex; align-items:center; gap:14px; margin-top:32px; }
    .hero-avatars { display:flex; }
    .hero-avatars span { width:38px; height:38px; border-radius:50%; border:3px solid #F3F0E6; margin-left:-10px; display:grid; place-items:center; font:600 0.7rem 'IBM Plex Mono',monospace; color:#fff; }
    .hero-avatars span:first-child { margin-left:0; }
    .hero-trust small { font:500 0.8rem 'IBM Plex Mono',monospace; color:#6A6456; }
    .hero-trust .stars { color:#A87E3E; letter-spacing:1px; font-size:.95rem; }

    /* load anim */
    .hero-lu { opacity:0; animation:fadeUp .9s cubic-bezier(.22,1,.36,1) forwards; animation-delay:var(--d,0s); }
    .hero-pop { animation:popIn 1s cubic-bezier(.22,1,.36,1) .35s backwards; }
    @keyframes popIn { from{opacity:0;transform:scale(.92) rotate(4deg)} to{opacity:1;transform:rotate(-1.5deg)} }

    /* portrait + slideshow */
    .hero-visual { position:relative; display:flex; justify-content:center; }
    .portrait-wrap { position:relative; max-width:430px; width:100%; }
    .portrait-back { position:absolute; inset:16px -12px -12px 16px; background:#E7DFC6; border-radius:230px 230px 30px 30px; opacity:.7; z-index:0; }
    .portrait { position:relative; z-index:2; border-radius:230px 230px 30px 30px; overflow:hidden; border:8px solid #fff; box-shadow:0 26px 54px -26px rgba(63,58,51,.36); aspect-ratio:4/5; transform:rotate(-1.5deg); }
    .portrait .slides { position:absolute; inset:0; }
    .portrait .slides img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transform:scale(1.06); transition:opacity 1.4s ease; }
    .portrait .slides img.active { opacity:1; animation:kenburns 8s ease-out forwards; }
    @keyframes kenburns { from { transform:scale(1.06); } to { transform:scale(1.18); } }
    .chip { position:absolute; z-index:4; background:#fff; border-radius:16px; padding:10px 14px; box-shadow:0 26px 54px -26px rgba(63,58,51,.36); display:flex; align-items:center; gap:9px; font:500 0.78rem 'IBM Plex Mono',monospace; color:#3F3A33; white-space:nowrap; }
    .chip .ic { width:30px; height:30px; border-radius:10px; display:grid; place-items:center; flex:none; background:rgba(196,154,90,.16); }
    .chip-b .ic { background:rgba(63,58,51,.08); }
    .chip-a { top:9%; left:-26px; animation:floaty 5.6s ease-in-out infinite; }
    .chip-b { top:46%; right:-30px; animation:floaty 6.4s ease-in-out infinite .6s; }

    /* ═══════════════════════════════════════════════
       PROSES — HOW IT WORKS (animated)
       ═══════════════════════════════════════════════ */
    .proc-wrap { position:relative; }
    /* garis penghubung antar tahap (desktop) */
    .proc-connector { display:none; }
    @media (min-width:768px){
      .proc-connector {
        display:block; position:absolute; top:34px; left:12.5%; right:12.5%;
        height:2px; background:rgba(220,207,184,.18); border-radius:2px; z-index:0;
      }
      /* cahaya yang mengalir dari tahap 1 ke tahap 4 */
      .proc-connector::after {
        content:''; position:absolute; top:-2px; left:0; width:38px; height:6px;
        border-radius:6px; background:linear-gradient(90deg, transparent, #C49A5A 40%, #fff);
        animation: procFlow 5.6s cubic-bezier(.45,0,.25,1) infinite;
      }
    }
    @keyframes procFlow {
      0% { left:0; opacity:0; }
      6% { opacity:1; }
      50% { opacity:1; }
      56% { opacity:0; }
      100% { left:100%; opacity:0; }
    }
    /* kartu tahap */
    .proc-step { position:relative; z-index:1; }
    .proc-badge {
      position:relative; width:68px; height:68px; margin:0 auto 1.15rem;
      border-radius:50%; display:grid; place-items:center;
      background:rgba(63,58,51,.55); border:2px solid rgba(196,154,90,.35);
      color:#C49A5A; transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
    }
    .proc-badge .proc-num {
      position:absolute; top:-6px; right:-6px; width:24px; height:24px;
      border-radius:50%; background:#C49A5A; color:#3F3A33;
      font:700 .68rem 'IBM Plex Mono',monospace; display:grid; place-items:center;
      box-shadow:0 4px 10px rgba(0,0,0,.25);
    }
    .proc-step:hover .proc-badge { transform:translateY(-6px); border-color:#C49A5A; box-shadow:0 14px 30px -12px rgba(196,154,90,.45); background:rgba(196,154,90,.15); }
    /* denyut berurutan: tiap badge menyala bergiliran mengikuti alur tahap */
    .proc-step .proc-badge { animation: procPulse 5.6s ease-in-out infinite; }
    .proc-step:nth-child(1) .proc-badge { animation-delay:0s; }
    .proc-step:nth-child(2) .proc-badge { animation-delay:1.4s; }
    .proc-step:nth-child(3) .proc-badge { animation-delay:2.8s; }
    .proc-step:nth-child(4) .proc-badge { animation-delay:4.2s; }
    @keyframes procPulse {
      0%, 100% { box-shadow:0 0 0 0 rgba(196,154,90,0); border-color:rgba(196,154,90,.35); background:rgba(63,58,51,.55); }
      12%, 22% { box-shadow:0 0 0 8px rgba(196,154,90,.14), 0 10px 26px -10px rgba(196,154,90,.5); border-color:#C49A5A; background:rgba(196,154,90,.16); }
      32% { box-shadow:0 0 0 0 rgba(196,154,90,0); border-color:rgba(196,154,90,.35); background:rgba(63,58,51,.55); }
    }
    .badge-rot { position:absolute; z-index:5; left:-16px; bottom:34px; width:104px; height:104px; animation:floaty 7s ease-in-out infinite .3s; }
    .badge-rot svg { width:100%; height:100%; animation:spin 20s linear infinite; }
    .badge-rot .center { position:absolute; inset:0; display:grid; place-items:center; }
    .badge-rot .center iconify-icon { color:#C49A5A; }
    .hero-scroll-cue { position:absolute; left:50%; bottom:24px; transform:translateX(-50%); z-index:6; display:flex; flex-direction:column; align-items:center; gap:8px; color:#8a8373; font:500 0.68rem 'IBM Plex Mono',monospace; letter-spacing:.12em; text-transform:uppercase; }
    .hero-scroll-cue .mouse { width:24px; height:38px; border:2.5px solid #8a8373; border-radius:14px; position:relative; }
    .hero-scroll-cue .mouse::after { content:""; position:absolute; left:50%; top:7px; width:4px; height:7px; border-radius:3px; background:#C49A5A; transform:translateX(-50%); animation:wheel 1.6s ease-in-out infinite; }
    @keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }

    @media (max-width:980px){
      .hero-anim-inner { grid-template-columns:1fr; gap:64px; }
      .hero-copy { max-width:none; text-align:center; margin-inline:auto; }
      .hero-cta, .hero-trust { justify-content:center; }
      .hero-visual { order:-1; }
    }
    @media (max-width:680px){
      .chip-a { left:-8px; }
      .chip-b { right:-8px; }
      .hero-scroll-cue { display:none; }
    }
    @media (prefers-reduced-motion: reduce){
      .hero-anim *, .hero-anim *::before, .hero-anim *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
      .hero-lu, .portrait .slides img { opacity:1 !important; transform:none !important; }
      .u-draw path { stroke-dashoffset:0 !important; }
      .proc-connector::after, .proc-step .proc-badge { animation:none !important; }
    }
  