
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; -webkit-text-size-adjust: 100%; }
    svg[aria-hidden="true"] { display: inline-block; vertical-align: -0.125em; flex-shrink: 0; }
    body {
      background: #E8E8E8;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      min-height: 100vh;
      padding: 0;
      font-family: 'Inter', sans-serif;
    }

    :root {
      --navy:       #1B2A4A;
      --navy-deep:  #0E1A2E;
      --navy-mid:   #243660;
      --gold:       #C9A84C;
      --gold-light: #E8D08A;
      --gold-dim:   rgba(201,168,76,0.18);
      --gold-border:rgba(201,168,76,0.25);
      --cream:      #F7F7F7;
      --white:      #FFFFFF;
      --text:       #1A1A1A;
      --muted:      #6B7280;
      --border-soft:rgba(27,42,74,0.1);
      --graphite:   #3E4757;
      --graphite-deep: #2A323D;
      --ivory:      #FBF7EC;
      --ivory-deep: #F3EAD3;
      --ff-display: 'Playfair Display', Georgia, serif;
      --ff-body:    'Inter', system-ui, sans-serif;
      --ff-logo:    'Poppins', 'Inter', system-ui, sans-serif;
      --r-card:     14px;
      --r-pill:     100px;
    }

    .phone {
      width: 390px;
      min-height: 100vh;
      background: var(--cream);
      position: relative;
      overflow-x: hidden;
      padding-bottom: 80px; 
    }

    @media (max-width: 420px) {
      body { background: var(--cream); }
      .phone { width: 100%; }
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(247,247,247,0.93);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 0.5px solid var(--gold-border);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-wrap { display: flex; align-items: center; gap: 9px; }

    .logo-mark {
      width: 33px; height: 33px;
      background: var(--navy);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
    }
    .logo-mark::after {
      content: '';
      width: 14px; height: 14px;
      border: 2px solid var(--gold);
      border-radius: 2px;
      transform: rotate(45deg);
      display: block;
    }
    .logo-mark img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    .logo-text {
      font-family: var(--ff-logo); 
      font-size: 16px; font-weight: 700;
      color: var(--navy); letter-spacing: 0.02em;
      text-transform: uppercase;
    }
    .logo-text span { color: var(--navy); }

    .header-actions { display: flex; gap: 10px; }

    .icon-btn {
      width: 35px; height: 35px;
      border-radius: 11px;
      border: 0.5px solid var(--gold-border);
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--navy); font-size: 17px;
      transition: background 0.15s;
    }
    .icon-btn:hover { background: var(--cream); }

    .event-hero {
      position: relative;
      background: var(--navy-deep);
      overflow: hidden;
    }

    .event-badges {
      position: absolute; top: 16px; left: 20px; right: 20px;
      display: flex; justify-content: space-between; align-items: center;
      z-index: 5;
      pointer-events: none;
    }
    .event-badges > * { pointer-events: auto; }

    @keyframes badgeBlink {
      0%, 100% { opacity: 1; }
      50%      { opacity: 0.4; }
    }
    .badge-blink { animation: badgeBlink 1.6s ease-in-out infinite; }

    .badge {
      font-family: var(--ff-body);
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 4px 12px; border-radius: var(--r-pill);
    }
    .badge-gold { background: var(--gold); color: var(--navy-deep); }
    .badge-gold-hero { background: #FFFFFF; color: #1A1A1A; }
    .badge-glass {
      background: rgba(255,255,255,0.1);
      border: 0.5px solid rgba(255,255,255,0.25);
      color: #fff;
    }

    .event-poster {
      width: 100%; height: 300px;
      object-fit: cover; display: block;
      opacity: 0.5;
    }

    .event-poster-placeholder {
      width: 100%; height: 300px;
      background: linear-gradient(140deg, #1B2A4A 0%, #2d4270 45%, #162238 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 10px;
    }
    .event-poster-placeholder i {
      font-size: 44px; color: var(--gold); opacity: 0.5; display: block;
    }
    .event-poster-placeholder span {
      font-size: 11px; color: rgba(201,168,76,0.35);
      letter-spacing: 0.12em; text-transform: uppercase;
    }

    .event-overlay {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
      background: linear-gradient(to top,
        rgba(10,15,28,0.97) 0%,
        rgba(10,15,28,0.8) 60%,
        transparent 100%);
      padding: 18px 20px 14px; 
    }
    .event-overlay .eyebrow { margin-top: 0; }

    .eyebrow {
      font-family: var(--ff-body);
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 6px;
    }

    .event-title {
      font-family: var(--ff-display);
      font-size: 19px; font-weight: 600;
      color: #fff; line-height: 1.3; margin-bottom: 12px;
    }

    .event-speaker { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
    .speaker-avatar {
      width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
      background: rgba(255,255,255,0.08);
      border: 0.5px solid rgba(201,168,76,0.45);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-light); font-size: 14px;
    }
    .speaker-info { line-height: 1.35; }
    .speaker-name { font-size: 11.5px; font-weight: 600; color: #fff; }
    .speaker-role { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 1px; }

    .event-meta { display: flex; gap: 14px; margin-bottom: 16px; }
    .meta-item {
      display: flex; align-items: center; gap: 5px;
      font-size: 11px; color: rgba(255,255,255,0.65);
    }
    .meta-item i { font-size: 13px; color: var(--gold-light); }

    .btn-row { display: flex; gap: 10px; margin-top: 4px; }

    .btn-gold {
      flex: 1;
      background: var(--gold); color: var(--navy-deep);
      border: none; padding: 11px 16px;
      border-radius: 9px; font-size: 12px; font-weight: 600;
      font-family: var(--ff-body); cursor: pointer;
      letter-spacing: 0.04em; text-align: center;
      transition: opacity 0.15s;
    }
    .btn-gold:hover { opacity: 0.88; }

    .btn-outline {
      flex: 1;
      background: transparent; color: #fff;
      border: 0.5px solid rgba(255,255,255,0.3);
      padding: 11px 16px; border-radius: 9px;
      font-size: 12px; font-weight: 500;
      font-family: var(--ff-body); cursor: pointer; text-align: center;
      transition: background 0.15s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.07); }

    .stats-bar {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: rgba(27,42,74,0.1);
      margin: 0; border-bottom: 0.5px solid var(--gold-border);
    }
    .stat-cell {
      background: var(--white);
      padding: 14px 8px; text-align: center;
    }
    .stat-num {
      font-family: var(--ff-display);
      font-size: 22px; font-weight: 700;
      color: var(--navy); line-height: 1; margin-bottom: 3px;
    }
    .stat-num span { color: var(--gold); }
    .stat-lbl {
      font-size: 9px; font-weight: 600;
      color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
    }

    .section { padding: 28px 20px 0; }
    #eventHero + .section { padding-top: 18px; }
    .section-hd {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 14px;
    }
    .section-hd .see-all {
      padding-bottom: 2px;
    }
    .section-title {
      font-family: var(--ff-display);
      font-size: 19px; font-weight: 600;
      color: var(--navy); line-height: 1.2;
    }
    .see-all {
      font-size: 11px; font-weight: 500; color: var(--gold);
      display: flex; align-items: center; gap: 3px; cursor: pointer;
      text-decoration: none;
    }

    .gold-rule {
      height: 0.5px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.45), transparent);
      margin: 26px 20px 0;
    }

    .featured-card {
      margin: 0 20px;
      background: var(--navy);
      border-radius: var(--r-card);
      overflow: hidden; position: relative;
    }
    .featured-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    .fc-orb {
      position: absolute; border-radius: 50%;
      pointer-events: none;
    }
    .fc-orb-1 {
      width: 160px; height: 160px;
      background: rgba(201,168,76,0.06);
      top: -50px; right: -40px;
    }
    .fc-orb-2 {
      width: 100px; height: 100px;
      background: rgba(201,168,76,0.04);
      bottom: -30px; left: 10px;
    }

    .fc-cover {
      width: 100%; height: 148px;
      background: linear-gradient(135deg, #243660 0%, #1a2d52 100%);
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }

    .fc-cover-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 7px; padding: 18px; width: 100%; opacity: 0.45;
    }
    .gc { background: rgba(201,168,76,0.22); border-radius: 5px; border: 0.5px solid rgba(201,168,76,0.15); }
    .gc-tall { height: 56px; }
    .gc-mid  { height: 40px; }
    .gc-sm   { height: 28px; }

    .fc-badge {
      position: absolute; top: 12px; right: 12px;
      background: var(--gold); color: var(--navy-deep);
      font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 3px 9px; border-radius: 4px;
    }

    .fc-body { padding: 18px 20px 20px; position: relative; z-index: 1; }

    .fc-brand {
      font-size: 9px; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 4px;
    }
    .fc-title {
      font-family: var(--ff-display);
      font-size: 16px; font-weight: 600;
      color: #fff; line-height: 1.3; margin-bottom: 8px;
      white-space: nowrap;
    }
    .fc-desc {
      font-size: 12px; color: rgba(255,255,255,0.55);
      line-height: 1.65; margin-bottom: 14px;
    }

    .fc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
    .tag {
      font-size: 10px; font-weight: 500;
      padding: 3px 10px; border-radius: 4px;
      border: 0.5px solid rgba(201,168,76,0.3);
      color: rgba(201,168,76,0.9);
    }

    .fc-cta { display: flex; align-items: center; justify-content: space-between; }

    .btn-gold-sm {
      background: var(--gold); color: var(--navy-deep);
      border: none; padding: 10px 20px;
      border-radius: 8px; font-size: 12px; font-weight: 600;
      font-family: var(--ff-body); cursor: pointer;
      transition: opacity 0.15s;
    }
    .btn-gold-sm:hover { opacity: 0.88; }

    .btn-ghost {
      font-size: 11px; color: rgba(255,255,255,0.45);
      display: flex; align-items: center; gap: 4px; cursor: pointer;
    }

    .cards-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px; padding: 14px 20px 0;
    }

    .svc-card {
      background: var(--white);
      border-radius: var(--r-card);
      border: 0.5px solid var(--border-soft);
      overflow: hidden; cursor: pointer;
      transition: transform 0.15s;
    }
    .svc-card:hover { transform: translateY(-2px); }

    .svc-cover {
      height: 74px;
      display: flex; align-items: center; justify-content: center;
    }
    .svc-cover i { font-size: 30px; opacity: 0.8; color: var(--gold-light); display: block; }

    .svc-body { padding: 11px 13px 13px; }
    .svc-brand {
      font-size: 8px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 2px;
    }
    .svc-title {
      font-family: var(--ff-display);
      font-size: 12.5px; font-weight: 600;
      color: var(--navy); line-height: 1.3; margin-bottom: 4px;
    }
    .svc-desc { font-size: 10px; color: var(--muted); line-height: 1.5; }
    .svc-cta { margin-top: 9px; }
    .btn-svc-detail {
      width: 100%;
      background: var(--gold); color: var(--navy-deep);
      border: none; padding: 7px 10px;
      border-radius: 6px; font-size: 10px; font-weight: 600;
      font-family: var(--ff-body); cursor: pointer;
      transition: opacity 0.15s;
    }
    .btn-svc-detail:hover { opacity: 0.88; }

    .tmpl-wrap { margin: 0 20px; }

    .tmpl-card {
      background: var(--navy-deep);
      border-radius: var(--r-card);
      overflow: hidden; position: relative;
    }
    .tmpl-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    .tmpl-hd {
      padding: 20px 20px 16px;
      border-bottom: 0.5px solid rgba(201,168,76,0.12);
    }
    .tmpl-eyebrow {
      font-size: 9px; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 4px;
    }
    .tmpl-title {
      font-family: var(--ff-display);
      font-size: 17px; font-weight: 600;
      color: #fff; line-height: 1.3; margin-bottom: 4px;
    }
    .tmpl-sub { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.55; }

    .proof-num { color: var(--gold-light); font-weight: 700; }
    .proof-highlight { color: var(--gold-light); font-weight: 700; }

    .tmpl-tabs {
      display: flex;
      border-bottom: 0.5px solid rgba(255,255,255,0.07);
    }
    .tmpl-tab {
      flex: 1; padding: 10px 4px; text-align: center;
      font-size: 9.5px; font-weight: 500; line-height: 1.25;
      color: rgba(255,255,255,0.38);
      font-family: var(--ff-body); cursor: pointer;
      border-bottom: 2px solid transparent;
      letter-spacing: 0.01em;
      transition: color 0.18s, border-color 0.18s;
      user-select: none;
    }
    .tmpl-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

    .tmpl-pane { display: none; padding: 16px; gap: 10px; flex-direction: column; }
    .tmpl-pane.active { display: flex; }

    .tmpl-row {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 14px;
      background: rgba(255,255,255,0.04);
      border-radius: 10px;
      border: 0.5px solid rgba(255,255,255,0.07);
      cursor: pointer; transition: background 0.15s;
    }
    .tmpl-row:hover { background: rgba(255,255,255,0.07); }

    .tier-icon {
      width: 30px; height: 30px; border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 15px;
    }
    .tier-reg  { background: rgba(107,114,128,0.18); color: rgba(255,255,255,0.5); }
    .tier-prem { background: rgba(201,168,76,0.14); color: rgba(201,168,76,0.75); }
    .tier-vip  { background: rgba(201,168,76,0.26); color: var(--gold); }

    .tmpl-info { flex: 1; }
    .tmpl-name {
      font-size: 12.5px; font-weight: 500;
      color: rgba(255,255,255,0.88); margin-bottom: 2px;
    }
    .tmpl-meta { font-size: 10px; color: rgba(255,255,255,0.32); }
    .tmpl-arrow { font-size: 12px; font-weight: 600; color: var(--gold); }

    .hscroll {
      display: flex; gap: 12px;
      padding: 14px 20px 0;
      overflow-x: auto; scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .hscroll::-webkit-scrollbar { display: none; }

    .leg-card {
      flex-shrink: 0; width: 196px;
      background: var(--white);
      border-radius: var(--r-card);
      border: 0.5px solid var(--border-soft);
      overflow: hidden; cursor: pointer;
      transition: transform 0.15s;
    }
    .leg-card:hover { transform: translateY(-2px); }

    .leg-cover {
      height: 88px;
      display: flex; align-items: center; justify-content: center;
    }
    .leg-cover i { font-size: 32px; opacity: 0.7; display: block; }

    .leg-body { padding: 12px 14px 14px; }
    .leg-brand {
      font-size: 8px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 3px;
    }
    .leg-title {
      font-family: var(--ff-display);
      font-size: 13.5px; font-weight: 600;
      color: var(--navy); line-height: 1.3; margin-bottom: 5px;
    }
    .leg-desc { font-size: 10px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
    .leg-link {
      display: flex; align-items: center; gap: 4px;
      font-size: 10px; font-weight: 600; color: var(--navy);
    }
    .leg-card.leg-card-fluid { width: 100%; }

    .nav-pills {
      display: flex; gap: 8px;
      padding: 20px 20px 0;
      overflow-x: auto; scrollbar-width: none;
    }
    .nav-pills::-webkit-scrollbar { display: none; }

    .pill {
      flex-shrink: 0;
      padding: 7px 15px; border-radius: var(--r-pill);
      font-size: 12px; font-weight: 500;
      font-family: var(--ff-body); cursor: pointer;
      border: 0.5px solid var(--gold-border);
      background: var(--white); color: var(--muted);
      transition: background 0.15s, color 0.15s;
      user-select: none;
    }
    .pill.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

    .workshop-list { padding: 14px 20px 0; display: flex; flex-direction: column; gap: 12px; }

    .ws-card {
      background: var(--white);
      border-radius: var(--r-card);
      border: 0.5px solid var(--border-soft);
      overflow: hidden; cursor: pointer;
      transition: transform 0.15s;
      display: flex; flex-direction: column;
    }
    .ws-card:hover { transform: translateY(-2px); }

    .ws-cover {
      height: 96px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .ws-cover i { font-size: 36px; color: rgba(201,168,76,0.55); display: block; }

    .ws-cover-badge {
      position: absolute; top: 10px; left: 10px;
      background: var(--gold); color: var(--navy-deep);
      font-size: 9px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 3px 8px; border-radius: 4px;
    }

    .ws-body { padding: 14px 16px; }
    .ws-title {
      font-family: var(--ff-display);
      font-size: 14px; font-weight: 600;
      color: var(--navy); line-height: 1.35; margin-bottom: 8px;
    }
    .ws-meta { display: flex; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
    .ws-meta-item {
      display: flex; align-items: center; gap: 4px;
      font-size: 10px; color: var(--muted);
    }
    .ws-meta-item i { font-size: 12px; color: var(--navy); }
    .ws-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .ws-tag {
      font-size: 9px; padding: 3px 8px;
      border-radius: 4px;
      background: rgba(27,42,74,0.06);
      color: var(--navy); font-weight: 500;
    }

    .ws-hero {
      margin: 20px 20px 0;
      padding: 30px 22px 26px;
      border-radius: var(--r-card);
      background: linear-gradient(145deg, #0E1A2E 0%, #1B2A4A 40%, #1e2f4a 70%, #16243a 100%);
      position: relative; overflow: hidden;
    }
    .ws-hero::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .ws-hero::after {
      content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%;
      top: -100px; right: -60px;
      background: radial-gradient(circle, rgba(200,215,235,0.07) 0%, rgba(180,200,225,0.04) 40%, transparent 70%);
    }
    .ws-hero-silver-shimmer {
      position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(125deg, transparent 0%, rgba(200,220,240,0.04) 35%, rgba(210,225,245,0.07) 50%, rgba(200,220,240,0.04) 65%, transparent 100%);
      border-radius: inherit;
    }
    .ws-hero-title {
      position: relative; z-index: 1;
      font-family: var(--ff-display);
      font-size: 25px; font-weight: 700;
      color: var(--gold); line-height: 1.28; margin-bottom: 10px;
    }
    .ws-hero-sub { position: relative; z-index: 1; font-size: 12.5px; color: rgba(255,255,255,0.85); line-height: 1.65; max-width: 94%; }

    .ws-points {
      margin: 12px 20px 0;
      display: flex; flex-direction: column; gap: 10px;
    }
    .ws-point {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 18px;
      background: var(--white);
      border: 0.5px solid var(--border-soft);
      border-radius: var(--r-card);
      box-shadow: 0 2px 10px rgba(27,42,74,0.04);
    }
    .ws-point-icon {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 10px;
      background: rgba(27,42,74,0.06);
      border: 0.5px solid rgba(201,168,76,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--navy);
    }
    .ws-point-icon svg { display: block; flex-shrink: 0; }
    .ws-point-body { flex: 1; min-width: 0; }
    .ws-point-title {
      font-family: var(--ff-display); font-size: 13px; font-weight: 600;
      color: var(--navy); line-height: 1.3; margin-bottom: 5px;
      letter-spacing: 0.01em;
    }
    .ws-point-desc { font-size: 10.5px; color: var(--muted); line-height: 1.65; }

    .ws-journey-card {
      margin: 14px 20px 0;
      border: 0.5px solid var(--border-soft); border-radius: var(--r-card);
      overflow: hidden;
    }
    .ws-journey-main {
      padding: 26px 16px; text-align: center; position: relative;
      background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 100%);
    }
    .ws-journey-main::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .ws-journey-main .ws-num {
      font-family: var(--ff-display); font-size: 32px; font-weight: 700;
      color: var(--gold); line-height: 1;
    }
    .ws-journey-main .ws-num span { color: var(--gold); }
    .ws-journey-main .ws-lbl { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 7px; }

    .ws-journey-split { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
    .ws-journey-split > div { padding: 17px 10px; text-align: center; }
    .ws-journey-split > div:first-child { border-right: 0.5px solid var(--border-soft); }
    .ws-journey-split .ws-num { font-family: var(--ff-display); font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; }
    .ws-journey-split .ws-num span { color: var(--gold); }
    .ws-journey-split .ws-lbl { font-size: 9.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }

    .ws-percent-card {
      margin: 14px 20px 0;
      background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
      border: 0.5px solid rgba(255,255,255,0.1); border-radius: var(--r-card);
      padding: 4px 16px; display: flex; flex-direction: column;
      position: relative; overflow: hidden;
    }
    .ws-percent-item { padding: 16px 0; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
    .ws-percent-item:last-child { border-bottom: none; }
    .ws-percent-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .ws-percent-dot {
      width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
      background: rgba(255,255,255,0.6); box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
    }
    .ws-percent-label { flex: 1; font-size: 11px; color: rgba(255,255,255,0.82); font-weight: 500; line-height: 1.45; }
    .ws-percent-value { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: #ffffff; flex-shrink: 0; }
    .ws-percent-bar { height: 6px; background: rgba(255,255,255,0.12); border-radius: 100px; overflow: hidden; margin-left: 17px; }
    .ws-percent-fill { height: 100%; border-radius: 100px; background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0.85)); width: 0%; transition: width 1.2s cubic-bezier(0.16,1,0.3,1); }

    .ws-percent-item.accent-silver .ws-percent-dot {
      background: var(--gold);
      box-shadow: 0 0 0 4px rgba(201,168,76,0.18);
    }
    .ws-percent-item.accent-silver .ws-percent-value {
      background: linear-gradient(to right, var(--gold) 0%, var(--gold-light) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .ws-percent-item.accent-silver .ws-percent-fill { background: linear-gradient(to right, var(--gold) 0%, var(--gold-light) 100%); }

    .event-empty {
      margin: 0 20px; padding: 26px 16px; text-align: center;
      background: rgba(27,42,74,0.03); border: 0.5px dashed var(--border-soft);
      border-radius: var(--r-card);
    }
    .event-empty i { display: block; font-size: 22px; color: rgba(201,168,76,0.45); margin-bottom: 8px; }
    .event-empty span { font-size: 11.5px; color: var(--muted); line-height: 1.6; display: block; }

    .ws-collab-list { display: flex; flex-direction: column; gap: 10px; padding: 0 20px 0; margin-top: 14px; }
    .ws-collab-card {
      display: flex; align-items: stretch; gap: 12px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: var(--r-card); padding: 14px;
      position: relative; overflow: hidden;
    }
    .ws-collab-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .slot-collab-photo {
      width: 72px; height: 72px; flex-shrink: 0; border-radius: 10px;
      border: 0.5px solid rgba(201,168,76,0.25);
    }
    .slot-collab-photo .img-slot-ph { gap: 0; }
    .slot-collab-photo .img-slot-ph i { font-size: 17px; }
    .slot-collab-photo .img-slot-ph span { display: none; }
    .ws-collab-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
    .ws-collab-title { font-family: var(--ff-display); font-size: 12.5px; font-weight: 600; color: #fff; line-height: 1.35; margin-bottom: 5px; }
    .ws-collab-desc { font-size: 9.5px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 11px; }
    .ws-collab-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 4px;
      background: var(--gold); color: var(--navy-deep);
      font-size: 10.5px; font-weight: 600; padding: 8px 14px;
      border-radius: 8px; cursor: pointer; border: none; font-family: var(--ff-body);
      transition: opacity 0.15s; align-self: flex-start;
      margin-top: 6px;
    }
    .ws-collab-btn:hover { opacity: 0.88; }

    .ws-gallery-carousel-wrap { position: relative; margin-bottom: 6px; }
    .ws-gallery-carousel {
      display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch; scrollbar-width: none;
      padding: 0 20px;
      scroll-padding-left: 20px; scroll-padding-right: 20px;
    }
    .ws-gallery-carousel::-webkit-scrollbar { display: none; }
    .ws-gallery-item {
      flex: 0 0 calc((100% - 16px) / 3);
      scroll-snap-align: start;
    }
    .ws-gallery-photo {
      width: 100%; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden;
    }
    .ws-gallery-caption {
      font-size: 8.5px; color: var(--muted); text-align: center;
      line-height: 1.4; margin-top: 6px; padding: 0 2px;
    }

    .footer {
      background: var(--navy);
      padding: 28px 20px 32px;
      margin-top: 32px;
    }

    .ft-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }

    .ft-mark {
      width: 30px; height: 30px;
      background: rgba(201,168,76,0.12);
      border-radius: 7px;
      border: 0.5px solid rgba(201,168,76,0.28);
      display: flex; align-items: center; justify-content: center;
    }
    .ft-mark::after {
      content: ''; width: 12px; height: 12px;
      border: 1.5px solid var(--gold); border-radius: 2px;
      transform: rotate(45deg); display: block;
    }

    .ft-name { font-family: var(--ff-display); font-size: 15px; font-weight: 600; color: #fff; }
    .ft-name span { color: var(--navy-mid); }

    .ft-tagline {
      font-size: 11px; color: rgba(255,255,255,0.38);
      line-height: 1.65; margin-bottom: 18px;
      padding-left: 10px;
      border-left: 2px solid var(--gold);
    }

    .ft-rule { height: 0.5px; background: rgba(255,255,255,0.07); margin-bottom: 14px; }

    .ft-brands { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
    .ft-brand-row { display: flex; align-items: center; gap: 9px; }
    .ft-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .ft-brand-name { font-size: 10.5px; color: rgba(255,255,255,0.45); }

    .ft-copy {
      font-size: 9px; color: rgba(255,255,255,0.22);
      text-align: center; letter-spacing: 0.07em;
    }

    .ft-socials-label {
      text-align: center; font-size: 12px; font-weight: 600;
      letter-spacing: 0.04em;
      color: #FFFFFF; margin-bottom: 12px;
    }
    .ft-socials-divider {
      height: 1px; width: 100%; max-width: 220px;
      margin: 0 auto 14px;
      background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
    }
    .ft-socials { display: flex; justify-content: center; gap: 10px; margin-bottom: 14px; }
    .ft-social {
      width: 38px; height: 38px; border-radius: 12px;
      background: rgba(255,255,255,0.07);
      border: 0.5px solid rgba(201,168,76,0.2);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); font-size: 18px; cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .ft-social i { display: block; }
    .ft-social:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.5); color: var(--gold); }

    .bottom-nav {
      position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
      width: 390px;
      background: rgba(247,247,247,0.96);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-top: 0.5px solid var(--gold-border);
      display: flex; padding: 8px 0 14px; z-index: 300;
    }

    @media (max-width: 420px) {
      .bottom-nav { left: 0; transform: none; width: 100%; }
    }

    .nav-item {
      flex: 1;
      display: flex; flex-direction: column;
      align-items: center; gap: 4px;
      cursor: pointer; padding: 4px 0; position: relative;
    }
    .nav-item i {
      font-size: 19px; color: var(--muted); transition: color 0.15s, background 0.15s;
      width: 34px; height: 28px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .nav-item.active i { color: var(--navy); background: var(--gold-dim); }
    .nav-label {
      font-size: 8.5px; font-weight: 500; color: var(--muted); letter-spacing: 0.02em;
      text-align: center; line-height: 1.2; max-width: 78px; white-space: normal;
    }
    .nav-item.active .nav-label { color: var(--navy); font-weight: 600; }

    .page { display: none; }
    .page.active { display: block; }

    .admin-bar {
      background: var(--navy-deep);
      border-bottom: 0.5px solid var(--gold-border);
      padding: 10px 20px;
      display: none; align-items: center; justify-content: center;
    }
    body.admin-unlocked .admin-bar { display: flex; }
    body.admin-unlocked.preview-mode .admin-bar { display: none !important; }
    .toggle-label { font-size: 10px; color: rgba(255,255,255,0.6); }
    .toggle-wrap { display: flex; align-items: center; gap: 8px; }

    .toggle {
      width: 36px; height: 20px; border-radius: 10px;
      background: rgba(255,255,255,0.15);
      position: relative; cursor: pointer;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .toggle.on { background: var(--gold); }
    .toggle::after {
      content: ''; width: 14px; height: 14px; border-radius: 50%;
      background: #fff;
      position: absolute; top: 3px; left: 3px;
      transition: left 0.2s;
    }
    .toggle.on::after { left: 19px; }

    .toggle.sv-light { background: rgba(27,42,74,0.14); }
    .toggle.sv-light.on { background: var(--gold); }
    .toggle-label.sv-light { color: var(--muted); }
    .sv-settings-toggle-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 15px 16px; background: var(--white);
      border-bottom: 0.5px solid var(--gold-border);
    }
    .sv-settings-toggle-label { font-size: 12.5px; font-weight: 600; color: var(--navy); }

    .narasumber-row {
      display: flex; gap: 10px; flex-wrap: wrap;
      padding: 14px 20px 0;
    }
    .ns-chip {
      display: flex; align-items: center; gap: 8px;
      background: var(--white);
      border: 0.5px solid var(--border-soft);
      border-radius: var(--r-pill); padding: 7px 14px 7px 8px;
    }
    .ns-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-display); font-size: 11px; font-weight: 600; color: var(--gold);
      flex-shrink: 0;
    }
    .ns-info {}
    .ns-name { font-size: 11px; font-weight: 600; color: var(--navy); }
    .ns-role { font-size: 9px; color: var(--muted); }

    .overlay-bg {
      display: none; position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(10,15,28,0.6);
      z-index: 400; align-items: flex-end; justify-content: center;
    }
    .overlay-bg.open { display: flex; }

    .overlay-sheet {
      width: 390px; max-height: 85vh;
      background: var(--cream);
      border-radius: 20px 20px 0 0;
      overflow-y: auto;
      padding: 0 0 32px;
      animation: slideUp 0.28s cubic-bezier(0.16,1,0.3,1) both;
      position: relative; 
    }

    .overlay-sheet.closing {
      animation: slideDown 0.28s cubic-bezier(0.4,0,1,1) both !important;
    }

    @keyframes slideUp {
      from { transform: translateY(100%); opacity: 0; }
      to   { transform: translateY(0);   opacity: 1; }
    }

    @keyframes slideDown {
      from { transform: translateY(0);   opacity: 1; }
      to   { transform: translateY(100%); opacity: 0; }
    }

    @media (max-width: 420px) {
      .overlay-sheet { width: 100%; }
    }

    .sheet-sticky-hd {
      position: sticky; top: 0; z-index: 10;
      background: var(--cream);
      border-bottom: 0.5px solid var(--border-soft);
      display: flex; align-items: center; justify-content: center;
      padding: 14px 16px 10px;
      min-height: 52px;
    }

    .sheet-handle {
      width: 36px; height: 4px; border-radius: 2px;
      background: rgba(27,42,74,0.15);
      flex-shrink: 0;
      cursor: grab;
      touch-action: none;
    }
    .sheet-close {
      position: absolute; top: 50%; right: 14px; transform: translateY(-50%);
      width: 30px; height: 30px; border-radius: 50%;
      background: rgba(27,42,74,0.08);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 16px; color: var(--navy);
      border: none; outline: none;
      transition: background 0.15s;
    }
    .sheet-close:hover { background: rgba(27,42,74,0.15); }
    .sheet-close:active { background: rgba(27,42,74,0.2); }
    .sheet-close svg { display: block; flex-shrink: 0; }
    .sheet-title {
      font-family: var(--ff-display);
      font-size: 18px; font-weight: 600;
      color: var(--navy); padding: 0 20px 12px; line-height: 1.3;
    }

    .form-wrap { padding: 0 20px; }
    .form-field { margin-bottom: 14px; }
    .form-label { font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 5px; display: block; }

    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 11px 14px;
      border: 0.5px solid rgba(27,42,74,0.2);
      border-radius: 8px; font-size: 13px;
      font-family: var(--ff-body); color: var(--text);
      background: var(--white); outline: none;
      transition: border-color 0.15s;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--gold);
    }
    .form-input.field-error, .form-select.field-error, .form-textarea.field-error {
      border-color: #DC2626;
      background: rgba(220,38,38,0.03);
    }
    .form-textarea { resize: none; min-height: 72px; line-height: 1.55; }

    .sosmed-btn-row {
      display: flex; gap: 6px; margin-top: 8px; flex-wrap: nowrap;
    }
    .sosmed-btn {
      flex: 1; min-width: 0; padding: 9px 6px;
      border-radius: 8px; font-size: 11px; font-weight: 600;
      cursor: pointer; white-space: nowrap; text-align: center;
      border: 0.5px solid var(--gold-border);
      transition: opacity 0.15s;
    }
    .sosmed-btn:active { opacity: 0.75; }
    .sosmed-btn-primary {
      background: linear-gradient(135deg,var(--navy),var(--navy-mid));
      color: var(--gold); border-color: var(--navy);
    }
    .sosmed-btn-secondary {
      background: var(--white); color: var(--navy);
      border: 0.5px solid rgba(27,42,74,0.3);
    }
    .sosmed-btn-muted {
      background: var(--cream); color: var(--muted);
    }

    .sosmed-preview {
      display: flex; align-items: flex-start; gap: 6px;
      margin-top: 7px; padding: 8px 10px;
      background: var(--cream); border-radius: 8px;
      border: 0.5px dashed var(--gold-border);
    }
    .sosmed-preview i { font-size: 13px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
    .sosmed-preview a {
      font-size: 11px; color: var(--navy); text-decoration: none;
      border-bottom: 1px dashed var(--gold-border);
      line-height: 1.5; word-break: break-all;
    }
    .sosmed-preview a:hover { color: var(--gold); border-bottom-color: var(--gold); }
    .sosmed-preview a.sosmed-preview-empty {
      color: var(--muted); border-bottom: none; cursor: default; font-style: italic;
    }

    .select-wrap { position: relative; }
    .select-wrap .form-select {
      appearance: none; -webkit-appearance: none; -moz-appearance: none;
      padding-right: 36px; cursor: pointer;
    }
    .select-wrap .select-chevron-btn {
      position: absolute; top: 50%; right: 14px; transform: translateY(-50%);
      display: flex; align-items: center; justify-content: center;
      color: var(--text); font-size: 14px; pointer-events: none;
    }

    .field-error-msg {
      font-size: 10px; color: #DC2626; margin-top: 4px;
      display: none; align-items: center; gap: 3px;
    }
    .field-error-msg.show { display: flex; }

    .file-upload-area.field-error {
      border-color: #DC2626;
      background: rgba(220,38,38,0.03);
    }

    .form-submit {
      width: 100%; padding: 13px;
      background: var(--navy); color: var(--gold);
      border: none; border-radius: 9px;
      font-size: 13px; font-weight: 600;
      font-family: var(--ff-body); cursor: pointer;
      letter-spacing: 0.04em;
      transition: opacity 0.15s, background 0.15s;
      margin-top: 4px;
    }
    .form-submit:hover:not(:disabled) { opacity: 0.88; }
    .form-submit:disabled {
      background: rgba(27,42,74,0.25);
      color: rgba(255,255,255,0.45);
      cursor: not-allowed;
      opacity: 1;
    }

    .success-msg {
      display: none;
      background: rgba(27,42,74,0.05);
      border: 0.5px solid rgba(27,42,74,0.15);
      border-radius: 10px; padding: 16px;
      text-align: center; margin-top: 12px;
    }
    .success-msg i { font-size: 28px; color: var(--gold); margin-bottom: 8px; display: block; }
    .success-msg p { font-size: 13px; color: var(--navy); font-weight: 500; }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }

    .img-slot {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, #1a2540 0%, #243660 100%);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 8px;
    }
    .img-slot-ph {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 7px;
      width: 100%; height: 100%;
      pointer-events: none;
    }
    .img-slot-ph i { font-size: 26px; color: rgba(201,168,76,0.4); display: block; }
    .img-slot-ph span {
      font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(201,168,76,0.35);
      text-align: center; line-height: 1.4;
    }
    .img-slot img, .img-slot video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    @keyframes sv-shimmer {
      0%   { background-position: -200% 0; }
      100% { background-position:  200% 0; }
    }
    .img-slot.sv-loading::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        90deg,
        rgba(255,255,255,0)   0%,
        rgba(255,255,255,0.07) 40%,
        rgba(255,255,255,0.13) 50%,
        rgba(255,255,255,0.07) 60%,
        rgba(255,255,255,0)   100%
      );
      background-size: 200% 100%;
      animation: sv-shimmer 1.6s ease-in-out infinite;
      border-radius: inherit;
      pointer-events: none;
      z-index: 2;
    }

    .logo-slot { position: relative; overflow: hidden; }
    .logo-slot img, .logo-slot video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; display: block; border-radius: inherit;
    }
    .slot-logo-mark {
      width: 33px; height: 33px; border-radius: 9px;
    }
    .slot-speaker-avatar {
      width: 30px; height: 30px; border-radius: 50%;
      border: 0.5px solid rgba(201,168,76,0.45);
      flex-shrink: 0;
    }
    .slot-speaker-avatar .img-slot-ph { gap: 0; }
    .slot-speaker-avatar .img-slot-ph i { font-size: 14px; }
    .slot-speaker-avatar .img-slot-ph span { display: none; }
    .slot-event-poster {
      width: 100%; height: 300px;
    }
    .slot-event-poster img { opacity: 0.55; }
    .slot-svc-cover {
      width: 100%; height: 74px;
    }
    .slot-svc-cover .img-slot-ph i { font-size: 18px; }
    .slot-svc-cover .img-slot-ph span { font-size: 8px; }
    .slot-cp-cover {
      width: 100%; height: 74px;
    }
    .slot-cp-cover .img-slot-ph i { font-size: 18px; }
    .slot-cp-cover .img-slot-ph span { font-size: 8px; }
    .slot-tmpl-cover {
      width: 100%; height: 255px;
    }
    .slot-pd-compare {
      width: 100%; height: 72px; border-radius: 8px; margin-bottom: 10px;
    }
    .slot-pd-compare .img-slot-ph i { font-size: 18px; }
    .slot-pd-compare .img-slot-ph span { font-size: 8px; }
    .slot-produk-icon {
      width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
    }
    .slot-produk-icon .img-slot-ph { gap: 0; }
    .slot-produk-icon .img-slot-ph i { font-size: 14px; }
    .slot-produk-icon .img-slot-ph span { display: none; }
    .slot-leg-cover {
      width: 100%; height: 88px;
    }
    .slot-leg-cover .img-slot-ph i { font-size: 22px; }
    .slot-app-video {
      width: 100%; height: 148px;
      background: linear-gradient(135deg, #243660 0%, #1a2d52 100%);
    }
    .slot-app-video .img-slot-ph i { font-size: 32px; color: rgba(201,168,76,0.5); }
    .slot-app-video .img-slot-ph span { font-size: 9px; }
    .slot-ns-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--navy); flex-shrink: 0;
    }
    .slot-ns-avatar .img-slot-ph { gap: 0; }
    .slot-ns-avatar .img-slot-ph i { font-size: 13px; color: rgba(201,168,76,0.7); }
    .slot-ns-avatar .img-slot-ph span { display: none; }
    .slot-narsum-photo {
      width: 64px; height: 64px; border-radius: 50%;
      border: 2px solid rgba(201,168,76,0.4);
      flex-shrink: 0;
    }
    .slot-narsum-photo .img-slot-ph i { font-size: 22px; }
    .slot-narsum-photo .img-slot-ph span { display: none; }

    @keyframes countUp {
      from { opacity: 0.3; }
      to   { opacity: 1; }
    }
    .proof-num {
      display: inline-block;
      font-weight: 700; color: var(--gold-light);
    }

    .detail-tabs {
      display: flex; gap: 0;
      border-bottom: 0.5px solid rgba(27,42,74,0.12);
      margin-bottom: 16px;
    }
    .detail-tab {
      flex: 1; text-align: center;
      padding: 10px 4px;
      font-size: 12px; font-weight: 600;
      color: var(--muted); cursor: pointer;
      border-bottom: 2.5px solid transparent;
      font-family: var(--ff-body);
      transition: color 0.18s, border-color 0.18s;
      user-select: none;
    }
    .detail-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
    .detail-pane { display: none; }
    .detail-pane.active { display: block; }

    .detail-tabs.tabs-scroll {
      overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .detail-tabs.tabs-scroll::-webkit-scrollbar { display: none; }
    .detail-tabs.tabs-scroll .detail-tab { flex: 0 0 auto; padding: 10px 16px; white-space: nowrap; }

    .narsum-profile-block {
      display: flex; flex-direction: column; gap: 16px;
    }
    .narsum-profile-item {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 14px;
      background: rgba(27,42,74,0.04);
      border-radius: 12px; border: 0.5px solid rgba(27,42,74,0.08);
    }
    .narsum-profile-info { flex: 1; }
    .narsum-profile-name {
      font-size: 13px; font-weight: 700; color: var(--navy);
      margin-bottom: 1px;
    }
    .narsum-profile-role {
      font-size: 10.5px; color: var(--gold); font-weight: 600;
      margin-bottom: 8px; letter-spacing: 0.02em;
    }
    .narsum-profile-bio {
      font-size: 11.5px; color: var(--muted); line-height: 1.65;
    }

    .form-note-red {
      font-size: 10px; color: #DC2626; margin-top: 4px; line-height: 1.5;
      display: flex; align-items: flex-start; gap: 4px;
    }
    .form-note-red i { font-size: 12px; flex-shrink: 0; margin-top: 1px; }

    .file-upload-area {
      width: 100%; padding: 14px;
      border: 1.5px dashed rgba(27,42,74,0.25);
      border-radius: 8px; cursor: pointer;
      display: flex; flex-direction: column;
      align-items: center; gap: 6px; text-align: center;
      background: rgba(27,42,74,0.02);
      transition: border-color 0.15s, background 0.15s;
    }
    .file-upload-area:hover {
      border-color: var(--gold); background: rgba(201,168,76,0.04);
    }
    .file-upload-area i { font-size: 22px; color: rgba(27,42,74,0.4); display: block; }
    .file-upload-area span { font-size: 11px; color: var(--muted); line-height: 1.45; }
    .file-upload-area span b { color: var(--navy); }
    .file-upload-area input[type="file"] { display: none; }

    .form-checkbox-row {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 12px 0; cursor: pointer;
    }
    .form-checkbox-row input[type="checkbox"] {
      width: 17px; height: 17px; flex-shrink: 0;
      accent-color: var(--navy); margin-top: 1px;
    }
    .form-checkbox-label {
      font-size: 12px; color: var(--navy); line-height: 1.5;
    }

    .syarat-box {
      background: rgba(27,42,74,0.04);
      border: 0.5px solid rgba(27,42,74,0.1);
      border-radius: 10px; padding: 14px;
      margin-bottom: 12px;
    }
    .syarat-title {
      font-size: 11px; font-weight: 700; color: var(--navy);
      letter-spacing: 0.06em; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .syarat-list {
      list-style: none; display: flex; flex-direction: column; gap: 8px;
    }
    .syarat-list li {
      display: flex; gap: 8px; align-items: flex-start;
      font-size: 11px; color: var(--muted); line-height: 1.6;
    }
    .syarat-list li::before {
      content: '';
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0; margin-top: 6px;
    }

    .success-wa-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 13px; margin-top: 14px;
      background: #25D366; color: #fff;
      border: none; border-radius: 9px;
      font-size: 13px; font-weight: 700;
      font-family: var(--ff-body); cursor: pointer;
      letter-spacing: 0.02em;
      transition: opacity 0.15s;
    }
    .success-wa-btn:hover { opacity: 0.9; }
    .success-wa-btn svg { flex-shrink: 0; }

    .upload-conditional { display: none; }
    .upload-conditional.show { display: block; }

    .event-carousel-wrap { position: relative; }
    .event-carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-left: 20px;
      scroll-padding-left: 20px;
    }
    .event-carousel::-webkit-scrollbar { display: none; }
    .event-hero-slide {
      flex: 0 0 100%;
      scroll-snap-align: start;
      position: relative;
      background: var(--navy-deep);
      overflow: hidden;
    }

    .event-carousel:not(.is-multi) {
      padding-right: 20px;
    }
    .event-carousel:not(.is-multi) .event-hero-slide {
      border-radius: 16px;
    }

    .event-carousel.is-multi {
      padding-right: 20px;
    }
    .event-carousel.is-multi .event-hero-slide {
      flex: 0 0 100%;
      margin-right: 14px;
      border-radius: 16px;
    }
    .event-carousel.is-multi .event-hero-slide:last-child {
      margin-right: 0;
    }

    .carousel-dots {
      display: flex; justify-content: center; align-items: center;
      gap: 6px; padding: 8px 0;
    }
    #wsGalleryDots { margin-top: 10px; }
    .carousel-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(27,42,74,0.18);
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .carousel-dot.active { width: 18px; border-radius: 3px; background: var(--gold); }
    .carousel-dot:hover:not(.active) { background: rgba(201,168,76,0.45); }

    .event-counter {
      font-family: var(--ff-body); font-size: 10px; font-weight: 600;
      color: #fff; background: rgba(255,255,255,0.12);
      border: 0.5px solid rgba(255,255,255,0.25);
      padding: 4px 10px; border-radius: var(--r-pill);
      backdrop-filter: blur(6px);
      display: none;
    }
    .event-carousel-wrap.is-multi .event-counter { display: none; }

    .eyebrow-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
    .eyebrow-row .eyebrow { margin-bottom: 0; }
    .logo-slot {
      width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
      border: 1px dashed rgba(201,168,76,0.45);
      background: rgba(201,168,76,0.05);
      display: flex; align-items: center; justify-content: center;
      color: rgba(201,168,76,0.55); font-size: 12px;
    }
    .logo-slot.dark {
      border-color: rgba(201,168,76,0.3);
      background: rgba(255,255,255,0.04);
      color: rgba(201,168,76,0.6);
    }

    .fc-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      display: none; 
    }

    .tmpl-photo-row {
      display: flex; gap: 8px;
      padding: 16px 16px 0;
    }
    .tmpl-photo-ph {
      flex: 1; height: 64px; border-radius: 9px;
      background: rgba(255,255,255,0.04);
      border: 1px dashed rgba(201,168,76,0.3);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    }
    .tmpl-photo-ph i { font-size: 16px; color: rgba(201,168,76,0.4); }
    .tmpl-photo-ph span { font-size: 8px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; text-transform: uppercase; }

    .tmpl-row { align-items: center; }
    .tmpl-price-block { text-align: right; flex-shrink: 0; margin-right: 2px; }
    .tmpl-price { font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: var(--gold); line-height: 1.1; }
    .tmpl-price-note { font-size: 8.5px; color: rgba(255,255,255,0.32); margin-top: 2px; }

    .bundle-spotlight {
      margin: 4px 16px 16px;
      border-radius: 12px;
      padding: 2px;
      background: linear-gradient(135deg, var(--gold), rgba(201,168,76,0.3), var(--gold));
      position: relative;
    }
    .bundle-spotlight-inner {
      background: linear-gradient(160deg, #1c2b4d 0%, #14203a 100%);
      border-radius: 10px;
      padding: 18px 18px 20px;
      position: relative;
      overflow: hidden;
    }
    .bundle-ribbon {
      position: absolute; top: 12px; right: -30px;
      background: var(--gold); color: var(--navy-deep);
      font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 4px 34px; transform: rotate(38deg);
    }
    .bundle-eyebrow {
      display: flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .bundle-title {
      font-family: var(--ff-display); font-size: 17px; font-weight: 600;
      color: #fff; margin-bottom: 6px; line-height: 1.3; padding-right: 60px;
    }
    .bundle-desc { font-size: 11.5px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 16px; }
    .bundle-price-row { display: flex; align-items: flex-end; gap: 10px; margin-bottom: 4px; }
    .bundle-price-old { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: line-through; }
    .bundle-price-new { font-family: var(--ff-display); font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1; }
    .bundle-save {
      display: inline-block; font-size: 10px; font-weight: 600; color: #0E1A2E;
      background: var(--gold-light); padding: 3px 9px; border-radius: 5px; margin-bottom: 14px;
    }
    .bundle-cta {
      width: 100%; padding: 13px; border: none; border-radius: 9px;
      background: var(--gold); color: var(--navy-deep);
      font-family: var(--ff-body); font-size: 12.5px; font-weight: 700;
      letter-spacing: 0.03em; cursor: pointer; transition: opacity 0.15s;
    }
    .bundle-cta:hover { opacity: 0.88; }

    .btn-preview-mode {
      width: 100%; margin-top: 2px;
      display: flex; align-items: center; justify-content: center; gap: 6px;
      background: var(--navy); color: #fff;
      border: none; padding: 10px; border-radius: 8px;
      font-family: var(--ff-body); font-size: 11.5px; font-weight: 600;
      letter-spacing: 0.02em; cursor: pointer;
    }
    .btn-preview-mode i { font-size: 14px; color: var(--gold-light); }
    .btn-preview-mode:hover { opacity: 0.9; }

    .btn-exit-preview {
      display: none;
      position: fixed; top: 12px; right: 12px; z-index: 500;
      align-items: center; gap: 6px;
      background: var(--navy-deep); color: #fff;
      border: 0.5px solid rgba(201,168,76,0.4);
      padding: 8px 14px; border-radius: var(--r-pill);
      font-family: var(--ff-body); font-size: 11px; font-weight: 600;
      cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    }
    .btn-exit-preview i { font-size: 13px; color: var(--gold-light); }
    body.preview-mode .btn-exit-preview { display: flex; }
    body.preview-mode .admin-bar { display: none !important; }
    body.preview-mode .admin-only-btn { display: none !important; }

    .produk-row {
      display: flex; align-items: center; gap: 12px;
      padding: 11px 12px;
      background: rgba(255,255,255,0.04);
      border-radius: 10px;
      border: 0.5px solid rgba(255,255,255,0.07);
      cursor: pointer; transition: background 0.15s;
    }
    .produk-row:hover { background: rgba(255,255,255,0.08); }
    .produk-row.produk-row--static { cursor: default; pointer-events: none; }
    .produk-row.produk-row--static:hover { background: rgba(255,255,255,0.04); }
    .produk-icon-wrap {
      width: 36px; height: 36px; border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .produk-info { flex: 1; min-width: 0; }
    .produk-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 2px; line-height: 1.35; }
    .produk-meta { font-size: 9.5px; color: rgba(255,255,255,0.38); line-height: 1.4; }

    .footer-minimal { padding-top: 8px; }

    .more-menu-item {
      display: flex; align-items: center; gap: 12px;
      padding: 13px 4px; cursor: pointer;
      border-bottom: 0.5px solid var(--border-soft);
    }
    .more-menu-item:last-child { border-bottom: none; }
    .more-menu-icon {
      width: 36px; height: 36px; border-radius: 9px;
      background: rgba(27,42,74,0.06);
      display: flex; align-items: center; justify-content: center;
      color: #000000; font-size: 16px; flex-shrink: 0;
    }
    .more-menu-text { flex: 1; }
    .more-menu-title { font-size: 13px; font-weight: 600; color: var(--navy); }
    .more-menu-sub { font-size: 10.5px; color: var(--muted); margin-top: 1px; }

    .tmpl-photo-row.single-row { justify-content: stretch; }
    .tmpl-photo-single { flex: 1 1 auto; width: 100%; height: 255px; }

    .tier-switch {
      display: flex; gap: 6px;
      margin: 14px 16px 0;
      padding: 3px;
      background: rgba(255,255,255,0.04);
      border: 0.5px solid rgba(255,255,255,0.07);
      border-radius: 10px;
    }
    .tier-pill {
      flex: 1; text-align: center;
      padding: 8px 4px;
      font-size: 11px; font-weight: 600;
      font-family: var(--ff-body);
      color: rgba(255,255,255,0.4);
      border-radius: 7px; cursor: pointer;
      letter-spacing: 0.02em;
      transition: background 0.18s, color 0.18s;
      user-select: none;
    }
    .tier-pill.active { background: var(--gold); color: var(--navy-deep); }

    .tier-pane { display: none; padding: 16px; }
    .tier-pane.active { display: block; }

    .tier-pane-head {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 12px;
    }
    .tier-pane-name {
      font-family: var(--ff-display);
      font-size: 14.5px; font-weight: 600;
      color: #fff;
    }
    .tier-reco { font-family: var(--ff-body); font-size: 9.5px; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; }

    .chk-list { display: flex; flex-direction: column; gap: 1px; margin-bottom: 16px; }
    .chk-row {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 4px;
      border-bottom: 0.5px solid rgba(255,255,255,0.05);
      font-size: 11.5px; line-height: 1.4;
    }
    .chk-row:last-child { border-bottom: none; }
    .chk-row i { font-size: 15px; flex-shrink: 0; }
    .chk-row.included { color: rgba(255,255,255,0.85); }
    .chk-row.included i { color: var(--gold); }
    .chk-row.excluded { color: rgba(255,255,255,0.25); }
    .chk-row.excluded i { color: rgba(255,255,255,0.18); font-size: 13px; }

    .tier-summary {
      background: rgba(201,168,76,0.06);
      border: 0.5px solid rgba(201,168,76,0.2);
      border-radius: 10px;
      padding: 14px;
    }
    .tier-quota {
      display: flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 600; color: var(--gold-light);
      letter-spacing: 0.02em; margin-bottom: 12px;
    }
    .tier-quota i { font-size: 12px; }
    .tier-summary-row {
      display: flex; align-items: baseline; justify-content: space-between;
      margin-bottom: 12px;
    }
    .tier-doc-count { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 500; }
    .tier-price { font-family: var(--ff-display); font-size: 21px; font-weight: 700; color: var(--gold); }
    .btn-tier-cta {
      width: 100%; padding: 12px; border: none; border-radius: 9px;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--navy-deep);
      font-family: var(--ff-body); font-size: 12px; font-weight: 700;
      letter-spacing: 0.03em; cursor: pointer; transition: opacity 0.15s;
    }
    .btn-tier-cta:hover { opacity: 0.88; }

    .bundle-quota {
      display: flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 600; color: var(--gold-light);
      letter-spacing: 0.02em; margin-bottom: 12px;
    }
    .bundle-quota i { font-size: 12px; }

    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeSlideLeft {
      from { opacity: 0; transform: translateX(-10px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    @keyframes wsHeroReveal {
      from { opacity: 0; transform: translateY(20px) scale(0.98); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes wsPointIn {
      from { opacity: 0; transform: translateX(-14px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    @keyframes wsCardIn {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes wsGoldLineExpand {
      from { transform: scaleX(0); opacity: 0; }
      to   { transform: scaleX(1); opacity: 1; }
    }

    .phone .header {
      animation: fadeSlideUp 0.4s ease-out both;
    }
    #eventHero {
      animation: fadeSlideUp 0.5s ease-out 0.05s both;
    }

    #page-workshop.ws-animate .ws-hero {
      animation: wsHeroReveal 0.55s cubic-bezier(0.16,1,0.3,1) 0.05s both;
    }

    #page-template.pd-animate .pd-hero {
      animation: wsHeroReveal 0.55s cubic-bezier(0.16,1,0.3,1) 0.05s both;
    }

    #page-branding.sb-animate .sb-hero-block {
      animation: wsHeroReveal 0.55s cubic-bezier(0.16,1,0.3,1) 0.05s both;
    }

    #page-legalitas.leg-animate .leg-header-block {
      animation: wsHeroReveal 0.55s cubic-bezier(0.16,1,0.3,1) 0.05s both;
    }

    .ws-scroll-hidden {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
                  transform 0.55s cubic-bezier(0.16,1,0.3,1);
    }
    .ws-scroll-hidden.ws-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .ws-point.ws-scroll-hidden {
      transform: translateX(-14px);
    }
    .ws-point.ws-scroll-hidden.ws-visible {
      transform: translateX(0);
    }
    .ws-point:nth-child(1).ws-scroll-hidden { transition-delay: 0s; }
    .ws-point:nth-child(2).ws-scroll-hidden { transition-delay: 0.09s; }
    .ws-point:nth-child(3).ws-scroll-hidden { transition-delay: 0.18s; }

    .gold-rule.ws-scroll-hidden {
      transform: scaleX(0);
      transform-origin: center;
    }
    .gold-rule.ws-scroll-hidden.ws-visible {
      transform: scaleX(1);
    }

    @keyframes logoGlow {
      0%   { box-shadow: 0 0 0 0 rgba(27,42,74,0); }
      50%  { box-shadow: 0 0 12px 3px rgba(201,168,76,0.18); }
      100% { box-shadow: 0 0 0 0 rgba(27,42,74,0); }
    }
    .logo-mark {
      animation: logoGlow 2.2s ease-in-out 0.6s 1;
    }

    @keyframes statShimmer {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes ruleExpand {
      from { transform: scaleX(0); opacity: 0; }
      to   { transform: scaleX(1); opacity: 1; }
    }

    .svc-card, .leg-card, .ws-card {
      transition: transform 0.22s cubic-bezier(0.16,1,0.3,1),
                  box-shadow 0.22s cubic-bezier(0.16,1,0.3,1),
                  border-color 0.22s ease;
    }
    .svc-card:hover, .leg-card:hover, .ws-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(27,42,74,0.1), 0 2px 6px rgba(201,168,76,0.08);
      border-color: rgba(201,168,76,0.35);
    }

    .nav-item i, .nav-item svg {
      transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    }
    .nav-item.active svg, .nav-item.active i {
      transform: translateY(-1px);
    }

    @keyframes ringPulse {
      0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
      70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }
    .badge-gold-hero.badge-blink {
      animation: badgeBlink 1.6s ease-in-out infinite, ringPulse 1.6s ease-out infinite;
    }

    .observe-fade {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.55s ease-out, transform 0.55s cubic-bezier(0.16,1,0.3,1);
    }
    .observe-fade.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fab-contact {
      position: fixed;
      bottom: 88px; 
      right: 18px;
      width: 52px; height: 52px;
      border-radius: 16px;
      background: linear-gradient(135deg, #1B2A4A, #243660);
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(27,42,74,0.55), 0 2px 6px rgba(0,0,0,0.22);
      z-index: 350;
      transition: transform 0.2s cubic-bezier(0.16,1,0.3,1),
                  box-shadow 0.2s ease;
    }
    .fab-contact:hover {
      transform: scale(1.06);
      box-shadow: 0 6px 24px rgba(27,42,74,0.7), 0 2px 8px rgba(0,0,0,0.25);
    }
    .fab-contact svg { color: #FFFFFF; }

    /* [PERF-FIX] Animasi ringPulse/fabRing terus-menerus (infinite loop, box-shadow paint-heavy)
       dihapus karena membebani main thread saat scroll, khususnya di in-app browser (Instagram
       WebView). Efek klik (rotasi ikon 45deg via .fab-contact.panel-open svg) dan efek blur
       halaman (#pageBlurWrap.blurred) TIDAK diubah dan tetap berjalan seperti semula. */

    .page-blur-wrap {
      transition: filter 0.3s ease, opacity 0.3s ease;
    }
    .page-blur-wrap.blurred {
      filter: blur(5px);
      opacity: 0.45;
      pointer-events: none;
      user-select: none;
    }

    .contact-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 340;
      background: rgba(10,15,28,0.0);
      transition: background 0.3s ease;
    }
    .contact-overlay.open {
      display: block;
      background: rgba(10,15,28,0.55);
    }

    .contact-panel {
      position: fixed;
      bottom: 148px;
      right: 14px;
      width: 224px;
      background: rgba(255,255,255,0.97);
      border-radius: 16px;
      border: 0.5px solid rgba(201,168,76,0.3);
      box-shadow: 0 20px 48px rgba(14,26,46,0.22), 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      z-index: 360;
      opacity: 0;
      transform: scale(0.88) translateY(16px);
      transform-origin: bottom right;
      pointer-events: none;
      transition: opacity 0.28s cubic-bezier(0.16,1,0.3,1),
                  transform 0.28s cubic-bezier(0.16,1,0.3,1);
      backdrop-filter: blur(12px);
    }
    .contact-panel.open {
      opacity: 1;
      transform: scale(1) translateY(0);
      pointer-events: auto;
    }

    .contact-panel-hd {
      background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
      padding: 12px 16px;
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .contact-panel-hd-label {
      font-family: var(--ff-display);
      font-size: 16px; font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--gold);
    }
    .contact-panel-hd-sub {
      font-size: 11px; color: rgba(255,255,255,0.55);
      margin-top: 2px;
    }

    .contact-option {
      display: flex; align-items: center; gap: 11px;
      padding: 12px 16px;
      cursor: pointer;
      border-bottom: 0.5px solid rgba(27,42,74,0.07);
      transition: background 0.15s ease;
    }
    .contact-option:last-child { border-bottom: none; }
    .contact-option:hover { background: rgba(201,168,76,0.06); }

    .contact-option-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-option-icon svg { color: #FFFFFF; }

    .contact-option-text { flex: 1; }
    .contact-option-title {
      font-size: 12px; font-weight: 600;
      color: var(--navy); line-height: 1.3;
    }
    .contact-option-sub {
      font-size: 9.5px; color: var(--muted);
      margin-top: 1px;
    }

    .contact-close-row {
      padding: 10px 16px;
      border-top: 0.5px solid rgba(201,168,76,0.18);
      background: rgba(27,42,74,0.03);
    }
    .pd-purchase-note {
      font-size: 10px; color: var(--muted); line-height: 1.5;
      padding: 10px 20px 0; display: flex; gap: 7px; align-items: flex-start;
    }
    .pd-purchase-note i { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

    .contact-close-btn {
      width: 100%; padding: 9px;
      border: 0.5px solid rgba(201,168,76,0.3);
      border-radius: 8px;
      background: transparent;
      color: var(--navy); font-family: var(--ff-body);
      font-size: 11.5px; font-weight: 600;
      cursor: pointer; text-align: center;
      display: flex; align-items: center; justify-content: center; gap: 6px;
      transition: background 0.15s, border-color 0.15s;
    }
    .contact-close-btn:hover {
      background: rgba(201,168,76,0.08);
      border-color: rgba(201,168,76,0.5);
    }

    .fab-contact.panel-open svg {
      transform: rotate(45deg);
      transition: transform 0.25s ease;
    }
    .fab-contact svg {
      transition: transform 0.25s ease;
    }

    .fab-contact { display: flex; }
    .page-workshop-active .fab-contact,
    .page-branding-active .fab-contact,
    .page-perizinan-active .fab-contact,
    .page-template-active .fab-contact,
    .page-kontak-active .fab-contact {
      display: none !important;
    }

    @keyframes optionIn {
      from { opacity: 0; transform: translateX(10px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .contact-panel.open .contact-option {
      animation: optionIn 0.25s ease-out both;
    }
    .contact-panel.open .contact-option:nth-child(1) { animation-delay: 0.05s; }
    .contact-panel.open .contact-option:nth-child(2) { animation-delay: 0.10s; }
    .contact-panel.open .contact-option:nth-child(3) { animation-delay: 0.15s; }
    .contact-panel.open .contact-option:nth-child(4) { animation-delay: 0.20s; }

    .pd-hero {
      margin: 16px 20px 0; padding: 30px 22px 26px;
      border-radius: var(--r-card);
      background: linear-gradient(145deg, #0E1A2E 0%, #1B2A4A 40%, #1e2f4a 70%, #16243a 100%);
      position: relative; overflow: hidden;
    }
    .pd-hero::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .pd-hero::after {
      content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%;
      top: -100px; right: -60px;
      background: radial-gradient(circle, rgba(200,215,235,0.07) 0%, rgba(180,200,225,0.04) 40%, transparent 70%);
    }
    .pd-hero-title {
      position: relative; z-index: 1;
      font-family: var(--ff-display); font-size: 23px; font-weight: 700;
      color: var(--gold); line-height: 1.32; margin-bottom: 10px;
    }
    .pd-hero-sub { position: relative; z-index: 1; font-size: 12px; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 18px; }
    .pd-hero-btns { position: relative; z-index: 1; display: flex; gap: 10px; }
    .pd-btn-primary, .pd-btn-secondary {
      flex: 1; text-align: center; cursor: pointer; user-select: none;
      padding: 12px 14px; border-radius: 9px;
      font-family: var(--ff-body); font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
      transition: opacity 0.15s, background 0.15s;
    }
    .pd-btn-primary { background: var(--gold); color: var(--navy-deep); border: none; }
    .pd-btn-primary:hover { opacity: 0.88; }
    .pd-btn-secondary { background: transparent; color: #fff; border: 0.5px solid rgba(255,255,255,0.3); }
    .pd-btn-secondary:hover { background: rgba(255,255,255,0.07); }

    .pd-text-block { margin: 26px 20px 0; }
    .pd-text-title {
      font-family: var(--ff-display); font-size: 17px; font-weight: 600;
      color: var(--navy); line-height: 1.35; margin-bottom: 10px;
    }
    .pd-text-body { font-size: 12px; color: var(--muted); line-height: 1.75; }
    .pd-text-body + .pd-text-body { margin-top: 10px; }

    .pd-blue-block {
      margin: 26px 20px 0; padding: 20px 18px; border-radius: var(--r-card);
      background: linear-gradient(145deg, #1c3a63 0%, #234a7c 60%, #1c3a63 100%);
      position: relative; overflow: hidden;
    }
    .pd-blue-block::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.55), transparent);
    }
    .pd-blue-block .pd-text-body { position: relative; z-index: 1; color: rgba(255,255,255,0.92); }

    .pd-collection-grid { margin: 14px 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .pd-collection-card {
      background: var(--navy-deep); border-radius: var(--r-card);
      padding: 18px 14px; display: flex; flex-direction: column;
      position: relative; overflow: hidden;
      box-shadow: 0 6px 18px rgba(14,26,46,0.22);
    }
    .pd-collection-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .pd-collection-title { font-family: var(--ff-display); font-size: 13.5px; font-weight: 600; color: var(--gold); line-height: 1.3; margin-bottom: 6px; }
    .pd-collection-desc { font-size: 10.5px; color: rgba(255,255,255,0.65); line-height: 1.55; margin-bottom: 14px; flex: 1; }
    .pd-collection-btn {
      text-align: center; cursor: pointer; user-select: none;
      padding: 9px 10px; border-radius: 8px;
      background: rgba(255,255,255,0.07); color: #fff;
      font-size: 10.5px; font-weight: 600;
      display: flex; align-items: center; justify-content: center; gap: 4px;
      transition: background 0.15s;
    }
    .pd-collection-btn:hover { background: rgba(255,255,255,0.13); }

    .pd-points-simple {
      margin: 16px 20px 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, auto);
      gap: 16px 18px;
    }
    .pd-point-simple-item {
      display: flex; flex-direction: row; align-items: center; text-align: left; gap: 8px;
      padding: 0 4px 14px;
      border-bottom: 1px solid var(--border-soft);
    }
    .pd-point-simple-check {
      flex-shrink: 0; color: var(--gold);
      width: 22px; height: 22px;
      display: flex; align-items: center; justify-content: center;
    }
    .pd-point-simple-check svg { width: 16px; height: 16px; display: block; }
    .pd-point-simple-label { font-size: 10.5px; font-weight: 600; color: var(--navy); line-height: 1.3; }

    .pd-testi-carousel {
      margin-top: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      padding: 0;
      scroll-padding-left: 20px; scroll-padding-right: 20px;
    }
    .pd-testi-carousel::-webkit-scrollbar { display: none; }
    .pd-testi-slide {
      scroll-snap-align: start; flex-shrink: 0; width: calc(100% - 40px);
      display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px;
    }
    .pd-testi-track { display: flex; gap: 10px; }
    .pd-testi-space { flex: 0 0 10px; width: 10px; }
    .pd-testi-card {
      background: var(--white); border: 0.5px solid var(--border-soft); border-radius: 12px;
      padding: 13px 12px;
    }
    .pd-testi-quote { font-size: 10px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
    .pd-testi-who { display: flex; align-items: center; gap: 7px; }
    .pd-testi-avatar {
      width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
      background: var(--navy); color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-display); font-size: 10px; font-weight: 700;
    }
    .pd-testi-name { font-size: 10px; font-weight: 700; color: var(--navy); line-height: 1.25; }
    .pd-testi-role { font-size: 8.5px; color: var(--muted); }

    .pd-compare-wrap { margin: 16px 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .pd-compare-col { border-radius: var(--r-card); padding: 16px 14px; }
    .pd-compare-col.old { background: rgba(107,114,128,0.07); border: 0.5px solid rgba(107,114,128,0.18); }
    .pd-compare-col.new { background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%); border: 0.5px solid rgba(201,168,76,0.25); }
    .pd-compare-hd {
      font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
      padding-bottom: 9px; margin-bottom: 10px;
    }
    .pd-compare-col.old .pd-compare-hd { color: var(--muted); border-bottom: 0.5px solid rgba(107,114,128,0.25); }
    .pd-compare-col.new .pd-compare-hd { color: var(--gold); border-bottom: 0.5px solid rgba(201,168,76,0.3); }
    .pd-compare-item { display: flex; align-items: flex-start; gap: 6px; font-size: 10px; line-height: 1.5; margin-bottom: 10px; }
    .pd-compare-item:last-child { margin-bottom: 0; }
    .pd-compare-col.old .pd-compare-item { color: rgba(107,114,128,0.9); }
    .pd-compare-col.new .pd-compare-item { color: rgba(255,255,255,0.88); }
    .pd-compare-item i { flex-shrink: 0; margin-top: 1px; display: block; }
    .pd-compare-item i.pd-cmp-ico svg { width: 12px; height: 12px; display: block; }
    .pd-compare-col.old .pd-compare-item i { color: #b0453f; }
    .pd-compare-col.new .pd-compare-item i { color: var(--gold); }

    .pd-price-card { margin: 14px 20px 0; background: var(--navy-deep); border-radius: var(--r-card); overflow: hidden; position: relative; }
    .pd-price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
    .pd-price-tabs { display: flex; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
    .pd-price-tab {
      flex: 1; padding: 12px 4px; text-align: center;
      font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.38);
      font-family: var(--ff-body); cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: color 0.18s, border-color 0.18s; user-select: none;
    }
    .pd-price-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
    .pd-price-pane { display: none; padding: 16px; }
    .pd-price-pane.active { display: block; }

    .doc-table-title { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-deep); background: var(--gold); padding: 8px 10px; border-radius: 6px; margin-bottom: 2px; }
    .doc-table { display: flex; flex-direction: column; }
    .doc-row {
      display: grid; grid-template-columns: 1fr 26px 26px 26px;
      align-items: center; gap: 4px;
      padding: 7px 6px; font-size: 9.5px; color: rgba(255,255,255,0.78); line-height: 1.35;
      border-bottom: 0.5px solid rgba(255,255,255,0.05);
    }
    .doc-row.doc-row-single { grid-template-columns: 1fr; }
    .doc-row.doc-head { color: rgba(255,255,255,0.4); font-weight: 700; font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.05em; text-align: center; }
    .doc-row.doc-head span:first-child { text-align: left; }
    .doc-check { text-align: center; border-radius: 4px; transition: background 0.15s; }
    .doc-check i { color: var(--gold); font-size: 12px; }
    .doc-head-col { cursor: pointer; padding: 4px 0; border-radius: 4px; transition: background 0.15s, color 0.15s; user-select: none; }
    .doc-head-col.active { background: rgba(201,168,76,0.22); color: var(--gold); }
    .doc-check.doc-col-active { background: rgba(201,168,76,0.12); }
    .doc-name-excluded { color: rgba(255,255,255,0.28); text-decoration: line-through; }
    .doc-bonus-label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-deep); background: var(--gold); padding: 6px 10px; border-radius: 6px; margin: 10px 0 2px; }
    .doc-total-row {
      display: flex; align-items: center; justify-content: space-between; gap: 8px;
      margin-top: 14px; margin-bottom: 8px;
      padding: 10px 12px; border-radius: 8px;
      background: #FFFFFF;
    }
    .doc-total-label { font-size: 10.5px; font-weight: 600; color: var(--navy); line-height: 1.3; }
    .doc-total-badges { display: flex; gap: 6px; }
    .doc-total-badge {
      text-align: center; background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.12);
      border-radius: 8px; padding: 6px 9px; position: relative;
    }
    .doc-total-badge .num { font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: #fff; line-height: 1; }
    .doc-total-badge .lbl { font-size: 6.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }
    .doc-total-badge.recommended { background: rgba(201,168,76,0.16); border-color: rgba(201,168,76,0.4); }
    .doc-total-badge.recommended .num { color: var(--gold); }
    .doc-total-badge.recommended .lbl { color: var(--gold); }
    .doc-total-badge .tag { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-deep); font-size: 6px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 2px 5px; border-radius: 4px; white-space: nowrap; }
    .doc-total-single {
      display: flex; align-items: baseline; gap: 5px;
      text-align: right;
    }
    .doc-total-single .num { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1; }
    .doc-total-single .lbl { font-size: 10px; font-weight: 600; color: var(--muted); }

    .pd-bundle-sticky {
      margin: 10px 20px 0;
      background: #FFFFFF;
      border: 1.5px solid var(--gold);
      border-radius: var(--r-card);
      padding: 14px 16px;
      cursor: default; position: relative; overflow: hidden;
    }
    .pd-bundle-sticky::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .pd-bundle-sticky-top {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      margin-bottom: 8px;
    }
    .pd-bundle-sticky-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold);
    }
    .pd-bundle-sticky-body {
      display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
    }
    .pd-bundle-sticky-left { flex: 1; min-width: 0; }
    .pd-bundle-sticky-right { flex-shrink: 0; text-align: right; }
    .pd-bundle-sticky-title {
      font-family: var(--ff-display); font-size: 19px; font-weight: 600;
      color: var(--navy); line-height: 1.25; margin-bottom: 0;
    }
    .pd-bundle-sticky-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; justify-content: flex-end; }
    .pd-bundle-sticky-price {
      font-family: var(--ff-display); font-size: 27px; font-weight: 700;
      color: var(--gold); line-height: 1;
    }
    .pd-bundle-sticky-price-old {
      font-size: 12px; color: var(--muted); text-decoration: line-through;
    }
    .pd-bundle-sticky-sub {
      font-size: 10.5px; color: var(--muted); text-align: right;
    }
    .pd-bundle-sticky-best {
      flex-shrink: 0;
      background: var(--gold); color: var(--navy-deep);
      padding: 6px 12px; border-radius: 8px;
      font-family: var(--ff-body); font-size: 9.5px; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase;
      white-space: nowrap;
      animation: badgeBlink 1.6s ease-in-out infinite;
    }

    .pd-timer-standalone { margin: 14px 20px 0; text-align: center; }
    .pd-timer-standalone-title {
      font-family: var(--ff-display); font-size: 13px; font-weight: 600;
      color: var(--navy); line-height: 1.3; margin-bottom: 10px;
    }
    .pd-limited-offer-timer {
      display: flex; align-items: center; gap: 6px;
    }
    .pd-timer-unit {
      display: flex; flex-direction: column; align-items: center;
      background: rgba(201,168,76,0.1); border: 0.5px solid rgba(201,168,76,0.3);
      border-radius: 7px; padding: 5px 10px; min-width: 42px;
    }
    .pd-timer-num {
      font-family: var(--ff-display); font-size: 18px; font-weight: 700;
      color: var(--navy); line-height: 1; letter-spacing: 0.02em;
    }
    .pd-timer-label {
      font-size: 7.5px; color: var(--muted); text-transform: uppercase;
      letter-spacing: 0.08em; margin-top: 2px;
    }
    .pd-timer-sep {
      font-family: var(--ff-display); font-size: 18px; font-weight: 700;
      color: rgba(201,168,76,0.7); line-height: 1; margin-bottom: 10px;
    }

    .pd-harga-block { margin: 16px 20px 0; background: var(--navy-deep); border-radius: var(--r-card); overflow: hidden; position: relative; padding: 16px; }
    .pd-harga-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
    .pd-harga-title { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: rgba(201,168,76,0.12); padding: 8px 10px; border-radius: 6px; margin-bottom: 4px; display: inline-block; }
    .pd-harga-pane { display: none; }
    .pd-harga-pane.active { display: block; }

    .price-line { display: flex; align-items: baseline; gap: 7px; margin-top: 2px; }
    .price-old { font-size: 11px; color: rgba(255,255,255,0.32); text-decoration: line-through; }
    .price-new { font-family: var(--ff-display); font-size: 17px; font-weight: 700; color: var(--gold); }
    .pd-tier-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 0.5px solid rgba(255,255,255,0.07); }
    .pd-tier-row:first-of-type { border-top: none; padding-top: 14px; }
    .pd-tier-info { flex: 1; }
    .pd-tier-name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 1px; }
    .pd-tier-meta { font-size: 9.5px; color: rgba(255,255,255,0.4); }
    .pd-tier-price { text-align: right; flex-shrink: 0; }
    .pd-bundle-note {
      margin-top: 14px; padding: 10px 12px; border-radius: 8px;
      background: rgba(201,168,76,0.1); border: 0.5px solid rgba(201,168,76,0.25);
      font-size: 10px; color: var(--gold-light); line-height: 1.5; display: flex; gap: 7px; align-items: flex-start;
    }
    .pd-bundle-note i { margin-top: 1px; }
    .pd-final-cta { margin: 16px 20px 0; }
    .pd-final-cta button {
      width: 100%; background: var(--gold); color: var(--navy-deep); border: none;
      padding: 15px; border-radius: 10px; font-family: var(--ff-body);
      font-size: 13px; font-weight: 700; letter-spacing: 0.02em; cursor: pointer;
      box-shadow: 0 8px 22px rgba(201,168,76,0.35);
    }
    .pd-final-cta button:hover { opacity: 0.9; }

    .pd-pkg-select { margin-bottom: 18px; }
    .pd-pkg-select-title { font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 8px; }

    .pd-pkg-trigger {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      background: var(--white); border: 1.5px solid rgba(27,42,74,0.14); border-radius: 12px;
      padding: 13px 14px; cursor: pointer; user-select: none;
      transition: border-color 0.15s, background 0.15s;
    }
    .pd-pkg-trigger:hover { border-color: rgba(201,168,76,0.5); }
    .pd-pkg-trigger.has-selection {
      border-color: var(--gold); background: rgba(201,168,76,0.05); cursor: default;
    }
    .pd-pkg-trigger-placeholder { font-size: 12px; font-weight: 600; color: var(--muted); }
    .pd-pkg-trigger-selected-name { font-size: 12.5px; font-weight: 700; color: var(--navy); line-height: 1.35; }
    .pd-pkg-trigger-selected-price { display: flex; align-items: baseline; gap: 7px; margin-top: 4px; }
    .pd-pkg-trigger-selected-price .old { font-size: 10px; color: var(--muted); text-decoration: line-through; }
    .pd-pkg-trigger-selected-price .new { font-family: var(--ff-display); font-size: 14.5px; font-weight: 700; color: var(--gold); }
    .pd-pkg-trigger-chevron {
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--text); flex-shrink: 0; transition: transform 0.25s ease;
    }
    .pd-pkg-trigger.open .pd-pkg-trigger-chevron { transform: rotate(180deg); }
    .pd-pkg-trigger-close {
      flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
      background: rgba(27,42,74,0.08); color: var(--text);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; transition: background 0.15s, color 0.15s;
    }
    .pd-pkg-trigger-close:hover { background: var(--navy); color: var(--white); }

    .pd-pkg-panel {
      overflow: hidden; max-height: 0; opacity: 0;
      transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease, margin-top 0.35s ease;
    }
    .pd-pkg-panel.open { max-height: 2000px; opacity: 1; margin-top: 10px; }

    .pd-pkg-quota {
      display: flex; align-items: center; gap: 5px;
      font-size: 9.5px; font-weight: 600; color: #b5842a;
      background: rgba(201,168,76,0.1); border-radius: 6px;
      padding: 4px 8px; margin-top: 8px; width: fit-content;
    }
    .pd-pkg-quota i { font-size: 10.5px; }
    .pd-pkg-tier-quota { margin-top: 6px; }
    .pd-pkg-quota-badge-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; }
    .pd-pkg-quota-badge-row .pd-pkg-quota { margin-top: 0; }

    .pd-pkg-card {
      position: relative; background: var(--white); border: 1.5px solid rgba(27,42,74,0.14);
      border-radius: 12px; padding: 12px 14px; cursor: pointer; margin-bottom: 8px;
      transition: border-color 0.15s, background 0.15s;
    }
    .pd-pkg-card:last-child { margin-bottom: 0; }
    .pd-pkg-card.selected { border-color: var(--gold); background: rgba(201,168,76,0.05); }
    .pd-pkg-card.pd-pkg-recommended { border-color: var(--gold); border-width: 1.5px; }
    .pd-pkg-badge {
      display: inline-block;
      background: var(--gold); color: var(--navy-deep);
      font-size: 8.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
      padding: 3px 9px; border-radius: 6px; white-space: nowrap;
    }
    .pd-pkg-badge-row {
      display: flex; justify-content: flex-end;
    }
    .pd-pkg-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
    .pd-pkg-card-name { font-size: 12.5px; font-weight: 700; color: var(--navy); line-height: 1.35; }
    .pd-pkg-radio {
      flex-shrink: 0; width: 18px; height: 18px; border-radius: 4px;
      border: 1.5px solid rgba(27,42,74,0.22); margin-top: 1px;
      display: flex; align-items: center; justify-content: center;
      color: transparent; font-size: 11px; transition: all 0.15s;
    }
    .pd-pkg-card.selected .pd-pkg-radio { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
    #pdPkgBundleCard .pd-pkg-radio { display: none; }
    .pd-pkg-card-meta { font-size: 10px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
    .pd-pkg-card-price { display: flex; align-items: baseline; gap: 7px; margin-top: 8px; }
    .pd-pkg-card-price .old { font-size: 10.5px; color: var(--muted); text-decoration: line-through; }
    .pd-pkg-card-price .new { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: var(--gold); }

    .pd-pkg-toggle {
      display: flex; align-items: center; justify-content: center; gap: 4px;
      font-size: 10.5px; font-weight: 600; color: var(--navy);
      padding: 9px 0; cursor: pointer; user-select: none;
    }
    .pd-pkg-toggle i { font-size: 13px; transition: transform 0.2s; }
    .pd-pkg-toggle.open i { transform: rotate(180deg); }

    .pd-pkg-other { padding-top: 2px; }
    .pd-pkg-tier-card.pd-pkg-disabled {
      opacity: 0.45; pointer-events: none;
      background: rgba(0,0,0,0.03); filter: grayscale(0.3);
    }
    .pd-pkg-card.pd-pkg-disabled {
      opacity: 0.45; pointer-events: none;
      background: rgba(0,0,0,0.03); filter: grayscale(0.3);
    }
    .pd-pkg-cat-tabs { display: flex; gap: 6px; margin-bottom: 10px; }
    .pd-pkg-cat-tab {
      flex: 1; text-align: center; padding: 8px 4px; border-radius: 8px;
      font-size: 10px; font-weight: 600; color: var(--muted);
      background: rgba(27,42,74,0.05); cursor: pointer; user-select: none;
      transition: background 0.15s, color 0.15s;
    }
    .pd-pkg-cat-tab.active { background: var(--navy); color: var(--gold); }

    .pd-pkg-tier-card {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      border: 1.5px solid rgba(27,42,74,0.14); border-radius: 10px;
      padding: 10px 12px; margin-bottom: 8px; cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
    }
    .pd-pkg-tier-card:last-child { margin-bottom: 0; }
    .pd-pkg-tier-card.selected { border-color: var(--gold); background: rgba(201,168,76,0.05); }
    .pd-pkg-tier-name { font-size: 11.5px; font-weight: 700; color: var(--navy); }
    .pd-pkg-tier-meta { font-size: 9.5px; color: var(--muted); margin-top: 2px; }
    .pd-pkg-tier-price { text-align: right; flex-shrink: 0; }
    .pd-pkg-tier-price .old { display: block; font-size: 9.5px; color: var(--muted); text-decoration: line-through; }
    .pd-pkg-tier-price .new { font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: var(--gold); }

    .pd-pkg-addon-card {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      border: 1.5px dashed rgba(201,168,76,0.45); border-radius: 10px;
      padding: 10px 12px; cursor: pointer; background: rgba(201,168,76,0.04);
      transition: border-color 0.15s, background 0.15s;
    }
    .pd-pkg-addon-card.selected { border-style: solid; border-color: var(--gold); background: rgba(201,168,76,0.08); }
    .pd-pkg-addon-left { flex: 1; }
    .pd-pkg-addon-name { font-size: 11.5px; font-weight: 700; color: var(--navy); }
    .pd-pkg-addon-meta { font-size: 9.5px; color: var(--muted); margin-top: 3px; line-height: 1.45; }
    .pd-pkg-addon-disc { font-size: 9.5px; font-weight: 700; color: var(--gold); margin-top: 3px; }
    .pd-pkg-addon-check { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: color 0.15s; }
    .pd-pkg-addon-check.checked { color: var(--gold); }
    .pd-pkg-addon-price-row { display: flex; align-items: baseline; gap: 7px; margin-top: 7px; padding: 0 2px; }
    .pd-pkg-addon-price-old { font-size: 9.5px; color: var(--muted); text-decoration: line-through; }
    .pd-pkg-addon-price-new { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--gold); }
    .pd-pkg-addon-savings { font-size: 9.5px; font-weight: 600; color: #3aaa6a; background: rgba(58,170,106,0.1); padding: 2px 7px; border-radius: 4px; }
    .pd-pkg-addon-total {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 9px; padding: 10px 12px; border-radius: 8px;
      background: var(--navy); color: rgba(255,255,255,0.85);
      font-size: 10.5px; font-weight: 600;
    }
    .pd-pkg-addon-total b { font-family: var(--ff-display); font-size: 14px; color: var(--gold); font-weight: 700; margin-left: 6px; }

    .buy-toast {
      position: fixed; left: 14px; right: 14px; bottom: 88px; z-index: 500;
      max-width: 362px; margin: 0 auto;
      background: rgba(20,28,46,0.96); backdrop-filter: blur(10px);
      border: 0.5px solid rgba(201,168,76,0.3);
      border-radius: 13px; padding: 11px 13px;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 12px 32px rgba(10,15,28,0.35);
      transform: translateY(140%); opacity: 0; pointer-events: none;
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
    }
    .buy-toast.show { transform: translateY(0); opacity: 1; }
    .buy-toast-icon {
      width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
      background: rgba(201,168,76,0.16); color: var(--gold);
      display: flex; align-items: center; justify-content: center; font-size: 16px;
    }
    .buy-toast-text { flex: 1; font-size: 10.5px; color: rgba(255,255,255,0.92); line-height: 1.4; }
    .buy-toast-text b { color: var(--gold-light); }
    .buy-toast-time { font-size: 9px; color: rgba(255,255,255,0.4); margin-top: 2px; }

    .sb-hero-block {
      margin: 20px 20px 0;
      padding: 30px 22px 26px;
      border-radius: var(--r-card);
      background: linear-gradient(145deg, #0E1A2E 0%, #1B2A4A 40%, #1e2f4a 70%, #16243a 100%);
      position: relative; overflow: hidden;
    }
    .sb-hero-block::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .sb-hero-block::after {
      content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%;
      top: -100px; right: -60px;
      background: radial-gradient(circle, rgba(200,215,235,0.07) 0%, rgba(180,200,225,0.04) 40%, transparent 70%);
    }
    .sb-hero-headline {
      position: relative; z-index: 1;
      font-family: var(--ff-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.28;
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }
    .sb-hero-sub {
      position: relative; z-index: 1;
      font-size: 13px;
      color: rgba(255,255,255,0.85);
      line-height: 1.65;
    }

    .sb-section-divider {
      margin: 18px 20px 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-border), var(--gold), var(--gold-border), transparent);
      opacity: 0.7;
    }

    .sb-prose-block {
      margin: 0 20px;
      padding: 22px 0 20px;
      border-bottom: 0.5px solid var(--border-soft);
    }
    .sb-prose-title {
      font-family: var(--ff-display);
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.4;
      margin-bottom: 10px;
      font-style: italic;
    }
    .sb-prose-body {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.75;
      background: var(--white);
      border: 0.5px solid var(--border-soft);
      border-radius: var(--r-card);
      box-shadow: 0 2px 10px rgba(27,42,74,0.04);
      padding: 16px 18px;
    }

    .sb-ecosystem-block {
      margin: 0 20px;
      padding: 20px 0 22px;
      border-bottom: 0.5px solid var(--border-soft);
    }
    .sb-ecosystem-text {
      font-size: 13px;
      color: var(--graphite);
      line-height: 1.7;
      position: relative;
      padding-left: 16px;
    }
    .sb-ecosystem-text::before {
      content: '';
      position: absolute;
      left: 0;
      top: 4px;
      bottom: 4px;
      width: 3px;
      border-radius: 2px;
      background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.3));
    }

    .app-detail-section {
      padding: 0 20px;
      margin-bottom: 20px;
    }
    .app-detail-headline {
      font-family: var(--ff-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .app-detail-desc {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 0;
    }
    .app-video-slot {
      width: 100%;
      height: 188px;
      background: linear-gradient(135deg, #0E1A2E 0%, #1B2A4A 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 0;
      overflow: hidden;
      position: relative;
      border: 0.5px solid var(--gold-border);
    }
    .app-video-slot-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(201,168,76,0.15);
      border: 1.5px solid rgba(201,168,76,0.35);
      display: flex; align-items: center; justify-content: center;
    }
    .app-video-slot-icon svg { width: 22px; height: 22px; color: var(--gold); }
    .app-video-slot-label {
      font-size: 10px;
      color: rgba(201,168,76,0.6);
      letter-spacing: 0.06em;
      font-weight: 500;
      text-transform: uppercase;
    }
    .app-detail-separator {
      height: 0.5px;
      background: var(--border-soft);
      margin: 0 20px 20px;
    }
    .app-detail-caption {
      font-size: 12px;
      color: var(--graphite);
      line-height: 1.7;
      padding: 0 20px;
      margin-bottom: 20px;
    }
    .app-detail-closing {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.7;
      padding: 0 20px;
      margin-bottom: 20px;
      font-style: italic;
    }
    .app-detail-cta-wrap {
      padding: 0 20px 4px;
    }

    .rule-fit-below {
      display: table;
      padding-bottom: 9px;
      border-bottom: 0.5px solid var(--gold-border);
    }
    .app-detail-headline.rule-fit-below { margin-bottom: 12px; }
    .rule-fit-above {
      display: table;
      padding-top: 12px;
      border-top: 0.5px solid var(--gold-border);
    }
    .btn-app-demo {
      width: 100%;
      padding: 14px 20px;
      background: linear-gradient(135deg, var(--gold) 0%, #b8942e 100%);
      color: var(--navy-deep);
      font-family: var(--ff-body);
      font-size: 13px;
      font-weight: 600;
      border: none;
      border-radius: var(--r-card);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      letter-spacing: 0.02em;
      transition: opacity 0.15s;
    }
    .btn-app-demo:hover { opacity: 0.9; }
    .btn-app-demo svg { width: 18px; height: 18px; flex-shrink: 0; }

    .dvc-overlay {
      position: fixed; inset: 0; z-index: 999999;
      background: rgba(14,26,46,0.72); backdrop-filter: blur(4px);
      display: none; align-items: center; justify-content: center; padding: 24px;
    }
    .dvc-overlay.dvc-open { display: flex; }
    .dvc-box {
      background: var(--ivory); border: 1px solid var(--gold-border);
      border-radius: 20px; padding: 36px 30px 28px; max-width: 360px; width: 100%;
      text-align: center; box-shadow: 0 30px 70px rgba(0,0,0,0.45);
    }
    .dvc-icon {
      width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px;
      background: var(--gold-dim); color: var(--gold);
      display: flex; align-items: center; justify-content: center;
    }
    .dvc-title {
      font-family: var(--ff-display); font-size: 19px; font-weight: 600;
      color: var(--navy); margin-bottom: 10px; letter-spacing: 0.01em;
    }
    .dvc-msg {
      font-family: var(--ff-body); font-size: 13px; color: var(--muted);
      line-height: 1.7; margin-bottom: 26px;
    }
    .dvc-actions { display: flex; flex-direction: column; gap: 8px; }
    .dvc-btn-primary {
      background: var(--navy); color: var(--white); border: none;
      padding: 13px 18px; border-radius: 10px; font-size: 12.5px; font-weight: 600;
      font-family: var(--ff-body); letter-spacing: 0.03em; cursor: pointer;
      transition: opacity 0.15s;
    }
    .dvc-btn-primary:hover { opacity: 0.88; }

    /* [ADDON-REMINDER] Ikon berkedip halus pada note peringatan addon ketenagakerjaan
       (bukan pada modal — modal sudah cukup jadi interupsi utama). */
    @keyframes addonReminderPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    .addon-reminder-pulse { animation: addonReminderPulse 1.6s ease-in-out infinite; }

    /* [ADDON-REMINDER] Modal interupsi sebelum redirect ke checkout — dipicu dari
       submitBeliForm() di app.js saat addon ketenagakerjaan aktif & belum dikonfirmasi. */
    .addon-reminder-overlay {
      position: fixed; inset: 0; z-index: 999999;
      background: rgba(14,26,46,0.72); backdrop-filter: blur(4px);
      display: none; align-items: center; justify-content: center; padding: 24px;
    }
    .addon-reminder-overlay.open { display: flex; }
    .addon-reminder-box {
      background: var(--ivory); border: 1px solid rgba(217,83,79,0.35);
      border-radius: 20px; padding: 32px 26px 26px; max-width: 360px; width: 100%;
      text-align: center; box-shadow: 0 30px 70px rgba(0,0,0,0.45);
    }
    .addon-reminder-icon {
      width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
      background: rgba(217,83,79,0.12); color: #c94a3f;
      display: flex; align-items: center; justify-content: center;
    }
    .addon-reminder-title {
      font-family: var(--ff-display); font-size: 17px; font-weight: 600;
      color: var(--navy); margin-bottom: 10px; letter-spacing: 0.01em;
    }
    .addon-reminder-msg {
      font-family: var(--ff-body); font-size: 12.5px; color: var(--muted);
      line-height: 1.7; margin-bottom: 22px; text-align: left;
    }
    .addon-reminder-actions { display: flex; flex-direction: column; gap: 8px; }
    .addon-reminder-btn-confirm {
      background: #c94a3f; color: var(--white); border: none;
      padding: 13px 18px; border-radius: 10px; font-size: 12.5px; font-weight: 600;
      font-family: var(--ff-body); letter-spacing: 0.02em; cursor: pointer;
      line-height: 1.4; transition: opacity 0.15s;
    }
    .addon-reminder-btn-confirm:hover { opacity: 0.88; }
    .addon-reminder-btn-cancel {
      background: transparent; color: var(--muted); border: none;
      padding: 8px 18px; border-radius: 10px; font-size: 11.5px; font-weight: 600;
      font-family: var(--ff-body); letter-spacing: 0.02em; cursor: pointer;
      transition: opacity 0.15s;
    }
    .addon-reminder-btn-cancel:hover { opacity: 0.7; }

