/* ============================================================
   VEECTRA — Design Tokens
   Konsep: motif "kartu presensi" (chip, garis pita magnetik,
   lubang perforasi) sebagai elemen visual berulang, dipadukan
   dengan "segel akreditasi" emas untuk konten kredensial.
   ============================================================ */

:root {
  /* Color */
  --ink-900: #10182B;      /* navy paling gelap - teks & bg utama */
  --ink-800: #16213D;
  --ink-700: #1D2C4C;
  --chalk-700: #1F3A2E;    /* hijau papan tulis - aksen sekunder */
  --chalk-500: #35604A;
  --gold-500: #C9A227;     /* segel akreditasi / pencapaian */
  --gold-300: #E4C465;
  --paper-100: #F4F5F2;    /* latar terang - bukan krem hangat */
  --paper-200: #E8EAE4;
  --paper-300: #D8DBD2;
  --line: rgba(16, 24, 43, 0.12);
  --line-light: rgba(244, 245, 242, 0.16);

  /* Type */
  --font-display: "Roboto Slab", "Georgia", serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-card: 18px;
  --radius-chip: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper-100);
  color: var(--ink-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: rgba(16,24,43,0.78); }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* ---------------- Nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,24,43,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-light);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem;
  color: var(--paper-100);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .chip { width: 22px; height: 16px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--paper-300); font-size: 0.92rem; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gold-300); }
.nav-cta {
  background: var(--gold-500); color: var(--ink-900) !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-300) !important; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; background: none; border: none; color: var(--paper-100); font-size: 1.5rem; cursor: pointer; }
}

/* ---------------- Hero ---------------- */
.hero {
  background: linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 100%);
  color: var(--paper-100);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
/* Cahaya emas lembut + pola titik dekoratif */
.hero::before {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.18), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -60px; left: -60px;
  width: 360px; height: 360px; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(244,245,242,0.12) 1.5px, transparent 1.6px);
  background-size: 22px 22px;
}
.hero .container { position: relative; z-index: 1; }
.hero .container {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 88px 0 64px; }
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--paper-100);
  margin-bottom: 0.4em;
}
.hero h1 em {
  font-style: normal; color: var(--gold-300);
}
.hero p.lead {
  font-size: 1.1rem; color: var(--paper-300); max-width: 46ch;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold-500); color: var(--ink-900); }
.btn-gold:hover { background: var(--gold-300); }
.btn-outline { border-color: var(--line-light); color: var(--paper-100); }
.btn-outline:hover { border-color: var(--gold-300); color: var(--gold-300); }
.btn-dark { border-color: var(--line); color: var(--ink-900); }
.btn-dark:hover { border-color: var(--ink-900); }

/* ---- Signature element: kartu presensi ---- */
.id-card {
  background: linear-gradient(135deg, var(--chalk-700), var(--ink-800));
  border-radius: var(--radius-card);
  padding: 28px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  border: 1px solid var(--line-light);
  aspect-ratio: 1.586 / 1;
  width: 100%;
  max-width: 380px;
  min-height: 220px;      /* fallback bila aspect-ratio tak didukung */
  color: var(--paper-100);
}
.id-card::before {
  content: "";
  position: absolute; top: 28px; left: 28px;
  width: 42px; height: 32px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: var(--radius-chip);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.id-card::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 14px;
  background-image: radial-gradient(circle, rgba(244,245,242,0.35) 2px, transparent 2.2px);
  background-size: 16px 14px;
  background-repeat: repeat-x;
  background-position: center;
}
.id-card .card-label { position: absolute; top: 34px; left: 84px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; color: var(--paper-300); }
.id-card .card-name { position: absolute; bottom: 40px; left: 28px; font-family: var(--font-display); font-size: 1.05rem; }
.id-card .card-role { position: absolute; bottom: 22px; left: 28px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold-300); letter-spacing: 0.06em; }
.id-card .card-wave { position: absolute; top: 26px; right: 26px; width: 26px; height: 26px; border: 2px solid var(--gold-300); border-radius: 50%; opacity: 0.7; }
.id-card .card-wave::before, .id-card .card-wave::after {
  content: ""; position: absolute; border: 2px solid var(--gold-300); border-radius: 50%; opacity: 0.5;
}
.id-card .card-wave::before { inset: -8px; }
.id-card .card-wave::after { inset: -16px; opacity: 0.3; }

/* ---------------- Logos strip ---------------- */
.logos-strip {
  padding: 40px 0; border-bottom: 1px solid var(--line);
  background: var(--paper-200);
}
.logos-strip .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.logos-strip .label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(16,24,43,0.5); white-space: nowrap; }
.logos-strip .logos { display: flex; gap: 32px; flex-wrap: wrap; opacity: 0.6; font-weight: 600; font-family: var(--font-display); }

/* ---------------- Stats ---------------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
@media (max-width: 780px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { padding-top: 20px; border-top: 2px solid var(--ink-900); }
.stat .num {
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  color: var(--ink-900); display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 12px;
}
.stat .num > span:first-child { color: var(--gold-500); }
.stat .num .unit {
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--ink-900);
}
.stat .desc { font-size: 0.88rem; color: rgba(16,24,43,0.6); line-height: 1.5; }

/* ---------------- Section headers ---------------- */
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

/* ---------------- Product cards ---------------- */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--ink-900);
  color: var(--paper-100);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
  transition: transform 0.2s;
  display: flex; flex-direction: column; min-height: 260px;
}
.product-card:hover { transform: translateY(-4px); }
.product-card .chip-mark {
  width: 34px; height: 26px; border-radius: 5px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  margin-bottom: 22px;
}
.product-card h3 { font-size: 1.15rem; color: var(--paper-100); }
.product-card p { color: var(--paper-300); font-size: 0.92rem; flex-grow: 1; }
.product-card .tag {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em;
  color: var(--gold-300); text-transform: uppercase; margin-top: 16px;
}
.product-card.accent { background: linear-gradient(160deg, var(--chalk-700), var(--ink-800)); }

/* ---------------- Process (numbered - genuinely sequential) ---------------- */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 28px 0; border-top: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item .step-num { font-family: var(--font-mono); font-size: 0.95rem; color: var(--gold-500); font-weight: 600; }
.process-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.process-item p { margin: 0; max-width: 60ch; }

/* ---------------- Seal (akreditasi) ---------------- */
.seal-block {
  background: var(--chalk-700);
  border-radius: var(--radius-card);
  padding: 56px 48px;
  color: var(--paper-100);
  display: grid; grid-template-columns: 140px 1fr; gap: 40px; align-items: center;
}
@media (max-width: 720px) { .seal-block { grid-template-columns: 1fr; text-align: left; padding: 40px 28px; } }
.seal {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em;
  color: var(--gold-300); text-align: center;
}
.seal::before {
  content: ""; position: absolute; inset: 8px; border: 1px dashed var(--gold-300); border-radius: 50%; opacity: 0.6;
}

/* ---------------- Testimoni ---------------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 780px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--paper-100); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 28px;
}
.testi-card .quote { font-size: 1.02rem; color: var(--ink-900); }
.testi-card .who { font-family: var(--font-mono); font-size: 0.78rem; color: rgba(16,24,43,0.55); margin-top: 12px; }

/* ---------------- CTA band ---------------- */
.cta-band {
  background: var(--ink-900); color: var(--paper-100); text-align: center;
  padding: 80px 0;
}
.cta-band h2 { color: var(--paper-100); max-width: 560px; margin: 0 auto 12px; }
.cta-band p { color: var(--paper-300); max-width: 520px; margin: 0 auto 32px; }

/* ---------------- Footer ---------------- */
footer {
  background: var(--ink-900); color: var(--paper-300);
  border-top: 1px solid var(--line-light);
  padding: 56px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-300); margin-bottom: 14px; }
.footer-grid a, .footer-grid p { display: block; font-size: 0.9rem; color: var(--paper-300); margin-bottom: 8px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(244,245,242,0.5);
  flex-wrap: wrap; gap: 12px;
}

/* ---------------- Page header (subpages) ---------------- */
.page-header {
  background: var(--ink-900); color: var(--paper-100); padding: 72px 0 56px;
}
.page-header h1 { color: var(--paper-100); font-size: clamp(2rem, 3.4vw, 2.7rem); }
.page-header p { color: var(--paper-300); max-width: 60ch; }

/* ---------------- Package/pricing table ---------------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg-card {
  border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 32px 26px; background: var(--paper-100);
  display: flex; flex-direction: column;
}
.pkg-card.featured { border-color: var(--gold-500); box-shadow: 0 20px 40px -24px rgba(201,162,39,0.4); }
.pkg-card .pkg-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 6px; }
.pkg-card .pkg-desc { font-size: 0.88rem; color: rgba(16,24,43,0.6); margin-bottom: 20px; }
.pkg-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.pkg-card li { font-size: 0.9rem; padding: 8px 0; border-top: 1px dashed var(--line); }
.pkg-card li:first-child { border-top: none; }

/* ---------------- Contact form ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem;
  background: #fff;
}
.form-field textarea { min-height: 110px; resize: vertical; }

/* ---------------- Active nav + form states (PHP) ---------------- */
.nav-links a.active { color: var(--gold-300); }
.field-error {
  display: block; margin-top: 6px;
  font-size: 0.8rem; color: #c0392b;
}
.form-field input:invalid { border-color: var(--line); }
.form-error-banner {
  padding: 12px 16px; margin-bottom: 20px;
  border-radius: 8px; font-size: 0.9rem;
  background: rgba(192,57,43,0.08); color: #c0392b;
  border: 1px solid rgba(192,57,43,0.25);
}
.form-success {
  padding: 32px; border-radius: var(--radius-card);
  background: linear-gradient(160deg, var(--chalk-700), var(--ink-800));
  color: var(--paper-100); align-self: start;
}
.form-success p { color: var(--paper-300); margin-bottom: 20px; }

/* Mobile nav dropdown (toggled by js/main.js) */
@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink-900); padding: 20px 24px;
    border-bottom: 1px solid var(--line-light);
  }
  .nav .container { position: relative; }
}

/* ============================================================
   Blog / Analisis
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden; background: #fff; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -28px rgba(16,24,43,0.4); }
.blog-card-media {
  position: relative; height: 150px;
  background: linear-gradient(135deg, var(--chalk-700), var(--ink-800));
  display: flex; align-items: center; justify-content: center;
}
.blog-card-media .chip-mark {
  width: 46px; height: 32px; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: .04em;
  background: rgba(244,245,242,0.92); color: var(--ink-900);
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}
.blog-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-meta { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(16,24,43,0.5); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.12rem; line-height: 1.35; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--ink-900); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--gold-500); }
.blog-card-body p { font-size: 0.9rem; color: rgba(16,24,43,0.72); flex-grow: 1; }
.read-more { color: var(--gold-500); font-weight: 600; font-size: 0.88rem; text-decoration: none; margin-top: 14px; }
.read-more:hover { text-decoration: underline; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }
.pagination a {
  min-width: 40px; text-align: center; padding: 9px 12px;
  border: 1px solid var(--line); border-radius: 8px;
  color: var(--ink-900); text-decoration: none; font-size: 0.9rem;
}
.pagination a.active, .pagination a:hover { background: var(--ink-900); color: var(--paper-100); border-color: var(--ink-900); }

.article-body p { margin-bottom: 20px; line-height: 1.85; color: rgba(16,24,43,0.85); }

/* ============================================================
   Komponen gaya Invena: counter angka + service card ber-ikon
   ============================================================ */
.stat .num span { display: inline-block; }        /* target animasi counter */

.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -28px rgba(16,24,43,0.4); }
.svc-icon {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--chalk-700), var(--ink-800));
  color: var(--gold-300);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--ink-900); }
.svc-card p { font-size: 0.9rem; color: rgba(16,24,43,0.72); }

/* Hero: teks berganti */
.hero .rotate { color: var(--gold-300); }

/* ============================================================
   Panel Admin
   ============================================================ */
.admin-body { background: var(--paper-200); }
.admin-bar { background: var(--ink-900); color: var(--paper-100); }
.admin-bar-inner {
  max-width: 1120px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.admin-brand { color: var(--paper-100); text-decoration: none; font-family: var(--font-display); font-weight: 700; }
.admin-nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.admin-nav a { color: var(--paper-300); text-decoration: none; font-size: 0.9rem; }
.admin-nav a:hover { color: var(--gold-300); }
.admin-nav .admin-logout { color: #e8b4ab; }
.admin-main { max-width: 1120px; margin: 0 auto; padding: 40px 24px 80px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-head h1 { font-size: 1.6rem; }

.admin-login { max-width: 400px; margin: 60px auto; background: #fff; padding: 40px; border-radius: var(--radius-card); border: 1px solid var(--line); }
.admin-login h1 { font-size: 1.5rem; margin-bottom: 4px; }
.admin-sub { color: rgba(16,24,43,0.6); margin-bottom: 24px; font-size: 0.92rem; }

.admin-flash { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 0.9rem; }
.admin-flash.ok { background: rgba(31,58,46,0.1); color: var(--chalk-700); border: 1px solid rgba(31,58,46,0.25); }

.admin-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.admin-table th, .admin-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 0.9rem; vertical-align: top; }
.admin-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .04em; color: rgba(16,24,43,0.55); background: var(--paper-200); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-actions { white-space: nowrap; }
.admin-actions a, .admin-actions .link-danger {
  margin-right: 12px; font-size: 0.85rem; color: var(--ink-900); text-decoration: none;
}
.admin-actions a:hover { color: var(--gold-500); }
.link-danger { background: none; border: none; padding: 0; cursor: pointer; color: #c0392b; font: inherit; }
.link-danger:hover { text-decoration: underline; }

.badge { font-family: var(--font-mono); font-size: 0.68rem; padding: 3px 10px; border-radius: 20px; }
.badge-pub { background: rgba(31,58,46,0.12); color: var(--chalk-700); }
.badge-draft { background: rgba(16,24,43,0.08); color: rgba(16,24,43,0.6); }

.admin-form { background: #fff; padding: 32px; border-radius: var(--radius-card); border: 1px solid var(--line); max-width: 820px; }
.admin-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .admin-form-row { grid-template-columns: 1fr; } }

/* ---------------- Ikon pada product card ---------------- */
.product-card .prod-ic {
  width: 50px; height: 50px; border-radius: 13px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--ink-900);
}
.product-card .prod-ic svg { width: 26px; height: 26px; }
.product-card.accent .prod-ic {
  background: rgba(201,162,39,0.14); color: var(--gold-300);
}

/* ---------------- FAQ (accordion) ---------------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; margin-bottom: 14px; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: var(--font-display); font-size: 1.02rem; color: var(--ink-900);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 1.4rem;
  color: var(--gold-500); transition: transform .2s ease; line-height: 1;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .faq-body { padding: 0 24px 22px; color: rgba(16,24,43,0.72); font-size: 0.95rem; line-height: 1.7; }
.faq-item[open] summary { color: var(--gold-500); }
