  :root {
    --gold:      #F2B705;
    --gold-dark: #C9920A;
    --brown:     #5A3825;
    --brown-l:   #7A5235;
    --bg:        #ffffff;
    --b2b-bg:    #EFF6FF;
    --b2b-border:#BFDBFE;
    --b2b-text:  #1D4ED8;
    --b2b-icon:  #2563EB;
    color-scheme: light;
  }

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

  body {
    font-family:
      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans",
      "Helvetica Neue", sans-serif;
    background: var(--bg);
    color: #3a2c0a;
    text-align: center;
    padding: 40px 1rem 2rem;
    line-height: 1.6;
  }

  a { text-decoration: none; }

  .reg {
    vertical-align: super;
    font-size: 0.5em;
    margin-left: 2px;
  }

  .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  /* ── LOGO ── */
  .logo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
  }

  /* ── NAME ── */
  .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--brown);
  }

  /* ── TAGLINE ── */
  .tagline {
    font-size: 13px;
    color: #6b4b36;
    margin-bottom: 6px;
  }

  /* ── TRUST PILLS ── */
  /* REVISI: trust signal dijadikan pill-badge yang bisa diklik,
    bukan plain text. Uji Lab SNI sekarang linkable ke legal.* */
  .trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 20px;
  }

  .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: opacity .2s;
  }

  .trust-pill:hover { opacity: .8; }

  .trust-pill.halal {
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #BBF7D0;
  }

  .trust-pill.sni {
    background: #FFF7ED;
    color: #9A3412;
    border: 1px solid #FDBA74;
  }

  .trust-pill.izin {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
  }

  /* ── MAIN LINKS ── */
  .links {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 350px;
    margin: 0 auto 8px;
  }

  .links a {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform .15s, opacity .15s;
    text-align: left;
  }

  .links a:hover {
    transform: translateY(-2px);
    opacity: .92;
  }

  /* WA — tetap gold, primary CTA */
  .wa {
    background: #25D366;
    color: #fff;
    border: none;
    justify-content: center;
    font-size: 15px !important;
  }

  .wa i { font-size: 18px; }

  /* REVISI: B2B button mendapat visual berbeda — biru, bukan sama
    dengan link edukasi. Ditambah sub-label dan ikon berbeda. */
  .b2b-link {
    background: var(--b2b-bg);
    color: var(--b2b-text);
    border: 1.5px solid var(--b2b-text);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: .9rem 1.25rem;
  }

  .b2b-link .b2b-top {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: 14px;
    font-weight: 700;
    color: var(--b2b-text);
  }

  .b2b-link .b2b-top i { color: var(--b2b-icon); }

  .b2b-sub {
    font-size: 11px;
    font-weight: 400;
    color: #2D2D2D;
    padding-left: 1.9rem;
    line-height: 1.3;
  }

  /* Edukasi — tetap netral seperti semula */
  .edu-link {
    background: #fff;
    color: #d97706;
    border: 1px solid #3a2c0a;
    justify-content: center;
  }

  .edu-link i { color: #d97706; }

  /* ── DIVIDER ── */
  .divider {
    width: 40px;
    height: 1px;
    background: #e0c97a;
    margin: 16px auto;
    opacity: .6;
  }

  /* ── MARKETPLACE ── */
  .links-mp { margin-bottom: 20px; }

  .mp-label {
    font-size: 12px;
    font-weight: 600;
    color: #967a60;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
  }

  .mp-label span { color: #c9060c; }

  .mp-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }

  .mp-icons a {
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .15s, opacity .15s;
  }

  .mp-icons a:hover { transform: translateY(-2px); opacity: .88; }

  .mp-icons img {
    height: 68px;
    width: auto;
    display: block;
  }

  /* ── SOCIAL ── */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0 20px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid #dbdbdb;
    border-radius: 25%;
    color: #262626;
    transition: transform .15s, background .15s;
  }

  .social-icons a:hover {
    /*background: var(--brown);
    color: #fff;*/
    border-color: #b0b0b0;
    transform: translateY(-2px);
  }

  .social-icons i { font-size: 14px; }

  /* ── FOOTER ── */
  .footer {
    margin-top: 8px;
    font-size: 12px;
    color: #8e8e8e;
  }

  .footer a {
    text-decoration: none;
    color: #8e8e8e;
  }

  .footer small {
    font-size: 10px;
    color: #b0b0b0;
    display: block;
    margin-top: 4px;
  }

  /* ── DESKTOP ── */
  @media (min-width: 429px) {
    body {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding-top: 40px;
      min-height: 100vh;
    }

    .container { max-width: 400px; }

    .logo { width: 96px; height: 96px; }
    .name { font-size: 20px; }
    .tagline { font-size: 14px; }

    .social-icons a {
      width: 36px;
      height: 36px;
    }
  }

  /* ── DARK MODE ── */
  @media (prefers-color-scheme: dark) {
    :root {
      --b2b-bg:     #1E3A5F;
      --b2b-border: #2563EB;
      --b2b-text:   #93C5FD;
      --b2b-icon:   #60A5FA;
    }

    body { background: #0D0D0D; color: #f0e8d8; }

    .name { color: #f0e8d8; }
    .tagline { color: #b09070; }

    .trust-pill.halal { background: #14532D; color: #86EFAC; border-color: #166534; }
    .trust-pill.sni   { background: #431407; color: #FDBA74; border-color: #9A3412; }
    .trust-pill.izin  { background: #1E3A5F; color: #93C5FD; border-color: #1D4ED8; }

    .links a.edu-link {
      background: #1a1208;
      border-color: #4a3818;
      color: #f0e8d8;
    }

    .edu-link i { color: #F2B705; }

    .wa { background: #D4A004; }

    .mp-label { color: #b09070; }

    .social-icons a {
      background: #1a1208;
      border-color: #3a2818;
      color: #f0e8d8;
    }

    .social-icons a:hover {
      background: var(--gold-dark);
      border-color: var(--gold-dark);
      color: #fff;
    }

    .divider { background: #4a3818; }
    .footer, .footer a { color: #6a6a6a; }
    .mp-label span { color: #E05555; }
  }

  .powered {
    font-size: 0.5rem !important;
    color: #888;
    display: block;
    margin-top: 0.5rem;
  }

  .powered a {
    font-size: inherit;
  }