/* ============================================================
   PAKAR PAJAK — Dr. Ikhwan Ashadi
   Gaya premium: navy + gold, serif editorial + sans modern
   Satu stylesheet untuk seluruh halaman HTML.
   ============================================================ */

/* ---------- Variabel merek ---------- */
:root {
  --ink-50: #f4f6f9;
  --ink-100: #e6ebf2;
  --ink-200: #c9d3e3;
  --ink-300: #9fb0ca;
  --ink-400: #6f87aa;
  --ink-500: #4d6890;
  --ink-600: #3a5178;
  --ink-700: #2a3c5c;
  --ink-800: #1a2a45;
  --ink-900: #0e1726;
  --ink-950: #080e1a;

  --gold-50: #fbf6ea;
  --gold-100: #f5e9cd;
  --gold-200: #ecd49f;
  --gold-300: #e0bd6e;
  --gold-400: #d3a847;
  --gold-500: #b98a2f;
  --gold-600: #9a6f25;
  --gold-700: #7a5520;

  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #8ec0fa;
  --blue-400: #5ba0f0;
  --blue-500: #3b82f6;
  --blue-600: #1e6fd0;
  --blue-700: #155398;

  --ivory-50: #fbf9f5;
  --ivory-100: #f6f1e8;
  --ivory-200: #ece1cf;

  --bg: #fbf9f5;
  --fg: #0e1726;

  --shadow-sm: 0 1px 2px rgba(14, 23, 38, 0.06);
  --shadow-lg: 0 16px 40px rgba(14, 23, 38, 0.08);

  --radius: 8px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--gold-400); color: var(--ink-950); }

h1, h2, h3, h4, .font-serif {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 56rem; margin: 0 auto; padding: 0 1rem; }

/* ---------- Bar atas ---------- */
.topbar { background: var(--ink-950); color: var(--ivory-100); font-size: 0.75rem; }
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 0.5rem; padding-bottom: 0.5rem;
}
.topbar p { display: none; }
.topbar a { color: var(--gold-300); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar a:hover { color: var(--gold-200); }
@media (min-width: 640px) { .topbar p { display: block; color: rgba(236,225,207,0.85); } }

/* ---------- Switch bahasa ID/EN ---------- */
.lang-switch { display: inline-flex; align-items: center; gap: 0.35rem; margin-left: 0.75rem; white-space: nowrap; }
.lang-switch .lang-sep { color: rgba(236, 225, 207, 0.4); font-size: 0.7rem; }
.lang-btn {
  background: none; border: 1px solid rgba(236, 225, 207, 0.3); color: rgba(236, 225, 207, 0.75);
  border-radius: 999px; padding: 0.18rem 0.6rem; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; cursor: pointer; line-height: 1.4; transition: all 0.2s ease;
  font-family: inherit;
}
.lang-btn:hover { border-color: var(--gold-400); color: var(--gold-200); }
.lang-btn.is-active { background: var(--gold-500); border-color: var(--gold-500); color: #0b0f16; }
@media (max-width: 479px) { .lang-switch { margin-left: 0.25rem; } .lang-btn { padding: 0.15rem 0.5rem; font-size: 0.64rem; } }

/* ---------- Navigasi ---------- */
.navbar { position: sticky; top: 0; z-index: 50; background: var(--bg); }
.navbar.scrolled { box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--ink-100); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 0.9rem; padding-bottom: 0.9rem; }

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(185, 138, 47, 0.5);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: "Fraunces", serif; font-size: 1.05rem; color: var(--ink-900); }
.brand-text span { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.75rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500; color: var(--ink-700);
}
.nav-links a:hover { background: var(--ivory-100); color: var(--ink-950); }

.mobile-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border: 1px solid var(--ink-200);
  border-radius: 6px; background: transparent; cursor: pointer;
}
.mobile-toggle svg { width: 1.25rem; height: 1.25rem; }

.mobile-menu { display: none; padding: 1rem; border-bottom: 1px solid var(--ink-100); background: var(--bg); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.6rem 0.75rem; border-radius: 6px; font-size: 0.9rem; color: var(--ink-800); font-weight: 500; }
.mobile-menu a:hover { background: var(--ivory-100); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
}

/* ---------- Tombol ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.9rem; border-radius: 9px; border: 1px solid transparent;
  font-family: "Inter", sans-serif; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer; text-align: center;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.25s ease, filter 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn svg { width: 1rem; height: 1rem; }
/* Lapisan kilau (sheen) yang menyapu saat hover */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform 0.7s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500) 55%, var(--gold-600));
  color: var(--ink-950); border-color: rgba(184, 138, 47, 0.65);
  box-shadow: 0 6px 18px -8px rgba(224, 189, 110, 0.6);
}
.btn--gold:hover {
  filter: brightness(1.04);
  box-shadow: 0 12px 28px -10px rgba(224, 189, 110, 0.75);
}

.btn--dark {
  background: linear-gradient(135deg, var(--ink-800), var(--ink-950));
  color: var(--ivory-50); border-color: rgba(224, 189, 110, 0.35);
  box-shadow: 0 6px 18px -10px rgba(8, 14, 26, 0.8);
}
.btn--dark:hover {
  box-shadow: 0 12px 28px -10px rgba(224, 189, 110, 0.4), inset 0 0 0 1px rgba(224, 189, 110, 0.4);
}

.btn--outline-light {
  border-color: rgba(236, 225, 207, 0.3); color: var(--ivory-50);
  box-shadow: inset 0 0 0 1px rgba(236, 225, 207, 0.06);
}
.btn--outline-light:hover { border-color: var(--gold-400); color: var(--gold-300); box-shadow: inset 0 0 0 1px rgba(224, 189, 110, 0.35), 0 8px 20px -12px rgba(224, 189, 110, 0.5); }

.btn--outline {
  border-color: var(--ink-200); color: var(--ink-800);
  box-shadow: inset 0 0 0 1px rgba(8, 14, 26, 0.04);
}
.btn--outline:hover {
  border-color: var(--gold-500); color: var(--gold-700);
  box-shadow: inset 0 0 0 1px rgba(184, 138, 47, 0.35), 0 8px 20px -12px rgba(184, 138, 47, 0.45);
}

.btn--blue {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-300) 60%, #7fb6ee);
  color: var(--ink-950); border-color: rgba(32, 160, 224, 0.5);
  box-shadow: 0 6px 18px -8px rgba(32, 160, 224, 0.55);
}
.btn--blue:hover {
  filter: brightness(1.03);
  box-shadow: 0 12px 28px -10px rgba(32, 160, 224, 0.7);
}

/* CTA navbar: latar navy, border gold 2 lapis + pulse lambat */
.nav-cta {
  background: var(--ink-900) !important;
  color: #fff !important;
  border: 2px solid var(--gold-500) !important;
  box-shadow: inset 0 0 0 2px rgba(236, 220, 180, 0.16), inset 0 0 0 3px var(--gold-500), 0 0 0 0 rgba(224, 189, 110, 0.55) !important;
  animation: navCtaPulse 4s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
.nav-cta:hover {
  background: var(--ink-950) !important; color: var(--gold-300) !important;
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 2px rgba(236, 220, 180, 0.16), inset 0 0 0 3px var(--gold-500), 0 0 0 0 rgba(224, 189, 110, 0.55) !important;
}
.nav-cta::after { display: none; }
.nav-cta svg { color: #fff; }
@keyframes navCtaPulse {
  0%, 100% { box-shadow: inset 0 0 0 2px rgba(236, 220, 180, 0.16), inset 0 0 0 3px var(--gold-500), 0 0 0 0 rgba(224, 189, 110, 0.55); }
  50% { box-shadow: inset 0 0 0 2px rgba(236, 220, 180, 0.16), inset 0 0 0 3px var(--gold-500), 0 0 0 16px rgba(224, 189, 110, 0); }
}
.btn--block { width: 100%; }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.8rem; border-radius: 7px; }

/* ---------- Hero (beranda) ---------- */
.hero { background: var(--ink-950); color: var(--ivory-50); }
.hero .container {
  display: grid; gap: 3rem; padding-top: 4.5rem; padding-bottom: 4.5rem;
}
@media (min-width: 1024px) { .hero .container { grid-template-columns: 1.02fr 1fr; gap: 3rem; padding-top: 6rem; padding-bottom: 6rem; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(224, 189, 110, 0.3);
  background: rgba(224, 189, 110, 0.1); color: var(--gold-300);
  border-radius: 999px; padding: 0.4rem 1rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero h1 { font-size: 2.25rem; margin-top: 1.25rem; }
.hero h1 .gold { display: block; color: var(--gold-300); }
@media (min-width: 640px) { .hero h1 { font-size: 2.9rem; } }
.hero .lead { margin-top: 1.5rem; max-width: 36rem; color: rgba(236, 225, 207, 0.75); font-size: 1.05rem; }
.hero-cta { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }
.hero-cta .btn { width: 100%; }
@media (min-width: 640px) { .hero-cta .btn { width: auto; } }

.hero-stats {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: linear-gradient(135deg, rgba(212, 174, 94, 0.85) 0%, rgba(185, 138, 47, 0.7) 55%, rgba(214, 182, 110, 0.85) 100%);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding: 1.4rem 0.5rem;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 0 30px rgba(255, 255, 255, 0.12);
}
@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero-stats > div + div { border-left: 1px solid rgba(11, 15, 22, 0.16); }
}
.hero-stats > div {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; padding: 0.6rem 0.75rem; text-align: center;
}
.hero-stats .stat-ico { display: inline-flex; color: var(--blue-400); }
.hero-stats .stat-ico svg { width: 1.5rem; height: 1.5rem; }
.stat-value { font-family: "Fraunces", serif; font-size: 1.7rem; font-weight: 800; color: #0b0f16; line-height: 1.05; }
.stat-label { font-size: 0.7rem; font-weight: 700; color: #0b0f16; opacity: 0.82; line-height: 1.35; max-width: 8.5rem; }

/* Kilau glass yang berkedip-kedip */
.hero-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 68%, rgba(255, 255, 255, 0.8) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.9) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 34% 84%, rgba(255, 255, 255, 0.75) 0 1.5px, transparent 2.5px);
  animation: glassSparkle 8s ease-in-out infinite;
}
.hero-stats::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -35%;
  width: 45%;
  height: 240%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.4) 45%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 55%, transparent 100%);
  transform: rotate(20deg);
  animation: glassSweep 8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  pointer-events: none;
}
@keyframes glassSweep {
  0%, 60% { left: -35%; opacity: 0; }
  63% { opacity: 1; }
  76% { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}
@keyframes glassSparkle {
  0%, 56% { opacity: 0; }
  60% { opacity: 1; }
  63% { opacity: 0; }
  67% { opacity: 0.9; }
  72% { opacity: 0; }
  100% { opacity: 0; }
}

/* Foto hero premium */
.hero-visual { position: relative; max-width: 34rem; margin: 0 auto; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -3rem -2.5rem;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(224, 189, 110, 0.24), rgba(224, 189, 110, 0.06) 55%, transparent 75%);
  filter: blur(8px);
}
.hero-visual .frame-border {
  position: absolute; inset: -0.9rem;
  border: 2px solid rgba(224, 189, 110, 0.4); border-radius: 20px;
  box-shadow: 0 0 0 4px var(--ink-950), 0 0 0 5px rgba(224, 189, 110, 0.18);
}
.hero-visual .frame {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ink-800), var(--ink-950));
  border: 2px solid rgba(224, 189, 110, 0.6);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.75), 0 10px 34px -8px rgba(224, 189, 110, 0.22);
}
.hero-visual .frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-visual .frame-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3.4rem 1.5rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(8, 14, 26, 0.94) 60%);
  text-align: left;
}
.hero-visual .frame-caption strong {
  display: block; font-family: "Fraunces", serif; font-size: 1.18rem;
  font-weight: 600; color: var(--ivory-50); line-height: 1.35;
}
.hero-visual .frame-caption span {
  display: block; margin-top: 0.35rem; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.03em; text-transform: none; line-height: 1.5; color: var(--gold-300);
}

/* Kilau blink-blink pada foto hero */
.hero-visual .frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.8) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 60% 84%, rgba(255, 255, 255, 0.85) 0 1.5px, transparent 2.5px);
  animation: glassSparkle 8s ease-in-out infinite;
}
.hero-visual .frame::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -35%;
  width: 45%;
  height: 240%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.32) 55%, transparent 100%);
  transform: rotate(20deg);
  animation: glassSweep 8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
.hero-visual .card-float {
  position: absolute; bottom: -1.6rem; right: -1.4rem;
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--ink-900); border: 2px solid var(--gold-500);
  border-radius: 12px; padding: 0.7rem 1rem 0.7rem 0.7rem;
  box-shadow: inset 0 0 0 2px rgba(236, 220, 180, 0.14), 0 18px 40px -14px rgba(0, 0, 0, 0.65);
}
.hero-visual .card-float .ico {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; border-radius: 8px;
  background: rgba(142, 192, 250, 0.14); color: var(--blue-300);
  border: 1px solid rgba(142, 192, 250, 0.3);
}
.hero-visual .card-float span { display: block; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(236, 225, 207, 0.62); }
.hero-visual .card-float strong { font-family: "Fraunces", serif; font-size: 1rem; color: var(--gold-300); }

/* ---------- Section umum ---------- */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--ivory-100); border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.section--dark { background: var(--ink-950); color: var(--ivory-50); }
@media (min-width: 640px) { .section { padding: 6rem 0; } }

.eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-600); margin-bottom: 0.75rem;
}
.section--dark .eyebrow { color: var(--gold-300); }

.sec-head h2 { font-size: 1.9rem; max-width: 42rem; }
.sec-head p.sub { margin-top: 1rem; max-width: 42rem; color: #3a5178; font-size: 1.05rem; }
.section--dark .sec-head p.sub { color: rgba(236, 225, 207, 0.75); }
.sec-head--center { text-align: center; margin: 0 auto; }
.sec-head--center h2, .sec-head--center p.sub { margin-left: auto; margin-right: auto; }

.sec-head-row { display: flex; flex-direction: column; gap: 1.5rem; }
.sec-head-row .link { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.875rem; font-weight: 600; color: var(--gold-700); }
.sec-head-row .link:hover { color: var(--gold-600); }
.sec-head-row .link svg { width: 1rem; height: 1rem; }
@media (min-width: 640px) { .sec-head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

/* ---------- Trustbar ---------- */
.trustbar { border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); background: var(--ivory-100); }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.75rem 1.75rem; padding-top: 1.25rem; padding-bottom: 1.25rem; }
.trustbar .tb { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 600; color: var(--ink-800); }
.trustbar .tb svg { width: 1rem; height: 1rem; color: var(--gold-600); }
.trustbar--dark { border-color: rgba(236, 225, 207, 0.1); background: rgba(8, 14, 26, 0.6); }
.trustbar--dark .tb { color: var(--ivory-100); }

/* ---------- Grid & kartu ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3, .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

.card {
  background: var(--ivory-50); border: 1px solid var(--ink-100); border-radius: var(--radius);
  padding: 1.75rem; transition: all 0.2s ease;
}
.card--hover:hover { transform: translateY(-2px); border-color: var(--gold-400); box-shadow: var(--shadow-lg); }
.card--dark { background: var(--ink-900); border-color: var(--ink-800); }
.section--dark .card--dark, .card--dark { color: var(--ivory-50); }

.icon-box {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 6px; background: var(--ink-900);
}
.icon-box svg { width: 1.5rem; height: 1.5rem; color: var(--gold-300); }
.icon-box--lg { width: 3.5rem; height: 3.5rem; }
.icon-box--lg svg { width: 1.75rem; height: 1.75rem; }
.icon-box--soft { background: var(--ink-950); }
.icon-circle { display: inline-flex; align-items: center; justify-content: center; width: 1.75rem; height: 1.75rem; border-radius: 50%; border: 1px solid var(--gold-500); color: var(--gold-600); }

.card .kicker { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-700); }
.card h3 { font-size: 1.3rem; margin: 0.5rem 0 0.25rem; }
.card h4 { font-size: 1.05rem; }

.tag { display: inline-block; border-radius: 999px; padding: 0.3rem 0.75rem; font-size: 0.72rem; font-weight: 600; }
.tag--gold { background: rgba(185, 138, 47, 0.15); color: var(--gold-700); }
.tag--soft { background: var(--ink-100); color: var(--ink-700); }

/* Daftar centang */
.check-list, .dot-list { display: grid; gap: 0.65rem; }
.check-list li { display: flex; gap: 0.7rem; font-size: 0.9rem; color: var(--ink-700); align-items: flex-start; }
.check-list li svg { flex-shrink: 0; margin-top: 0.15rem; width: 1.15rem; height: 1.15rem; color: var(--gold-600); }
.dot-list li { display: flex; gap: 0.7rem; font-size: 0.9rem; color: var(--ink-700); align-items: flex-start; }
.dot-list li::before { content: ""; flex-shrink: 0; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--gold-500); margin-top: 0.5rem; }
.dot-list--light li { color: #fff; }

/* ---------- Pilar / Bidang Keahlian Premium ---------- */
.pilar-stack { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }

.pilar-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2.5rem 2rem 2.5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--ivory-50) 100%);
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.pilar-row::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-300), var(--gold-500));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pilar-row::after {
  content: "";
  position: absolute;
  top: 0; left: -75%; width: 55%; height: 100%;
  background: linear-gradient(115deg, transparent 20%, rgba(224, 189, 110, 0.1) 50%, transparent 80%);
  transform: skewX(-22deg);
  transition: left 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.pilar-row:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 138, 47, 0.35);
  box-shadow: 0 20px 50px rgba(14, 23, 38, 0.1), 0 0 0 1px rgba(185, 138, 47, 0.12);
}
.pilar-row:hover::before { opacity: 1; }
.pilar-row:hover::after { left: 130%; }

.pilar-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(224, 189, 110, 0.16), rgba(224, 189, 110, 0.04));
  border: 1px solid rgba(185, 138, 47, 0.35);
  box-shadow: 0 10px 26px rgba(14, 23, 38, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.pilar-ico img {
  width: 64%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(14, 23, 38, 0.18));
}
.pilar-row:hover .pilar-ico {
  transform: translateY(-3px);
  border-color: rgba(185, 138, 47, 0.6);
  box-shadow: 0 16px 34px rgba(14, 23, 38, 0.18);
}

.pilar-body { position: relative; }
.pilar-kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(185, 138, 47, 0.3);
  border-radius: 999px;
  background: rgba(185, 138, 47, 0.06);
}
.pilar-title {
  font-size: 1.55rem;
  margin-top: 1rem;
  color: var(--ink-900);
}
.pilar-desc {
  font-size: 0.95rem;
  color: var(--ink-600);
  margin-top: 0.75rem;
  line-height: 1.7;
  max-width: 42rem;
}
.pilar-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-100);
}
.pilar-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--ink-700);
}
.pilar-list li svg {
  flex-shrink: 0;
  color: var(--gold-500);
}

@media (min-width: 768px) {
  .pilar-row {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    padding: 3rem 2.5rem;
  }
  .pilar-ico { width: 5.5rem; height: 5.5rem; border-radius: 16px; }
  .pilar-ico svg { width: 36px; height: 36px; }
}
@media (max-width: 479px) {
  .pilar-row { padding: 2rem 1.4rem; }
  .pilar-ico { width: 3.5rem; height: 3.5rem; border-radius: 10px; }
  .pilar-ico svg { width: 24px; height: 24px; }
  .pilar-title { font-size: 1.3rem; }
}

/* ---------- Filsafat / pilars ---------- */
.desk { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .desk { grid-template-columns: 5fr 7fr; gap: 2rem; } }
.desk .num { font-family: "Fraunces", serif; font-size: 0.85rem; font-weight: 600; color: var(--gold-600); }

.desk-right { display: flex; flex-direction: column; gap: 1.5rem; }
.profil-sekilas-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ink-100);
  background: var(--ivory-100);
}
.profil-sekilas-img img { width: 100%; height: auto; display: block; }

/* ---------- Card pendidikan (edu-card): border gold 2 lapis + pulse ---------- */
.edu-card {
  border: 2px solid var(--gold-500);
  box-shadow: inset 0 0 0 2px rgba(236, 220, 180, 0.16), inset 0 0 0 3px var(--gold-500), 0 0 0 0 rgba(224, 189, 110, 0.55);
  animation: eduCardPulse 4s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  border-radius: var(--radius);
}
@keyframes eduCardPulse {
  0%, 100% { box-shadow: inset 0 0 0 2px rgba(236, 220, 180, 0.16), inset 0 0 0 3px var(--gold-500), 0 0 0 0 rgba(224, 189, 110, 0.55); }
  50% { box-shadow: inset 0 0 0 2px rgba(236, 220, 180, 0.16), inset 0 0 0 3px var(--gold-500), 0 0 0 14px rgba(224, 189, 110, 0); }
}
@media (prefers-reduced-motion: reduce) { .edu-card { animation: none; } }

/* Card kiri pada section Pendidikan — border tipis 2 lapis */
.edu-card-left {
  border: 1px solid rgba(185, 138, 47, 0.6);
  box-shadow: inset 0 0 0 1px rgba(236, 225, 207, 0.35);
}
@media (prefers-reduced-motion: reduce) { .edu-card-left { animation: none; } }

/* ---------- Kartu Jejak Karir — animasi premium ---------- */
.karir-card {
  position: relative;
  border: 1px solid rgba(185, 138, 47, 0.4);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.karir-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 45%, transparent 60%);
  transform: translateX(-130%);
  animation: karirShine 5.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}
.karir-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400), var(--gold-500));
  background-size: 200% 100%;
  animation: karirRail 5s linear infinite;
  pointer-events: none;
}
.karir-card:hover {
  transform: translateY(-7px);
  border-color: rgba(185, 138, 47, 0.75);
  box-shadow: 0 26px 60px rgba(14, 23, 38, 0.18), 0 0 0 1px rgba(185, 138, 47, 0.25);
}
.karir-card:hover::after { animation-duration: 2s; }
@keyframes karirShine {
  0% { transform: translateX(-130%); }
  55%, 100% { transform: translateX(130%); }
}
@keyframes karirRail {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* ---------- Kartu Rekam Media & Publikasi ---------- */
.media-card {
  border-radius: var(--radius);
  border: 1px solid rgba(236, 220, 180, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 0 0 2px rgba(185, 138, 47, 0.3);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 45%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}
.media-card p.kicker { position: relative; z-index: 1; }
.media-card h3 { position: relative; z-index: 1; }
.media-card p:not(.kicker) {
  color: rgba(236, 231, 220, 0.72);
  font-size: .85rem;
  margin-top: .5rem;
  position: relative;
  z-index: 1;
}
.media-card h3 { color: var(--ivory-50); }
.media-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 220, 180, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 0 2px rgba(185, 138, 47, 0.5), 0 22px 52px rgba(14, 23, 38, 0.45);
}
/* Televisi — navy biru tua */
.media--tv {
  background: linear-gradient(155deg, #0d1b2d 0%, #11283e 55%, #081521 100%);
}
.media--tv .kicker { color: #9db9e6; }
.media--tv:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), inset 0 0 0 2px rgba(120,160,214,.4), 0 22px 52px rgba(13,27,45,.6); }
/* Media cetak — charcoal cokelat tua emas */
.media--print {
  background: linear-gradient(155deg, #1a140c 0%, #261d0e 55%, #120d06 100%);
}
.media--print .kicker { color: #caa24c; }
.media--print:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 0 0 2px rgba(185,138,47,.5), 0 22px 52px rgba(26,20,12,.6); }
/* Seminar — plum ungu tua */
.media--seminar {
  background: linear-gradient(155deg, #1a1028 0%, #2a1a3f 55%, #120b1d 100%);
}
.media--seminar .kicker { color: #cbb27a; }
.media--seminar:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), inset 0 0 0 2px rgba(185,138,47,.42), 0 22px 52px rgba(26,16,40,.65); }

/* ---------- Kredensial — classic & premium ---------- */
.cred-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cred-grid { grid-template-columns: repeat(3, 1fr); } }

.cred-card {
  position: relative;
  background: linear-gradient(165deg, #fdfbf6 0%, var(--ivory-50) 60%, #f4ecdb 100%);
  border: 1px solid rgba(185, 138, 47, 0.35);
  border-radius: 6px;
  padding: 1.9rem 1.75rem 1.75rem;
  box-shadow: inset 0 0 0 1px #fff, 0 18px 40px rgba(14, 23, 38, 0.07);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.cred-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 138, 47, 0.6);
  box-shadow: inset 0 0 0 1px #fff, 0 24px 52px rgba(14, 23, 38, 0.12);
}

.cred-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.16;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.cred-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 249, 245, 0.82) 0%, rgba(251, 249, 245, 0.45) 45%, rgba(244, 236, 219, 0.72) 100%);
}
.cred-bg img {
  width: 62%;
  max-width: 11rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(14, 23, 38, 0.16)) saturate(0.9);
  transition: transform 0.5s ease;
}
.cred-card { overflow: hidden; }
.cred-card:hover .cred-bg { opacity: 0.28; }
.cred-card:hover .cred-bg img { transform: scale(1.06); }
.cred-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  /* gap disediakan lewat margin elemen anak */
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(185, 138, 47, 0.35);
}
.cred-title::before,
.cred-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(185, 138, 47, 0.35);
}
.cred-title span {
  flex-shrink: 0;
  font-family: "Fraunces", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-900);
  padding: 0 0.9rem;
}

.cred-list { display: grid; gap: 0.7rem; position: relative; z-index: 2; }
.cred-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0.35rem;
}
.cred-list li + li {
  border-top: 1px dashed rgba(185, 138, 47, 0.25);
  padding-top: 0.75rem;
}
.cred-badge {
  flex-shrink: 0;
  min-width: 3.1rem;
  text-align: center;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-950);
  padding: 0.4rem 0.55rem;
  border: 1.5px solid var(--gold-500);
  background: linear-gradient(180deg, rgba(224, 189, 110, 0.18), rgba(185, 138, 47, 0.1));
  box-shadow: inset 0 0 0 2px var(--ivory-50);
  border-radius: 5px;
}
.cred-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-800);
  line-height: 1.35;
}
.cred-name em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 0.1rem;
}
.value-cards .card {
  background: var(--ivory-50);
  border: 2px solid var(--ink-900);
  box-shadow: inset 0 0 0 3px var(--ivory-50), inset 0 0 0 5px var(--gold-500), inset 0 0 0 7px var(--ivory-50), inset 0 0 0 9px var(--blue-300);
}
.value-cards .card p { color: var(--ink-900); }
.value-cards .card svg { stroke: var(--gold-500); }

/* ---------- Kartu filosofi premium ---------- */
.filos-grid { gap: 1.75rem; }
.filos-card {
  position: relative;
  padding: 2.5rem 1.75rem 1.9rem;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--ivory-50) 0%, #ffffff 100%);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.filos-card .num {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-100);
  transition: color 0.4s ease, transform 0.4s ease;
}
.filos-card .icon-circle {
  width: 3.1rem;
  height: 3.1rem;
  border-width: 1.5px;
  background: radial-gradient(circle at 30% 25%, rgba(224, 189, 110, 0.14), rgba(224, 189, 110, 0.02));
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.45s ease;
}
.filos-card .icon-circle svg { width: 1.4rem; height: 1.4rem; }
.filos-card h3 { font-size: 1.45rem; }
.filos-card p { color: var(--ink-600); font-size: 0.98rem; }
.filos-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, transparent 20%, rgba(224, 189, 110, 0.16) 50%, transparent 80%);
  transform: skewX(-22deg);
  transition: left 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.filos-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.filos-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(185, 138, 47, 0.45);
  box-shadow: 0 26px 55px rgba(14, 23, 38, 0.16), 0 0 0 1px rgba(185, 138, 47, 0.18);
}
.filos-card:hover::before { left: 130%; }
.filos-card:hover::after { opacity: 1; transform: scaleX(1); }
.filos-card:hover .num { color: var(--gold-300); transform: translateY(-3px); }
.filos-card:hover .icon-circle { transform: translateY(-4px); border-color: var(--gold-500); color: var(--gold-500); }
.filos-link { display: flex; justify-content: center; }

/* ---------- Animasi reveal saat scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); transition-delay: calc(var(--i, 0) * 130ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .filos-card:hover { transform: none; }
  .filos-card::before { display: none; }
  .svc-card:hover { transform: none; }
  .svc-card::before, .svc-card::after { display: none; }
  .edukasi-card:hover { transform: none; }
  .edukasi-card::before { display: none; }
  .btn-edu { animation: none; }
  .nav-cta { animation: none; }
  .btn, .btn:hover { transform: none; }
  .btn::after { display: none; }
  .hero-stats::before, .hero-stats::after { animation: none; opacity: 0; }
  .hero-visual .frame::before, .hero-visual .frame::after { animation: none; opacity: 0; }
}

/* ---------- Daftar layanan ---------- */
.svc-list { display: grid; margin-top: 1.5rem; border: 1px solid var(--ink-100); border-radius: var(--radius); background: var(--ivory-50); }
.svc-row { display: grid; gap: 1rem; padding: 1.5rem; border-top: 1px solid rgba(201, 211, 227, 0.4); transition: all 0.2s ease; grid-template-columns: auto 1fr auto; align-items: center; }
.svc-row:first-child { border-top: 0; }
.svc-row:hover { background: var(--ivory-100); }
.svc-row .arrow { width: 1.25rem; height: 1.25rem; color: var(--ink-400); }
.svc-row:hover .arrow { color: var(--gold-600); transform: translateX(3px); }
.svc-row h3 { font-size: 1.25rem; }
.svc-row .kicker { margin-bottom: 0.15rem; }
.svc-row p { font-size: 0.85rem; color: var(--ink-600); }

/* ---------- Kartu layanan warna hidup ---------- */
.svc-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}
.svc-card {
  position: relative;
  flex: 0 1 calc(33.333% - 1.2rem);
  min-height: 15rem;
  border: 2px solid rgba(224, 189, 110, 0.5);
  border-radius: 18px;
  padding: 2.1rem 1.75rem 1.5rem;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 14px 34px rgba(14, 23, 38, 0.22);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(224, 189, 110, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.svc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.svc-card:hover::before { left: 140%; }
.svc-card:hover::after { opacity: 1; transform: scaleX(1); }
.svc-card:hover { transform: translateY(-8px); border-color: rgba(224, 189, 110, 0.8); box-shadow: 0 28px 58px rgba(8, 14, 26, 0.4), 0 0 0 1px rgba(224, 189, 110, 0.3); }
.svc-num {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-family: "Fraunces", serif;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(224, 189, 110, 0.3);
  transition: transform 0.4s ease, color 0.4s ease;
}
.svc-card:hover .svc-num { color: rgba(224, 189, 110, 0.5); transform: translateY(-3px); }
.svc-chip {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 189, 110, 0.14);
  border: 1px solid rgba(224, 189, 110, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold-300);
  margin-bottom: 1.3rem;
  transition: transform 0.45s ease, background 0.4s ease;
}
.svc-chip svg { width: 1.4rem; height: 1.4rem; }
.svc-card:hover .svc-chip { transform: translateY(-4px); background: rgba(224, 189, 110, 0.26); }
.svc-card h3 { font-size: 1.18rem; line-height: 1.35; margin: 0 0 0.5rem; color: #fff; }
.svc-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.88); }
.svc-more {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  transition: gap 0.3s ease;
}
.svc-more svg { transition: transform 0.3s ease; }
.svc-card:hover .svc-more { gap: 0.7rem; }
.svc-card:hover .svc-more svg { transform: translateX(2px); }
@media (max-width: 900px) {
  .svc-card { flex-basis: calc(50% - 0.9rem); }
}
@media (max-width: 620px) {
  .svc-card { flex-basis: 100%; }
}

/* ---------- Keunggulan ---------- */
.adv { display: grid; gap: 1.25rem; }
.adv-row { display: flex; gap: 1rem; }
.adv-row .icon-box { border: 1px solid rgba(224, 189, 110, 0.3); background: rgba(224, 189, 110, 0.1); }
.adv-row .icon-box svg { color: var(--gold-300); }
.adv-row h3 { font-size: 1.15rem; color: var(--ivory-50); }
.adv-row p { font-size: 0.875rem; color: rgba(236, 225, 207, 0.7); margin-top: 0.15rem; }

/* ---------- CTA ---------- */
.cta { background: var(--ink-950); }
.cta .container { text-align: center; padding-top: 5rem; padding-bottom: 5rem; max-width: 48rem; }
.cta h2 { color: var(--ivory-50); font-size: 1.9rem; margin-top: 0.75rem; }
.cta p { color: rgba(236, 225, 207, 0.75); margin-top: 1rem; }
.cta-actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }
.cta-note { margin-top: 1.5rem; font-size: 0.75rem; color: rgba(236, 225, 207, 0.5); }

/* ---------- Page hero (halaman dalam) ---------- */
.page-hero { background: var(--ink-950); color: var(--ivory-50); border-bottom: 1px solid var(--ink-900); }
.page-hero .container { padding-top: 4.5rem; padding-bottom: 4.5rem; }
@media (min-width: 640px) { .page-hero .container { padding-top: 5.5rem; padding-bottom: 5.5rem; } }
.page-hero h1 { font-size: 2.2rem; margin-top: 1rem; max-width: 46rem; }
@media (min-width: 640px) { .page-hero h1 { font-size: 2.9rem; } }
.page-hero .sub { margin-top: 1.25rem; max-width: 40rem; color: rgba(236, 225, 207, 0.75); font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-950); color: var(--ivory-200); }
.footer-top { display: grid; gap: 3rem; padding: 4rem 0; }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 3.5fr 2fr 2fr 2.5fr; } }
.footer-brand p.blurb { margin-top: 1.25rem; max-width: 22rem; font-size: 0.875rem; color: rgba(236, 225, 207, 0.7); }
.footer li { margin-bottom: 0.6rem; }
.footer a { font-size: 0.875rem; color: rgba(236, 225, 207, 0.7); }
.footer a:hover { color: var(--ivory-50); }
.footer h4 { font-family: "Fraunces", serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-300); margin-bottom: 1rem; }
.footer-contact { display: grid; gap: 1rem; }
.fc-row { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.8rem; color: rgba(236, 225, 207, 0.75); line-height: 1.55; }
.fc-row strong { color: var(--ivory-50); font-family: "Fraunces", serif; font-weight: 600; font-size: 0.82rem; }
.fc-row a { font-size: 0.8rem; }
.fc-ico {
  flex-shrink: 0; width: 1.35rem; height: 1.35rem; margin-top: 0.05rem;
  border-radius: 6px; background: rgba(224, 189, 110, 0.12); border: 1px solid rgba(224, 189, 110, 0.3);
  display: inline-flex; align-items: center; justify-content: center; color: var(--gold-300);
}
.fc-ico svg { width: 0.72rem; height: 0.72rem; }
.contact-list a { display: flex; align-items: center; gap: 0.6rem; }
.contact-list svg { width: 1rem; height: 1rem; color: var(--gold-400); flex-shrink: 0; }
.socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid rgba(236, 225, 207, 0.2); color: rgba(236, 225, 207, 0.8); }
.socials a:hover { border-color: var(--gold-400); color: var(--gold-300); }
.socials svg { width: 1rem; height: 1rem; }
.footer-bottom { border-top: 1px solid rgba(236, 225, 207, 0.1); padding: 2rem 0; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between; font-size: 0.75rem; color: rgba(236, 225, 207, 0.5); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* ---------- Layanan detail ---------- */
.svc-block { display: grid; gap: 2.5rem; padding: 4rem 0; border-top: 1px solid var(--ink-100); }
.svc-block:first-of-type { border-top: 0; }
@media (min-width: 1024px) { .svc-block { grid-template-columns: 5fr 7fr; gap: 3rem; } }
.svc-block .big-num { font-family: "Fraunces", serif; font-size: 3rem; font-weight: 600; color: var(--ink-200); }
.svc-block h2 { font-size: 1.9rem; margin-top: 1.25rem; }
.svc-block .tagline { color: var(--gold-700); font-weight: 600; margin-top: 0.35rem; }
.svc-block .desc { color: var(--ink-600); margin-top: 1rem; }

/* ---------- Card layanan (kolom kanan) — putih/navy selang-seling ---------- */
.svc-card {
  border-radius: var(--radius);
  position: relative;
  border: 1px solid rgba(185, 138, 47, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), inset 0 0 0 2px rgba(185, 138, 47, 0.18), 0 20px 44px rgba(14, 23, 38, 0.10);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.svc-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 48%, rgba(255, 255, 255, 0.35) 100%);
  pointer-events: none;
}
.svc-card::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400), var(--gold-500));
  background-size: 200% 100%;
  animation: svcDrift 6s linear infinite;
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 138, 47, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 0 0 2px rgba(185, 138, 47, 0.32), 0 30px 60px rgba(14, 23, 38, 0.20), 0 0 0 0 rgba(224, 189, 110, 0.55);
  animation: svcPulse 3.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
/* putih */
.svc-card--1, .svc-card--3, .svc-card--5 {
  background: linear-gradient(155deg, #fdfbf6 0%, var(--ivory-50) 60%, #f4ecdb 100%);
}
/* navy */
.svc-card--2, .svc-card--4 {
  background: linear-gradient(155deg, #0e1726 0%, #16233a 60%, #080e1a 100%);
  border-color: rgba(236, 220, 180, 0.4);
}
.svc-card--2 .check-list li,
.svc-card--4 .check-list li,
.svc-card--2 .dot-list li,
.svc-card--4 .dot-list li { color: rgba(236, 231, 220, 0.85); }
.svc-card--2 h4,
.svc-card--4 h4 { color: var(--gold-400); }
.svc-card--2 .kicker,
.svc-card--4 .kicker { color: var(--gold-400); }
.svc-card--2::after,
.svc-card--4::after { background: linear-gradient(160deg, transparent 48%, rgba(255, 255, 255, 0.06) 100%); }
/* navy */
.svc-card--6 {
  background: linear-gradient(155deg, #0e1726 0%, #16233a 60%, #080e1a 100%);
  border-color: rgba(236, 220, 180, 0.4);
}
.svc-card--6 .check-list li,
.svc-card--6 .dot-list li { color: rgba(236, 231, 220, 0.85); }
.svc-card--6 h4,
.svc-card--6 .kicker { color: var(--gold-400); }
.svc-card--6::after { background: linear-gradient(160deg, transparent 48%, rgba(255, 255, 255, 0.06) 100%); }
@keyframes svcDrift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes svcPulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 0 0 2px rgba(185, 138, 47, 0.32), 0 30px 60px rgba(14, 23, 38, 0.20), 0 0 0 0 rgba(224, 189, 110, 0.55); }
  50% { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 0 0 2px rgba(185, 138, 47, 0.32), 0 30px 60px rgba(14, 23, 38, 0.20), 0 0 0 16px rgba(224, 189, 110, 0); }
}
@media (prefers-reduced-motion: reduce) { .svc-card::before, .svc-card:hover { animation: none; } }

/* ---------- Segmen klien — border 3 warna logo + pulse ---------- */
.seg-card {
  border: 2px solid;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.seg-card p svg { transition: transform 0.45s ease; }
.seg-card:hover p svg { transform: scale(1.12) rotate(-4deg); }
.seg-card:hover { transform: translateY(-5px); }
/* navy */
.seg-card--1, .seg-card--4 {
  border-color: #202060;
  background: linear-gradient(155deg, #ffffff 0%, #eef1fb 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 0 rgba(32,32,96,.45);
  animation: segPulseNavy 3.6s cubic-bezier(0.45,0,0.2,1) infinite;
}
.seg-card--1:hover, .seg-card--4:hover { animation: segPulseNavy 2s cubic-bezier(0.45,0,0.2,1) infinite; box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 0 rgba(32,32,96,.55); }
/* blue */
.seg-card--2, .seg-card--5 {
  border-color: #20a0e0;
  background: linear-gradient(155deg, #ffffff 0%, #e8f6fd 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 0 rgba(32,160,224,.45);
  animation: segPulseBlue 3.6s cubic-bezier(0.45,0,0.2,1) infinite;
}
.seg-card--2:hover, .seg-card--5:hover { animation: segPulseBlue 2s cubic-bezier(0.45,0,0.2,1) infinite; box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 0 rgba(32,160,224,.55); }
/* gold */
.seg-card--3, .seg-card--6 {
  border-color: #ffa020;
  background: linear-gradient(155deg, #ffffff 0%, #fdf3e2 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 0 rgba(255,160,32,.45);
  animation: segPulseGold 3.6s cubic-bezier(0.45,0,0.2,1) infinite;
}
.seg-card--3:hover, .seg-card--6:hover { animation: segPulseGold 2s cubic-bezier(0.45,0,0.2,1) infinite; box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 0 rgba(255,160,32,.55); }
@keyframes segPulseNavy {
  0%,100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 0 rgba(32,32,96,.45); }
  50% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 12px rgba(32,32,96,0); }
}
@keyframes segPulseBlue {
  0%,100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 0 rgba(32,160,224,.45); }
  50% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 12px rgba(32,160,224,0); }
}
@keyframes segPulseGold {
  0%,100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 0 rgba(255,160,32,.45); }
  50% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 0 0 12px rgba(255,160,32,0); }
}
@media (prefers-reduced-motion: reduce) { .seg-card, .seg-card--1, .seg-card--2, .seg-card--3, .seg-card--4, .seg-card--5, .seg-card--6 { animation: none; } }

.two-col { display: grid; gap: 1.25rem; margin-top: 1.75rem; }
@media (min-width: 640px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-700); margin-bottom: 0.75rem; }

/* ---------- Alur kerja ---------- */
.step .idx { font-family: "Fraunces", serif; font-size: 1.9rem; font-weight: 600; color: rgba(236, 225, 207, 0.2); }
.step .icon-box svg { color: var(--gold-300); }

/* ---------- Alur kerja (step) — animasi premium ---------- */
.step {
  position: relative;
  border: 1px solid rgba(236, 220, 180, 0.18);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.step::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 32%, rgba(224, 189, 110, 0.16) 46%, transparent 60%);
  transform: translateX(-140%);
  animation: stepShine 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}
.step::after {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--gold-300), transparent);
  background-size: 200% 100%;
  animation: stepRail 5s linear infinite;
  pointer-events: none;
}
.step .idx {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: idxGlow 3.2s ease-in-out infinite;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 220, 180, 0.5);
  box-shadow: 0 26px 60px rgba(8, 14, 26, 0.55), 0 0 0 1px rgba(185, 138, 47, 0.25);
}
.step:hover::after { animation-duration: 2s; }
.step:hover::before { animation-duration: 2.6s; }
@keyframes stepShine {
  0% { transform: translateX(-140%); }
  55%, 100% { transform: translateX(140%); }
}
@keyframes stepRail {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes idxGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(224, 189, 110, 0)); }
  50% { filter: drop-shadow(0 0 7px rgba(224, 189, 110, 0.7)); }
}
@media (prefers-reduced-motion: reduce) { .step::before, .step::after, .step .idx { animation: none; } }

/* ---------- Edukasi ---------- */
.prog-card { display: flex; flex-direction: column; }
.prog-card ul { margin-top: 0.5rem; }
.prog-card .foot { margin-top: 1.25rem; font-size: 0.8rem; color: var(--ink-500); }
.prog-card .btn { margin-top: 1.5rem; margin-top: auto; }

/* ---------- Program — layout mewah / elegan / premium ---------- */
.prog-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(185, 138, 47, 0.5);
  background: linear-gradient(168deg, #101b2e 0%, #16233a 45%, #0b1322 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 0 0 2px rgba(185, 138, 47, 0.22), 0 24px 54px rgba(8, 14, 26, 0.30);
  padding: 2rem 1.75rem 1.9rem;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.prog-card::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
  background-size: 200% 100%;
  animation: progRail 6s linear infinite;
  pointer-events: none;
}
.prog-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(185, 138, 47, 0.16) 0%, transparent 50%);
  pointer-events: none;
}
/* nomor urut premium */
.prog-card .idx-num {
  font-family: "Fraunces", serif;
  font-size: 2.6rem; font-weight: 600; line-height: 1;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.35;
}
.prog-card h3 { color: var(--ivory-50); font-size: 1.35rem; }
.prog-card .kicker { color: var(--gold-400) !important; font-weight: 700; }
.prog-card p[style*="color:var(--ink-600)"] { color: rgba(236, 231, 220, 0.72) !important; }
.prog-card p[style*="color:var(--ink-500)"] { color: var(--gold-400) !important; letter-spacing: .12em; }
.prog-card .dot-list li { color: rgba(236, 231, 220, 0.85); }
.prog-card .dot-list li::before { background: var(--gold-500); }
.prog-card .foot { color: rgba(236, 231, 220, 0.6); }
.prog-card .foot strong { color: var(--gold-300); }
.prog-card .icon-box { background: rgba(185, 138, 47, 0.14); border-color: rgba(185, 138, 47, 0.4); }
.prog-card .icon-box svg { color: var(--gold-300); }
.prog-card .tag { color: var(--gold-300); }
.prog-card .btn--outline {
  border-color: rgba(236, 220, 180, 0.5);
  color: var(--ivory-50);
}
.prog-card .btn--outline:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink-950); }
.prog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 138, 47, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 0 2px rgba(185, 138, 47, 0.4), 0 34px 70px rgba(8, 14, 26, 0.5);
}
.prog-card:hover::before { animation-duration: 2s; }
@keyframes progRail {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@media (prefers-reduced-motion: reduce) { .prog-card::before { animation: none; } }

/* ---------- Momen pengajaran — galeri premium ---------- */
.teach-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .teach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .teach-grid { grid-template-columns: repeat(3, 1fr); } }

.teach-item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(236, 220, 180, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 0 0 2px rgba(185, 138, 47, 0.18), 0 18px 44px rgba(8, 14, 26, 0.4);
  /* placeholder bila src kosong */
  background:
    linear-gradient(160deg, rgba(185, 138, 47, 0.10), rgba(14, 23, 38, 0.55)),
    repeating-linear-gradient(45deg, rgba(185, 138, 47, 0.05) 0 14px, rgba(255, 255, 255, 0.02) 14px 28px);
  aspect-ratio: 4 / 3;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.teach-item:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 138, 47, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 0 2px rgba(185, 138, 47, 0.32), 0 26px 60px rgba(8, 14, 26, 0.55);
}
.teach-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.teach-item:hover img { transform: scale(1.06); }
.teach-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 14, 26, 0.85) 100%);
  pointer-events: none;
}
.teach-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  color: rgba(236, 231, 220, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
}
.teach-num {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (prefers-reduced-motion: reduce) { .teach-item, .teach-item img { transition: none; } }

/* ---------- Mengapa di sini — alasan premium ---------- */
.why-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(185, 138, 47, 0.4);
  background: linear-gradient(165deg, #fdfbf6 0%, var(--ivory-50) 62%, #f2e9d6 100%);
  box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px rgba(185, 138, 47, 0.14), 0 16px 40px rgba(14, 23, 38, 0.08);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.why-card::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
  background-size: 200% 100%;
  animation: progRail 6s linear infinite;
  pointer-events: none;
}
.why-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(185, 138, 47, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.why-num {
  font-family: "Fraunces", serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.why-card h3 { position: relative; z-index: 1; }
.why-card p { position: relative; z-index: 1; color: var(--ink-600); }
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 138, 47, 0.7);
  box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px rgba(185, 138, 47, 0.28), 0 26px 58px rgba(14, 23, 38, 0.16);
}
@media (prefers-reduced-motion: reduce) { .why-card::before { animation: none; } }

/* ---------- Insight / kartu artikel ---------- */
.art-card { display: flex; flex-direction: column; }
.art-thumb {
  width: 100%;
  height: 10rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(224, 189, 110, 0.4);
  background: linear-gradient(135deg, #f7f1e0, #fbf6ea);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.art-card:hover .art-thumb img { transform: scale(1.06); }
.art-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; font-size: 0.78rem; color: var(--ink-500); }
.art-card h3 { font-size: 1.25rem; margin-top: 1rem; line-height: 1.3; }
.art-card h3 a:hover { color: var(--ink-700); }
.art-card .excerpt { flex: 1; font-size: 0.875rem; color: var(--ink-600); margin-top: 0.75rem; }
.art-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--ink-100); margin-top: 1.25rem; padding-top: 1rem; font-size: 0.8rem; color: var(--ink-500); }
.art-foot .read { color: var(--gold-700); font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; }

/* ---------- Artikel ---------- */
.art-hero .go-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(236, 225, 207, 0.7); }
.art-hero .go-back:hover { color: var(--gold-300); }
.art-hero .meta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 1.5rem; font-size: 0.8rem; color: rgba(236, 225, 207, 0.6); }
.art-hero h1 { margin-top: 1.25rem; }
.lead-quote { font-family: "Fraunces", serif; font-style: italic; font-size: 1.2rem; color: var(--ink-700); }
.art-body { padding-top: 1rem; }
.art-body p { color: var(--ink-700); margin: 1.5rem 0; }
.art-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 1rem; }
.art-tags .tag { font-weight: 500; }

/* Umum untuk kartu & halaman artikel */
.meta { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; margin-top: 0.75rem; font-size: 0.8rem; color: var(--ink-500); }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 1.5rem; }
.tags .tag { font-weight: 500; }

/* Artikel (baris paragraf + CTA) */
.art > p { color: var(--ink-700); margin: 1.5rem 0; }
.art > .lead { font-family: "Fraunces", serif; font-style: italic; font-size: 1.2rem; color: var(--ink-700); line-height: 1.5; }
.page-hero--article {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero--article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.82) 0%, rgba(8, 14, 26, 0.68) 60%, rgba(8, 14, 26, 0.82) 100%);
  z-index: 0;
}
.page-hero--article .container {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.page-hero--article .eyebrow a:hover {
  text-decoration: underline;
}
.cta-inline { margin-top: 2.5rem; padding: 2rem; }
.cta-inline p { margin-top: 0; }

/* ---------- Beranda potongan kecil ---------- */
.mini { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .mini { grid-template-columns: 1fr 1fr; } }
.keunggulan-img {
  margin: 0;
  position: relative;
  border: 2px solid var(--gold-500);
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-900);
  box-shadow: inset 0 0 0 3px rgba(236, 220, 180, 0.25), inset 0 0 0 5px var(--gold-500), 0 20px 44px rgba(0, 0, 0, 0.4);
}
.keunggulan-img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.keunggulan-img figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ivory-50);
  text-align: center;
  background: linear-gradient(transparent, rgba(8, 14, 26, 0.92));
}
@media (min-width: 640px) { .keunggulan-img { grid-column: 1 / -1; } .keunggulan-img img { aspect-ratio: 3 / 2; } }

/* ---------- Card edukasi latar emas ---------- */
.edukasi-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d4a94e 0%, var(--gold-500) 55%, #e8c878 100%);
  border: 2px solid var(--ink-900);
  border-radius: 14px;
  box-shadow: inset 0 0 0 3px rgba(247, 244, 238, 0.85), inset 0 0 0 5px var(--ink-900);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.edukasi-card h3 { color: #0b0f16; }
.edukasi-card p { color: rgba(11, 15, 22, 0.78) !important; }
.edukasi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.edukasi-card:hover::before { left: 140%; }
.edukasi-card:hover { transform: translateY(-7px) scale(1.015); box-shadow: 0 24px 50px rgba(11, 15, 22, 0.3), inset 0 0 0 3px rgba(247, 244, 238, 0.85), inset 0 0 0 5px var(--ink-900); }

/* ---------- Tombol edukasi: border gold 2 lapis + pulse lambat ---------- */
.btn-edu {
  background: var(--ink-900);
  color: var(--gold-300);
  border: 2px solid var(--gold-500);
  box-shadow: inset 0 0 0 3px rgba(236, 220, 180, 0.25), inset 0 0 0 5px var(--gold-500), 0 0 0 1px var(--ink-950);
  animation: eduPulse 4s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
.btn-edu:hover { color: #fff; }
@keyframes eduPulse {
  0%, 100% { box-shadow: inset 0 0 0 3px rgba(236, 220, 180, 0.25), inset 0 0 0 5px var(--gold-500), 0 0 0 0 rgba(224, 189, 110, 0.55); }
  50% { box-shadow: inset 0 0 0 3px rgba(236, 220, 180, 0.25), inset 0 0 0 5px var(--gold-500), 0 0 0 14px rgba(224, 189, 110, 0); }
}

/* ---------- Form ---------- */
.form-card { background: var(--ivory-50); border: 1px solid var(--ink-100); border-radius: var(--radius); padding: 1.5rem; }
@media (min-width: 640px) { .form-card { padding: 2rem; } }
.form-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--ink-800); margin-bottom: 0.4rem; }
label .req { color: var(--gold-600); }
input, select, textarea {
  width: 100%; border: 1px solid var(--ink-200); border-radius: 6px;
  padding: 0.7rem 0.9rem; font-family: inherit; font-size: 0.9rem;
  background: var(--ivory-50); color: var(--ink-900);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(185, 138, 47, 0.25);
}
.form-note { font-size: 0.75rem; color: var(--ink-500); text-align: center; margin-top: 0.75rem; }
.form-success { text-align: center; padding: 4rem 1rem; }
.form-success svg { width: 3rem; height: 3rem; color: var(--gold-500); }
.form-success h3 { font-size: 1.6rem; margin-top: 1rem; }
.form-success p { font-size: 0.875rem; color: var(--ink-600); margin-top: 0.75rem; max-width: 30rem; margin-left: auto; margin-right: auto; }
.form-success a { color: var(--gold-700); font-weight: 600; text-decoration: underline; }
.card--form { padding: 2rem; }
.field { margin-bottom: 1.25rem; }
.field-err { display: none; font-size: 0.75rem; color: #d33; margin-top: 0.35rem; }
.field input.invalid,
.field select.invalid,
.field textarea.invalid { border-color: #d33; }
.note { font-size: 0.75rem; color: var(--ink-500); text-align: center; margin-top: 0.75rem; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-wrap { border: 1px solid var(--ink-100); border-radius: var(--radius); background: var(--ivory-50); }
.faq-item { border-top: 1px solid var(--ink-100); }
.faq-item:first-child { border-top: 0; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 1.5rem; background: transparent; border: 0; cursor: pointer; text-align: left;
}
.faq-q span { font-family: "Fraunces", serif; font-size: 1.05rem; font-weight: 600; color: var(--ink-900); }
.faq-q .ui {
  flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%;
  border: 1px solid var(--ink-200); display: flex; align-items: center; justify-content: center; color: var(--ink-600);
  transition: all 0.2s ease;
}
.faq-q .ui svg { width: 1rem; height: 1rem; }
.faq-item.open .faq-q .ui { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink-950); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--ink-600); }

/* ---------- FAQ premium (beranda, dua kolom editorial) ---------- */
.faq-premium { position: relative; }
.faq-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .faq-two-col { grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
}
.faq-head h2 { max-width: 22ch; }
.faq-head .sub { color: var(--ink-600); }
.faq-head-note {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(224, 189, 110, 0.4);
  border-left: 3px solid var(--gold-500);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(224, 189, 110, 0.08), transparent);
}
.faq-head-ico {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-900);
  color: var(--gold-300);
}
.faq-head-note p { flex: 1 1 14rem; font-size: 0.88rem; color: var(--ink-600); margin: 0; }
.faq-head-link { align-self: center; font-size: 0.85rem; font-weight: 600; }

.faq-premium .faq-wrap {
  border: 0;
  border-radius: 18px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-premium .faq-item {
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, var(--ivory-50));
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(14, 23, 38, 0.05);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.faq-premium .faq-item:hover { border-color: rgba(224, 189, 110, 0.45); box-shadow: 0 14px 38px rgba(14, 23, 38, 0.1); transform: translateY(-2px); }
.faq-premium .faq-item.open { border-color: rgba(224, 189, 110, 0.6); box-shadow: 0 18px 44px rgba(14, 23, 38, 0.14); }
.faq-premium .faq-q { padding: 1.15rem 1.4rem; gap: 1rem; }
.faq-premium .faq-idx {
  flex-shrink: 0;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-500);
  width: 2rem;
}
.faq-premium .faq-q .faq-txt { flex: 1; font-family: "Fraunces", serif; font-size: 1.02rem; font-weight: 600; color: var(--ink-900); line-height: 1.35; }
.faq-premium .faq-q .ui {
  width: 1.9rem; height: 1.9rem;
  border: 1px solid var(--ink-200);
  color: var(--ink-600);
  transition: all 0.25s ease;
}
.faq-premium .faq-q .ui svg { width: 0.9rem; height: 0.9rem; }
.faq-premium .faq-item.open .faq-q .ui { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink-950); transform: rotate(45deg); }
.faq-premium .faq-a-inner { padding: 0 1.4rem 1.3rem 3.5rem; font-size: 0.92rem; line-height: 1.7; color: var(--ink-600); }

/* CTA FAQ premium */
.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 2.2rem 2rem 2rem;
  border: 1px solid rgba(224, 189, 110, 0.5);
  border-radius: 18px;
  background: linear-gradient(135deg, #d4a94e 0%, var(--gold-500) 55%, #e8c878 100%);
  box-shadow: inset 0 0 0 3px rgba(247, 244, 238, 0.85), inset 0 0 0 5px rgba(120, 84, 16, 0.5), 0 20px 44px rgba(8, 14, 26, 0.25);
}
.faq-cta-ico {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 22, 0.9);
  color: var(--gold-300);
}
.faq-cta-txt h2 { font-size: 1.5rem; color: #0b0f16; }
.faq-cta-txt p { margin: 0.4rem 0 0; color: rgba(11, 15, 22, 0.78); font-size: 0.95rem; max-width: 42rem; }
.faq-cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.4rem; }
.faq-cta-actions .btn--blue { background: var(--ink-900); color: var(--gold-300); }
.faq-cta-actions .btn--outline { border-color: rgba(11, 15, 22, 0.5); color: #0b0f16; }
.faq-cta-actions .btn--outline:hover { background: rgba(11, 15, 22, 0.08); }
@media (min-width: 820px) {
  .faq-cta { flex-direction: row; align-items: center; }
  .faq-cta-txt { flex: 1; }
  .faq-cta-actions { margin-top: 0; }
}


/* ---------- Kontak ---------- */
.contact-card { display: flex; align-items: center; gap: 1.25rem; }
.contact-card .body { flex: 1; }
.contact-card .kicker { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-700); font-weight: 700; }
.contact-card h3 { font-size: 1.15rem; margin: 0.15rem 0 0.1rem; }
.contact-card p { font-size: 0.8rem; color: var(--ink-500); }

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.notfound h1 { font-family: "Fraunces", serif; font-size: 6rem; color: var(--ink-200); }

/* ---------- Jarak bantu ---------- */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; } .mt-6 { margin-top: 4rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ============================================================
   RESPONSIF TAMBAHAN — perangkat sangat kecil & tablet
   ============================================================ */

/* --- Navbar: pelindung teks agar tidak mendesak di layar sempit --- */
@media (max-width: 479px) {
  .brand-mark { width: 2.35rem; height: 2.35rem; }
  .brand-text strong { font-size: 0.92rem; }
  .brand-text span { font-size: 0.56rem; letter-spacing: 0.08em; }
  .navbar .container { padding-top: 0.7rem; padding-bottom: 0.7rem; gap: 0.5rem; }
  .nav-cta { padding: 0.6rem 0.9rem; font-size: 0.78rem; }
}

/* --- Navbar dengan 7 menu: padatkan di layar menengah-sempit --- */
@media (min-width: 1024px) and (max-width: 1279px) {
  .nav-links { gap: 0.1rem; }
  .nav-links a { padding: 0.45rem 0.55rem; font-size: 0.8rem; }
  .nav-cta { padding: 0.55rem 0.75rem !important; font-size: 0.78rem; }
  .navbar .container { padding-top: 0.8rem; padding-bottom: 0.8rem; }
}

/* --- Hero: judul & tombol tidak meluap di layar kecil --- */
@media (max-width: 479px) {
  .hero h1 { font-size: 1.9rem; }
  .hero .lead { font-size: 0.95rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 1.1rem 0.25rem; gap: 0.4rem; }
  .stat-value { font-size: 1.4rem; }
  .stat-label { font-size: 0.62rem; max-width: 6.5rem; }
  .hero-visual { max-width: 20.5rem; }
  .hero-visual .card-float { left: auto; right: 0.5rem; bottom: -1.2rem; }
}

/* --- Section headline agar proporsional di mobile --- */
@media (max-width: 479px) {
  .sec-head h2 { font-size: 1.55rem; }
  .cta h2, .svc-block h2 { font-size: 1.55rem; }
  .page-hero h1 { font-size: 1.85rem; }
  .page-hero .sub { font-size: 0.97rem; }
}

/* --- Kartu layanan: ringkas di mobile --- */
@media (max-width: 620px) {
  .svc-card { min-height: 0; padding: 1.7rem 1.4rem 1.3rem; }
  .svc-num { font-size: 2.2rem; }
}

/* --- Baris layanan (svc-row): susun rapi di mobile --- */
@media (max-width: 479px) {
  .svc-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.25rem; }
  .svc-row .arrow { display: none; }
}

/* --- Filosofi: angka dekoratif tidak mengganggu --- */
@media (max-width: 479px) {
  .filos-card { padding: 2rem 1.4rem 1.6rem; }
  .filos-card .num { font-size: 2rem; top: 1rem; right: 1.2rem; }
}

/* --- CTA / FAQ premium: tombol penuh di mobile --- */
@media (max-width: 620px) {
  .faq-cta { padding: 1.7rem 1.4rem 1.5rem; }
  .faq-premium .faq-a-inner { padding-left: 1rem; padding-right: 1rem; }
  .faq-premium .faq-q { padding: 1rem 1.1rem; }
  .cta-inline { padding: 1.5rem 1.2rem; }
}

/* --- Halaman 404 --- */
@media (max-width: 479px) {
  .notfound h1 { font-size: 3.5rem; }
}

/* --- Keunggulan img di mobile --- */
@media (max-width: 479px) {
  .keunggulan-img figcaption { font-size: 0.62rem; padding: 2rem 0.75rem 0.7rem; }
}

/* ============================================================
   TABLET (480px–1023px): pastikan grid & layout dua kolom rapi
   ============================================================ */
@media (min-width: 480px) and (max-width: 900px) {
  .desk, .svc-block { grid-template-columns: 1fr; }
  .faq-two-col { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL UTAMA MOBILE: konten inti tidak boleh lebih lebar viewport
   ============================================================ */
@media (max-width: 640px) {
  img, video, iframe { max-width: 100%; height: auto; }
  .container, .container-sm, .container-md { padding-left: 1.1rem; padding-right: 1.1rem; }
}

/* ============================================================
   PAGE HERO PROFIL — latar belakang foto + overlay navy
   ============================================================ */
.page-hero--profil {
  position: relative;
  background-image: url("../img/profil-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--ink-900);
}

.page-hero--layanan {
  position: relative;
  background-image: url("../img/layanan-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--ink-900);
}

.page-hero--edukasi {
  position: relative;
  background-image: url("../img/layanan-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--ink-900);
}

.page-hero--insight {
  position: relative;
  background-image: url("../img/layanan-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--ink-900);
}

.page-hero--faq {
  position: relative;
  background-image: url("../img/layanan-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--ink-900);
}

.page-hero--kontak {
  position: relative;
  background-image: url("../img/layanan-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--ink-900);
}

.page-hero--konsultasi {
  position: relative;
  background-image: url("../img/layanan-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--ink-900);
}
.page-hero--konsultasi .container {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
@media (min-width: 640px) {
  .page-hero--konsultasi .container {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}