    :root {
      --cream: #F5F0E8;
      --ink: #1A1410;
      --rust: #C8922A;
      --rust-dark: #bd7c04;
      --warm-mid: #7A5C42;
      --gold: #D4A853;
      --gold-light: #EDD89A;
      --off-white: #FAF8F4;
      --border: rgba(26,20,16,0.1);
      --shadow: 0 8px 40px rgba(26,20,16,0.12);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 5vw;
      background: rgba(245,240,232,0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .3s;
    }
    .nav.scrolled { box-shadow: var(--shadow); }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--ink);
      text-decoration: none;
    }
    .nav-logo span { color: var(--rust); }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--rust);
      color: #fff;
      font-size: .85rem;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 100px;
      text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .nav-cta:hover { background: var(--rust-dark); transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 120px 5vw 80px;
      gap: 60px;
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute;
      right: -10vw;
      top: 50%;
      transform: translateY(-50%);
      width: 55vw;
      height: 55vw;
      max-width: 700px;
      max-height: 700px;
      background: radial-gradient(ellipse at 60% 40%, var(--gold-light) 0%, var(--cream) 70%);
      border-radius: 50%;
      z-index: 0;
      opacity: .6;
    }
    .hero-content { position: relative; z-index: 1; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold-light);
      color: var(--warm-mid);
      font-size: .78rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -.03em;
      color: var(--ink);
      margin-bottom: 24px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--rust);
    }
    .hero-desc {
      font-size: 1.05rem;
      color: var(--warm-mid);
      max-width: 480px;
      margin-bottom: 40px;
      font-weight: 400;
      line-height: 1.75;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--rust);
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      padding: 16px 32px;
      border-radius: 100px;
      text-decoration: none;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(194,74,43,.35);
    }
    .btn-primary:hover { background: var(--rust-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(194,74,43,.4); }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--ink);
      font-size: .95rem;
      font-weight: 500;
      text-decoration: none;
      border-bottom: 1.5px solid var(--ink);
      padding-bottom: 2px;
      transition: color .2s, border-color .2s;
    }
    .btn-secondary:hover { color: var(--rust); border-color: var(--rust); }

    .hero-visual {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .hero-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      animation: floatUp .8s ease both;
    }
    .hero-card:nth-child(2) { animation-delay: .12s; margin-left: 40px; }
    .hero-card:nth-child(3) { animation-delay: .24s; }
    @keyframes floatUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .card-label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--warm-mid);
      margin-bottom: 8px;
    }
    .card-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--ink);
    }
    .card-value span { color: var(--rust); }
    .stat-row { display: flex; gap: 24px; }
    .stat-item { flex: 1; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--rust);
      line-height: 1;
    }
    .stat-label { font-size: .82rem; color: var(--warm-mid); margin-top: 4px; }

    /* ── TICKER ── */
    .ticker-wrap {
      background: var(--ink);
      color: var(--cream);
      padding: 14px 0;
      overflow: hidden;
    }
    .ticker-inner {
      display: flex;
      width: max-content;
      animation: ticker 22s linear infinite;
    }
    .ticker-inner span {
      font-size: .85rem;
      font-weight: 500;
      white-space: nowrap;
      padding: 0 40px;
      letter-spacing: .02em;
    }
    .ticker-inner span::before { content: '✦'; margin-right: 40px; color: var(--gold); }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── SECTION SHARED ── */
    section { padding: 100px 5vw; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 16px;
    }
    .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--rust); }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -.02em;
      color: var(--ink);
    }
    .section-title em { font-style: italic; color: var(--rust); }

    /* ── LAYANAN ── */
    .layanan { background: var(--off-white); }
    .layanan-head { max-width: 560px; margin-bottom: 60px; }
    .layanan-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }
    .layanan-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px 28px;
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s;
      position: relative;
      overflow: hidden;
    }
    .layanan-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--rust), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }
    .layanan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .layanan-card:hover::before { transform: scaleX(1); }
    .layanan-icon {
      width: 52px; height: 52px;
      background: var(--cream);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }
    .layanan-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .layanan-desc { font-size: .9rem; color: var(--warm-mid); line-height: 1.7; }

    /* ── PROSES ── */
    .proses-head { max-width: 560px; margin-bottom: 60px; }
    .proses-steps {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 0;
      position: relative;
    }
    .proses-steps::before {
      content: '';
      position: absolute;
      top: 36px; left: 36px; right: 36px;
      height: 2px;
      background: linear-gradient(90deg, var(--rust), var(--gold));
      z-index: 0;
    }
    .proses-step {
      position: relative;
      z-index: 1;
      padding: 0 24px 40px;
      text-align: center;
    }
    .step-num {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      border: 4px solid var(--cream);
    }
    .proses-step:nth-child(odd) .step-num { background: var(--rust); }
    .step-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .step-desc { font-size: .85rem; color: var(--warm-mid); }

    /* ── KEUNGGULAN ── */
    .keunggulan { background: var(--ink); color: var(--cream); }
    .keunggulan .section-label { color: var(--gold); }
    .keunggulan .section-label::before { background: var(--gold); }
    .keunggulan .section-title { color: var(--cream); }
    .keunggulan-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 60px;
    }
    .keunggulan-list { display: flex; flex-direction: column; gap: 24px; }
    .keunggulan-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 24px;
      background: rgba(255,255,255,.05);
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.08);
      transition: background .3s;
    }
    .keunggulan-item:hover { background: rgba(255,255,255,.09); }
    .keunggulan-ico {
      width: 44px; height: 44px;
      background: var(--rust);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .keunggulan-text h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: #fff;
    }
    .keunggulan-text p { font-size: .88rem; color: rgba(245,240,232,.65); line-height: 1.65; }
    .keunggulan-showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .showcase-item {
      background: rgba(255,255,255,.06);
      border-radius: 16px;
      padding: 28px 20px;
      border: 1px solid rgba(255,255,255,.08);
      text-align: center;
    }
    .showcase-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--gold);
      display: block;
    }
    .showcase-label { font-size: .8rem; color: rgba(245,240,232,.55); margin-top: 6px; }
    .showcase-item.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }

    /* ── TESTIMONI ── */
    .testimoni { background: var(--off-white); }
    .testi-head { max-width: 560px; margin-bottom: 60px; }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }
    .testi-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px;
      border: 1px solid var(--border);
      box-shadow: 0 2px 20px rgba(26,20,16,.06);
      transition: transform .3s, box-shadow .3s;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
    .testi-quote {
      font-size: .95rem;
      color: var(--ink);
      line-height: 1.75;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testi-meta { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rust), var(--gold));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }
    .testi-name { font-weight: 600; font-size: .9rem; }
    .testi-role { font-size: .8rem; color: var(--warm-mid); }

    /* ── FAQ ── */
    .faq-head { max-width: 560px; margin-bottom: 60px; }
    .faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: #fff;
      border-radius: 16px;
      border: 1px solid var(--border);
      overflow: hidden;
      transition: box-shadow .2s;
    }
    .faq-item:hover { box-shadow: 0 4px 24px rgba(26,20,16,.08); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 28px;
      font-size: .95rem;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      text-align: left;
      font-family: inherit;
    }
    .faq-q svg { flex-shrink: 0; transition: transform .3s; }
    .faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .4s;
      padding: 0 28px;
      font-size: .9rem;
      color: var(--warm-mid);
      line-height: 1.75;
    }
    .faq-a.open { max-height: 300px; padding-bottom: 22px; }

    /* ── CTA AKHIR ── */
    .cta-final {
      background: linear-gradient(135deg, var(--rust) 0%, #8B2E1A 100%);
      color: #fff;
      text-align: center;
      padding: 120px 5vw;
      position: relative;
      overflow: hidden;
    }
    .cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-final-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
    .cta-final-badge {
      display: inline-block;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 100px;
      padding: 8px 20px;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .cta-final-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -.02em;
      margin-bottom: 20px;
    }
    .cta-final-desc {
      font-size: 1.05rem;
      opacity: .82;
      margin-bottom: 44px;
      line-height: 1.7;
    }
    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #fff;
      color: var(--rust);
      font-size: 1.05rem;
      font-weight: 700;
      padding: 18px 40px;
      border-radius: 100px;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 6px 30px rgba(0,0,0,.2);
    }
    .btn-wa:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
    .wa-icon { width: 26px; height: 26px; }

    .cta-wrapper{
      text-align:center;
      margin-top:20px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      color: rgba(245,240,232,.55);
      text-align: center;
      padding: 32px 5vw;
      font-size: .82rem;
    }
    footer a { color: var(--gold); text-decoration: none; }

    /* ── FLOATING WA BUTTON ── */
    .float-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(37,211,102,.45);
      transition: transform .2s, box-shadow .2s;
    }
    .float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
    .float-wa svg { width: 32px; height: 32px; }
    .float-wa-pulse {
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: #25D366;
      animation: pulse 2s ease infinite;
      z-index: -1;
    }
    @keyframes pulse {
      0%   { transform: scale(1); opacity: .6; }
      70%  { transform: scale(1.4); opacity: 0; }
      100% { transform: scale(1.4); opacity: 0; }
    }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; padding-top: 100px; gap: 40px; }
      .hero::after { display: none; }
      .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
      .keunggulan-inner { grid-template-columns: 1fr; gap: 48px; }
      .proses-steps::before { display: none; }
    }
    @media (max-width: 600px) {
      section { padding: 72px 5vw; }
      .hero { padding-bottom: 60px; }
      .keunggulan-showcase { grid-template-columns: 1fr 1fr; }
      .showcase-item.tall { grid-row: auto; }
      .proses-steps { grid-template-columns: 1fr 1fr; }
    }
