
      :root {
        --gold: #d4a017;
        --gold-light: #f0c040;
        --gold-dark: #9c7200;
        --gold-pale: #fdf3d0;
        --navy: #0d1b4b;
        --navy-mid: #162a6e;
        --teal: #00b4d8;
        --orange: #f97316;
        --green: #22c55e;
        --purple: #8b5cf6;
        --cream: #fffcf0;
        --white: #ffffff;
        --text-dark: #1a1a2e;
        --text-muted: #64748b;
        --shadow: 0 20px 60px rgba(13, 27, 75, 0.12);
        --shadow-gold: 0 8px 32px rgba(212, 160, 23, 0.35);
        --radius: 18px;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family:
          "Inter Var",
          -apple-system,
          BlinkMacSystemFont,
          "San Francisco",
          "Segoe UI",
          Roboto,
          "Helvetica Neue",
          sans-serif;
        background: var(--cream);
        color: var(--text-dark);
        overflow-x: hidden;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        border-bottom: 1px solid rgba(212, 160, 23, 0.25);
        transition: box-shadow 0.3s;
      }
      nav.scrolled {
        box-shadow: 0 4px 24px rgba(13, 27, 75, 0.1);
      }

      .nav-brand {
        display: flex;
        align-items: center;
        gap: 13px;
        text-decoration: none;
      }
      .logo-hex {
        width: 44px;
        height: 44px;
        position: relative;
        flex-shrink: 0;
      }
      .logo-hex img {
        width: 44px;
        height: 44px;
      }
      .brand-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 0.5px;
        line-height: 1.2;
      }
      .brand-sub {
        font-size: 0.6rem;
        color: rgba(13, 27, 75, 0.45);
        letter-spacing: 2.5px;
        text-transform: uppercase;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
        list-style: none;
      }
      .nav-links a {
        color: var(--navy);
        text-decoration: none;
        font-size: 0.88rem;
        font-weight: 500;
        padding: 7px 16px;
        border-radius: 8px;
        transition: all 0.25s;
        letter-spacing: 0.2px;
      }
      .nav-links a:hover {
        color: var(--gold-dark);
        background: rgba(212, 160, 23, 0.08);
      }
      .nav-links .cta-nav {
        background: var(--gold);
        color: var(--white) !important;
        font-weight: 700;
        border-radius: 50px;
        padding: 8px 22px !important;
      }
      .nav-links .cta-nav:hover {
        background: var(--gold-light);
        transform: translateY(-1px);
        box-shadow: var(--shadow-gold);
      }

      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
      }
      .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s;
      }

      /* ── TENUN SVG PATTERN ── */
      .tenun-strip {
        width: 100%;
        line-height: 0;
        background: white;
        overflow: hidden;
      }
      .tenun-strip svg {
        display: block;
        width: 100%;
        height: 80px;
      }

      /* ── HERO ── */
      .hero {
        min-height: 100vh;
        padding: 70px 5% 70px;
        background: linear-gradient(
          145deg,
          #fffcf0 0%,
          #fef9e7 40%,
          #eef4ff 80%,
          #fffcf0 100%
        );
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      .hero-grid {
        display: none;
      }
      .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.13;
        animation: orbDrift 9s ease-in-out infinite alternate;
      }
      @keyframes orbDrift {
        from {
          transform: translate(0, 0);
        }
        to {
          transform: translate(25px, -35px);
        }
      }

      #particles {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .dot {
        position: absolute;
        border-radius: 50%;
        animation: rise linear infinite;
        opacity: 0;
      }
      @keyframes rise {
        0% {
          transform: translateY(110vh) rotate(0deg);
          opacity: 0;
        }
        8% {
          opacity: 0.7;
        }
        88% {
          opacity: 0.2;
        }
        100% {
          transform: translateY(-80px) rotate(540deg);
          opacity: 0;
        }
      }

      .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 860px;
      }
      .badge-pulse {
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        animation: blink 2s infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.4;
          transform: scale(0.7);
        }
      }

      .hero-title {
        font-size: clamp(2.4rem, 5.5vw, 4.8rem);
        font-weight: 700;
        color: var(--navy);
        line-height: 1.1;
        margin-top: 2rem;
        margin-bottom: 0.9rem;
        animation: fadeUp 0.9s ease 0.2s both;
      }
      .hero-title .gold {
        color: var(--gold);
        display: block;
        filter: drop-shadow(0 0 28px rgba(212, 160, 23, 0.35));
      }
      .hero-sub {
        font-size: clamp(0.95rem, 1.8vw, 1.18rem);
        color: var(--text-muted);
        max-width: 580px;
        margin: 0 auto 2.5rem;
        line-height: 1.75;
        font-weight: 400;
        animation: fadeUp 0.9s ease 0.4s both;
      }
      .hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeUp 0.9s ease 0.6s both;
      }

      .btn-gold {
        background: linear-gradient(130deg, var(--gold), var(--gold-light));
        color: var(--white);
        font-family: inherit;
        font-size: 0.92rem;
        font-weight: 700;
        padding: 13px 30px;
        border-radius: 50px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-gold);
        transition: all 0.3s;
      }
      .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(212, 160, 23, 0.5);
      }
      .btn-ghost {
        border: 1.5px solid rgba(13, 27, 75, 0.22);
        color: var(--navy);
        font-size: 0.92rem;
        font-weight: 500;
        padding: 13px 30px;
        border-radius: 50px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;
      }
      .btn-ghost:hover {
        border-color: var(--gold);
        color: var(--gold-dark);
        background: rgba(212, 160, 23, 0.07);
      }

      .hero-stats {
        display: flex;
        gap: 3rem;
        justify-content: center;
        margin-top: 4rem;
        flex-wrap: wrap;
        animation: fadeUp 0.9s ease 0.8s both;
      }
      .stat {
        text-align: center;
      }
      .stat-n {
        font-size: 2.1rem;
        font-weight: 700;
        color: var(--gold-dark);
        line-height: 1;
      }
      .stat-l {
        font-size: 0.68rem;
        color: var(--text-muted);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-top: 5px;
      }
      .stat-divider {
        width: 1px;
        background: rgba(13, 27, 75, 0.12);
        align-self: stretch;
        margin: 4px 0;
      }

      @keyframes fadeDown {
        from {
          opacity: 0;
          transform: translateY(-18px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(28px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ── ABOUT ── */
      .about {
        padding: 6rem 5%;
        background: var(--white);
      }
      .about-wrap {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }
      .eyebrow {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold-dark);
        margin-bottom: 0.75rem;
      }
      .sec-title {
        font-size: clamp(1.7rem, 2.8vw, 2.4rem);
        font-weight: 700;
        color: var(--navy);
        line-height: 1.2;
        margin-bottom: 1.2rem;
      }
      .sec-body {
        color: var(--text-muted);
        line-height: 1.85;
        font-size: 0.97rem;
      }

      .about-card {
        background: linear-gradient(145deg, #0d1b4b, #1a0f3d);
        border-radius: 22px;
        padding: 2.5rem;
        border: 1px solid rgba(212, 160, 23, 0.18);
        position: relative;
        overflow: hidden;
      }
      .about-card-deco {
        position: absolute;
        top: -10px;
        right: -10px;
        opacity: 0.06;
      }
      .feat-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem;
        margin-top: 1.5rem;
      }
      .feat-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
      }
      .feat-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 15px;
      }
      .feat-txt {
        font-size: 0.83rem;
        color: #fffff0;
        line-height: 1.45;
      }
      .about-card-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #fffff0;
        margin-bottom: 0.5rem;
      }
      .about-card-heading {
        font-size: 1.25rem;
        color: var(--gold-light);
        margin-bottom: 1.5rem;
        line-height: 1.35;
      }

      /* ── SERVICES ── */
      .services {
        padding: 6rem 5%;
        background: var(--cream);
        position: relative;
      }
      .services::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(212, 160, 23, 0.04) 1.5px,
          transparent 1.5px
        );
        background-size: 40px 40px;
        pointer-events: none;
      }
      .svc-header {
        text-align: center;
        max-width: 580px;
        margin: 0 auto 3.5rem;
      }
      .svc-desc {
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-top: 0.75rem;
        line-height: 1.7;
      }

      /* 6-col grid, each card = 2 cols; last 2 centered */
      .svc-grid {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 1.4rem;
      }
      .svc-grid .card {
        grid-column: span 2;
      }

      .card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 1.9rem;
        border: 1px solid rgba(0, 0, 0, 0.055);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: block;
        color: inherit;
        transition:
          transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
          box-shadow 0.4s,
          border-color 0.4s;
        cursor: pointer;
      }
      .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3.5px;
        background: var(--accent, var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.45s ease;
      }
      .card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
      }
      .card:hover::before {
        transform: scaleX(1);
      }

      .card-shine {
        position: absolute;
        top: 0;
        left: -80%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
          105deg,
          transparent 30%,
          rgba(255, 255, 255, 0.035) 50%,
          transparent 70%
        );
        transform: skewX(-15deg);
        transition: left 0.65s ease;
        pointer-events: none;
      }
      .card:hover .card-shine {
        left: 150%;
      }

      .card-icon {
        width: 58px;
        height: 58px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.2rem;
        background: var(--icon-bg, rgba(212, 160, 23, 0.1));
      }
      .card-tag {
        display: inline-block;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 50px;
        margin-bottom: 0.7rem;
        background: var(--tag-bg, rgba(212, 160, 23, 0.1));
        color: var(--tag-txt, var(--gold-dark));
      }
      .card-title {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 0.7rem;
        line-height: 1.3;
      }
      .card-desc {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.65;
      }
      .card-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--accent, var(--gold));
        margin-top: 1.2rem;
        transition: gap 0.2s;
      }
      .card:hover .card-cta {
        gap: 10px;
      }

      /* ── CTA ── */
      .cta-sect {
        padding: 5.5rem 5%;
        background: linear-gradient(
          135deg,
          #0a1237 0%,
          #0d1b4b 50%,
          #150c38 100%
        );
        position: relative;
        overflow: hidden;
        text-align: center;
      }
      .cta-sect::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          rgba(212, 160, 23, 0.04) 1px,
          transparent 1px
        );
        background-size: 38px 38px;
        pointer-events: none;
      }
      .cta-wrap {
        position: relative;
        z-index: 2;
        max-width: 720px;
        margin: 0 auto;
      }
      .cta-title {
        font-size: clamp(1.7rem, 2.8vw, 2.3rem);
        color: #fff;
        font-weight: 700;
        margin-bottom: 0.9rem;
      }
      .cta-body {
        color: #fffff0;
        font-size: 0.97rem;
        line-height: 1.8;
        margin-bottom: 2.8rem;
        font-weight: 300;
      }
      .cta-cards {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }
      .cta-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 160, 23, 0.2);
        border-radius: 15px;
        padding: 1.2rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 13px;
        color: #fff;
        text-decoration: none;
        min-width: 195px;
        transition: all 0.3s;
      }
      .cta-card:hover {
        background: rgba(212, 160, 23, 0.1);
        border-color: var(--gold);
        transform: translateY(-4px);
      }
      .cta-icon {
        font-size: 26px;
      }
      .cta-label {
        font-size: 0.62rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #fffff0;
      }
      .cta-name {
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--gold-light);
      }

      /* ── FOOTER ── */
      footer {
        background: #05091c;
        padding: 3.5rem 5% 1.8rem;
        border-top: 1px solid rgba(212, 160, 23, 0.12);
      }
      .foot-inner {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
      }
      .foot-desc {
        font-size: 0.85rem;
        color: #fffff0;
        line-height: 1.75;
        margin-top: 0.9rem;
        max-width: 290px;
      }
      .foot-head {
        font-size: 0.67rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.2rem;
      }
      .foot-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
      }
      .foot-links a {
        color: #fffff0;
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.2s;
      }
      .foot-links a:hover {
        color: var(--gold-light);
      }
      .foot-bottom {
        max-width: 1180px;
        margin: 2rem auto 0;
        padding-top: 1.4rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.75);
        flex-wrap: wrap;
        gap: 0.5rem;
      }

      /* ── REVEAL ── */
      .reveal {
        opacity: 0;
        transform: translateY(35px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.in {
        opacity: 1;
        transform: translateY(0);
      }
      .d1 {
        transition-delay: 0.1s;
      }
      .d2 {
        transition-delay: 0.2s;
      }
      .d3 {
        transition-delay: 0.3s;
      }
      .d4 {
        transition-delay: 0.4s;
      }
      .d5 {
        transition-delay: 0.5s;
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 960px) {
        .about-wrap {
          grid-template-columns: 1fr;
        }
        .svc-grid {
          grid-template-columns: repeat(4, 1fr);
        }
        .svc-grid .card {
          grid-column: span 2;
        }
        .svc-grid .card:nth-child(4) {
          grid-column: 1/3;
        }
        .svc-grid .card:nth-child(5) {
          grid-column: 3/5;
        }
        .foot-inner {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 640px) {
        .svc-grid {
          grid-template-columns: 1fr;
        }
        .svc-grid .card,
        .svc-grid .card:nth-child(4),
        .svc-grid .card:nth-child(5) {
          grid-column: 1/-1;
        }
        .hero-stats {
          gap: 1.5rem;
        }
        .stat-divider {
          display: none;
        }
        .foot-inner {
          grid-template-columns: 1fr;
        }
        .nav-links {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .nav-links.open {
          display: flex;
          flex-direction: column;
          position: fixed;
          top: 70px;
          left: 0;
          right: 0;
          background: rgba(255, 255, 255, 0.98);
          padding: 1.5rem;
          border-bottom: 1px solid rgba(212, 160, 23, 0.2);
          z-index: 998;
          box-shadow: 0 8px 24px rgba(13, 27, 75, 0.1);
        }
      }

      /* ── PLATFORM MITRA ── */
      .platform-sect {
        padding: 5rem 5%;
        background: var(--white);
      }
      .platform-header {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 3rem;
      }
      .platform-category {
        max-width: 1180px;
        margin: 0 auto 2.5rem;
      }
      .cat-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2.2px;
        text-transform: uppercase;
        color: var(--navy);
        margin-bottom: 1.1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(13, 27, 75, 0.07);
      }
      .cat-emoji {
        font-size: 1rem;
      }
      .platform-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.1rem;
      }
      .p-card {
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.07);
        border-radius: 14px;
        padding: 1.3rem;
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        cursor: pointer;
      }
      .p-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--p-accent, var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
      }
      .p-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
        border-color: var(--p-accent, var(--gold));
      }
      .p-card:hover::before {
        transform: scaleX(1);
      }
      .p-logo {
        width: 52px;
        height: 52px;
        border-radius: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: var(--p-bg, rgba(212, 160, 23, 0.1));
      }
      .p-name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--navy);
        margin-bottom: 2px;
      }
      .p-url {
        font-size: 0.72rem;
        color: var(--p-accent, var(--gold-dark));
        margin-bottom: 0.35rem;
        font-weight: 500;
      }
      .p-desc {
        font-size: 0.77rem;
        color: var(--text-muted);
        line-height: 1.5;
      }

      /* ── KANAL STRIP ── */
      .kanal-strip {
        background: linear-gradient(
          135deg,
          #0a1237 0%,
          #0d1b4b 60%,
          #150c38 100%
        );
        padding: 2.8rem 5%;
        border-top: 1px solid rgba(212, 160, 23, 0.15);
        border-bottom: 1px solid rgba(212, 160, 23, 0.15);
      }
      .kanal-inner {
        max-width: 1180px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .kanal-title-strip {
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: white;
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 0.3rem;
      }
      .kanal-btn {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 11px 22px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: white;
        text-decoration: none;
        font-size: 0.84rem;
        font-weight: 500;
        transition: all 0.3s;
      }
      .kanal-btn:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: var(--gold);
        color: var(--gold-light);
      }
      .kanal-btn.wa {
        background: rgba(37, 211, 102, 0.1);
        border-color: rgba(37, 211, 102, 0.3);
        color: #4ade80;
      }
      .kanal-btn.wa:hover {
        background: rgba(37, 211, 102, 0.18);
        border-color: #4ade80;
      }
      .kanal-dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
      }

      /* ── HOTLINE ── */
      .hotline-sect {
        padding: 4.5rem 5%;
        background: var(--cream);
      }
      .hotline-grid {
        max-width: 1180px;
        margin: 2rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
      }
      .hl-card {
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.07);
        border-radius: 14px;
        padding: 1.2rem 1.4rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
      }
      .hl-card:hover {
        border-color: var(--hl-color, var(--gold));
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
        transform: translateY(-3px);
      }
      .hl-icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--hl-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 20px;
      }
      .hl-sub {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--text-muted);
      }
      .hl-number {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--hl-color, var(--navy));
        line-height: 1.2;
      }
      .hl-org {
        font-size: 0.76rem;
        color: var(--text-muted);
        margin-top: 1px;
      }

      /* ── WILAYAH ── */
      .wilayah-sect {
        padding: 5rem 5%;
        background: var(--white);
      }
      .wilayah-grid {
        max-width: 1180px;
        margin: 2.5rem auto 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
      }
      .wil-card {
        background: var(--cream);
        border: 1px solid rgba(212, 160, 23, 0.12);
        border-radius: 14px;
        padding: 1.2rem 1.4rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
      }
      .wil-card.prov {
        background: linear-gradient(135deg, #0d1b4b 0%, #162a6e 100%);
        border-color: var(--gold);
        grid-column: 1 / -1;
      }
      .wil-card:hover {
        border-color: var(--gold);
        box-shadow: 0 6px 20px rgba(212, 160, 23, 0.12);
        transform: translateY(-3px);
      }
      .wil-card.prov:hover {
        box-shadow: 0 10px 30px rgba(13, 27, 75, 0.3);
      }
      .wil-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        background: rgba(212, 160, 23, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 18px;
      }
      .wil-card.prov .wil-icon-wrap {
        background: rgba(212, 160, 23, 0.18);
      }
      .wil-region {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 1px;
      }
      .wil-card.prov .wil-region {
        color: var(--gold-light);
        font-size: 0.88rem;
      }
      .wil-phone {
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--gold-dark);
      }
      .wil-card.prov .wil-phone {
        color: var(--gold);
        font-size: 0.98rem;
      }
      .wil-type {
        font-size: 0.66rem;
        color: var(--text-muted);
        letter-spacing: 0.4px;
      }
      .wil-card.prov .wil-type {
        color: rgba(255, 255, 255, 0.45);
      }
      .konseling-sect {
        padding: 5rem 5%;
        background: var(--cream);
      }

      .edukasi-sect {
        padding: 5rem 5%;
        background: var(--cream);
        position: relative;
      }

      /* Header tetap pakai style global kamu (platform-header, sec-title, svc-desc) */

      /* Grid buku */
      .edukasi-sect .platform-grid {
        margin-top: 2.5rem;
      }

      /* Card buku (reuse p-card tapi kita enhance) */
      .edukasi-sect .p-card {
        position: relative;
        display: flex;
        gap: 14px;
        padding: 16px 18px;
        border-radius: 14px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        text-decoration: none;
        transition: all 0.25s ease;
        overflow: hidden;
      }

      /* Hover effect halus */
      /*.edukasi-sect .p-card:hover {*/
      /*  transform: translateY(-4px);*/
      /*  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);*/
      /*}*/

      /* Icon buku */
      .edukasi-sect .p-logo {
        font-size: 1.8rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
      }

      /* Judul buku */
      .edukasi-sect .p-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--navy);
      }

      /* Meta (PDF, ukuran, dll) */
      .edukasi-sect .p-url {
        font-size: 0.75rem;
        color: #777;
        margin-top: 2px;
      }

      /* Deskripsi */
      .edukasi-sect .p-desc {
        font-size: 0.78rem;
        color: #555;
        margin-top: 4px;
        line-height: 1.4;
      }

      /* Badge (opsional) */
      .edukasi-sect .badge {
        display: inline-block;
        font-size: 0.6rem;
        background: rgba(0, 0, 0, 0.05);
        color: #333;
        padding: 3px 7px;
        border-radius: 6px;
        margin-top: 6px;
      }

      /* Hover highlight kiri */
      /*.edukasi-sect .p-card::before {*/
      /*  content: "";*/
      /*  position: absolute;*/
      /*  left: 0;*/
      /*  top: 0;*/
      /*  height: 100%;*/
      /*  width: 4px;*/
      /*  background: var(--gold);*/
      /*  opacity: 0;*/
      /*  transition: 0.3s;*/
      /*}*/

      /*.edukasi-sect .p-card:hover::before {*/
      /*  opacity: 1;*/
      /*}*/

      @media (max-width: 768px) {
        .wilayah-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 480px) {
        .wilayah-grid {
          grid-template-columns: 1fr;
        }
        .platform-grid {
          grid-template-columns: 1fr;
        }
      }
      
      /* ══════════════════════════════════════════════════════════
   STATISTIK INTERAKSI
   Tambahkan di bagian bawah public/css/siber-sehat.css
   ══════════════════════════════════════════════════════════ */

/* ── Section wrapper ─────────────────────────────────────── */
.statistik-sect {
    padding: 5rem 5%;
    background: linear-gradient(160deg, #0a1237 0%, #0d1b4b 55%, #150c38 100%);
    position: relative;
    overflow: hidden;
}
.statistik-sect::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212,160,23,.04) 1.5px, transparent 1.5px);
    background-size: 38px 38px;
    pointer-events: none;
}
.statistik-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Header ──────────────────────────────────────────────── */
.statistik-header .eyebrow { color: var(--gold); }
.statistik-header .sec-title { color: #fff; }
.statistik-header .svc-desc { color: rgba(255,255,255,.55); }

/* ── Total besar ─────────────────────────────────────────── */
.stat-total {
    text-align: center;
    margin: 2.5rem 0 3rem;
    padding: 2rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,160,23,.18);
    border-radius: 20px;
}
.stat-total-number {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: -1px;
}
.stat-total-label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-top: .6rem;
}
.stat-total-updated {
    font-size: .72rem;
    color: rgba(255,255,255,.25);
    margin-top: .5rem;
}

/* ── Bar chart ───────────────────────────────────────────── */
.stat-bars {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-bottom: 3rem;
}
.stat-bar-item {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.stat-bar-meta {
    display: flex;
    align-items: center;
    gap: .55rem;
}
.stat-bar-icon  { font-size: 1rem; width: 22px; text-align: center; }
.stat-bar-label {
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    flex: 1;
}
.stat-bar-count {
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold-light);
    min-width: 40px;
    text-align: right;
}
.stat-bar-track {
    height: 7px;
    background: rgba(255,255,255,.07);
    border-radius: 50px;
    overflow: hidden;
}
.stat-bar-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
    min-width: 4px;
}

/* ── Grid kartu ──────────────────────────────────────────── */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.stat-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 1.3rem 1rem;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--sc-color, var(--gold));
    opacity: 0;
    transition: opacity .3s;
}
.stat-card:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--sc-color, var(--gold));
    transform: translateY(-4px);
}
.stat-card:hover::before { opacity: 1; }

.stat-card-icon  { font-size: 1.6rem; margin-bottom: .5rem; }
.stat-card-num   {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sc-color, var(--gold-light));
    line-height: 1;
    margin-bottom: .3rem;
}
.stat-card-label {
    font-size: .7rem;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-bottom: .7rem;
}
.stat-card-bar {
    height: 4px;
    background: rgba(255,255,255,.07);
    border-radius: 50px;
    overflow: hidden;
}
.stat-card-bar-fill {
    height: 100%;
    background: var(--sc-color, var(--gold));
    border-radius: 50px;
    opacity: .7;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
    min-width: 4px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .stat-total-number { font-size: 3rem; }
}

/* ══════════════════════════════════════════════════════════
   GALERI EDUKASI
   ══════════════════════════════════════════════════════════ */
.galeri-sect {
    padding: 5rem 5%;
    background: var(--white);
}

/* Tabs */
.galeri-tabs {
    max-width: 440px;
    margin: 0 auto 2.5rem;
    display: flex;
    gap: 4px;
    background: var(--cream);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, .15);
}
.galeri-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .3s;
}
.galeri-tab.active {
    background: var(--gold);
    color: white;
    box-shadow: var(--shadow-gold);
}
.galeri-count {
    font-size: .68rem;
    background: rgba(255, 255, 255, .25);
    padding: 2px 9px;
    border-radius: 50px;
    font-weight: 700;
}
.galeri-tab:not(.active) .galeri-count {
    background: rgba(13, 27, 75, .08);
    color: var(--navy);
}

/* Grid */
.galeri-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.galeri-grid.active {
    display: grid;
    animation: galeriIn .4s ease;
}
@keyframes galeriIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.galeri-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border: none;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    font-family: inherit;
    transition: transform .35s ease, box-shadow .35s ease;
}
.galeri-card-video {
    aspect-ratio: 16 / 10;
}
.galeri-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .15);
}
.galeri-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.galeri-card:hover img {
    transform: scale(1.06);
}
.galeri-card.img-error::after {
    content: '🖼️';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    opacity: .3;
}

/* Play button (video) */
.galeri-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(212, 160, 23, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    transition: all .3s;
    z-index: 2;
}
.galeri-play svg { margin-left: 2px; }
.galeri-card:hover .galeri-play {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--gold);
}

/* Duration badge */
.galeri-duration {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .75);
    color: white;
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Overlay */
.galeri-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .35) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    color: white;
    text-align: left;
    opacity: .85;
    transition: opacity .3s;
}
.galeri-card:hover .galeri-overlay { opacity: 1; }
.galeri-cat {
    display: inline-block;
    width: fit-content;
    font-size: .6rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: var(--gold);
    color: white;
    padding: 3px 9px;
    border-radius: 50px;
    margin-bottom: 8px;
    font-weight: 700;
}
.galeri-overlay h4 {
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}
.galeri-overlay p {
    font-size: .72rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity .3s;
}
.lightbox.open {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    max-width: 95vw;
    max-height: 82vh;
    position: relative;
    animation: lbZoom .35s cubic-bezier(.4,0,.2,1);
}
@keyframes lbZoom {
    from { transform: scale(.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.lightbox-content img {
    max-width: 95vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    display: block;
}
.lightbox-content iframe {
    width: min(90vw, 960px);
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 8px;
    background: black;
    display: block;
}
.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 10;
}
.lightbox-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}
.lightbox-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: .88rem;
    font-weight: 500;
    text-align: center;
    max-width: 80%;
    background: rgba(0, 0, 0, .55);
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
}

/* Responsive */
@media (max-width: 960px) {
    .galeri-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .galeri-grid { grid-template-columns: repeat(2, 1fr); }
    .lightbox-close { top: .8rem; right: .8rem; }
}
@media (max-width: 380px) {
    .galeri-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   MITRA LOGO STRIP
   ══════════════════════════════════════════════════════════ */
.mitra-logo-sect {
    padding: 4.5rem 5%;
    background: var(--white);
    position: relative;
    border-top: 1px solid rgba(212, 160, 23, .08);
}
.mitra-logo-sect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mitra-logo-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.mitra-logo-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem;
}

.mitra-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.mitra-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 1.5rem 1rem;
    background: var(--cream);
    border: 1px solid rgba(212, 160, 23, .1);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-muted);
    text-align: center;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    aspect-ratio: 1;
}

.mitra-logo-item img {
    max-width: 100%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(.55);
    transition: filter .4s ease, transform .4s ease;
}

.mitra-logo-name {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 1.3;
    color: var(--text-muted);
    transition: color .3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mitra-logo-item:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(212, 160, 23, .12);
}
.mitra-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.06);
}
.mitra-logo-item:hover .mitra-logo-name {
    color: var(--navy);
}

/* Responsive */
@media (max-width: 1024px) {
    .mitra-logo-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
    .mitra-logo-grid { grid-template-columns: repeat(3, 1fr); gap: .7rem; }
    .mitra-logo-sect { padding: 3.5rem 5%; }
    .mitra-logo-item { padding: 1rem .6rem; }
    .mitra-logo-item img { max-height: 48px; }
    .mitra-logo-name { font-size: .6rem; }
}
@media (max-width: 380px) {
    .mitra-logo-grid { grid-template-columns: repeat(2, 1fr); }
}
.mitra-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.mitra-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 35s linear infinite;
}
.mitra-marquee:hover .mitra-track { animation-play-state: paused; }
.mitra-marquee-item {
    flex-shrink: 0;
    padding: 1rem 1.5rem;
}
.mitra-marquee-item img {
    height: 60px;
    width: auto;
    filter: grayscale(100%) opacity(.6);
    transition: filter .3s;
}
.mitra-marquee-item:hover img { filter: grayscale(0) opacity(1); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   TESTIMONI MITRA
   ══════════════════════════════════════════════════════════ */
.testimoni-sect {
    padding: 6rem 5%;
    background: linear-gradient(160deg, #0a1237 0%, #0d1b4b 50%, #150c38 100%);
    position: relative;
    overflow: hidden;
}
.testimoni-bg-decor {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212,160,23,.04) 1.5px, transparent 1.5px);
    background-size: 38px 38px;
    pointer-events: none;
}
.testimoni-wrap {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.testimoni-header { margin-bottom: 3rem; }

/* Card */
.testimoni-stage { position: relative; }
.testimoni-card {
    display: none;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(212, 160, 23, .18);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}
.testimoni-card.active {
    display: grid;
    animation: testimoniIn .5s cubic-bezier(.4, 0, .2, 1);
}
@keyframes testimoniIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Video */
/* Video wrapper (Google Drive embed) */
.testimoni-video-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .08);
}

/* Poster image */
.testimoni-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .3s, transform .5s;
}
.testimoni-video-wrap:hover .testimoni-poster {
    transform: scale(1.04);
}

/* Play button */
.testimoni-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 160, 23, .95);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 2;
}
.testimoni-play::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(212, 160, 23, .4);
    animation: playPulse 2s ease-out infinite;
}
@keyframes playPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}
.testimoni-play svg { margin-left: 4px; }
.testimoni-video-wrap:hover .testimoni-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold);
}

/* Iframe (hidden by default) */
.testimoni-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 3;
}

/* Playing state */
.testimoni-video-wrap.playing .testimoni-iframe {
    opacity: 1;
    pointer-events: auto;
}
.testimoni-video-wrap.playing .testimoni-poster,
.testimoni-video-wrap.playing .testimoni-play {
    opacity: 0;
    pointer-events: none;
}

.testimoni-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Content */
.testimoni-content {
    position: relative;
    color: white;
}
.testimoni-quote-mark {
    width: 36px;
    height: 32px;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: .85;
}
.testimoni-quote {
    font-size: clamp(1.02rem, 1.5vw, 1.25rem);
    line-height: 1.65;
    font-weight: 300;
    color: rgba(255, 255, 255, .92);
    font-style: italic;
    margin: 0 0 2rem 0;
    border: none;
    padding: 0;
}

/* Speaker */
.testimoni-speaker {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.testimoni-foto {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--t-color, var(--gold)), var(--gold-dark));
    border: 2px solid var(--gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimoni-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.testimoni-initial {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
    z-index: 0;
}
.testimoni-info { flex: 1; min-width: 0; }
.testimoni-nama {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 2px;
}
.testimoni-jabatan {
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .55rem;
}
.testimoni-lembaga {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.35;
}
.testimoni-lembaga img {
    height: 22px;
    width: auto;
    object-fit: contain;
    opacity: .85;
}

/* Selector pills */
.testimoni-selector {
    display: flex;
    justify-content: center;
    gap: .55rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.testimoni-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    color: rgba(255, 255, 255, .7);
    font-family: inherit;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}
.testimoni-pill img {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1) opacity(.7);
}
.testimoni-pill:hover {
    background: rgba(212, 160, 23, .1);
    border-color: rgba(212, 160, 23, .3);
    color: white;
}
.testimoni-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
    box-shadow: var(--shadow-gold);
}
.testimoni-pill.active img { filter: brightness(0) invert(1); }

/* Responsive */
@media (max-width: 900px) {
    .testimoni-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.8rem;
    }
}
@media (max-width: 540px) {
    .testimoni-sect { padding: 4rem 5%; }
    .testimoni-card { padding: 1.4rem; border-radius: 18px; }
    .testimoni-quote { font-size: 1rem; }
    .testimoni-speaker {
        flex-direction: column;
        align-items: flex-start;
        gap: .9rem;
    }
}