/* =========================================================
   G-DEV — Gustiawan Developer
   Hero + Layanan. Navy + biru brand #1B4FE0. Gaya membulat & ramah.
   ========================================================= */

:root {
  --navy: #0a1430;
  --navy-800: #101b3d;
  --blue: #1b4fe0;
  --blue-600: #1740b8;
  --blue-300: #7aa4fb;
  --paper: #fff;
  --mist: #f5f7fb;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e4e9f2;
  --wa: #25d366;
  --r-pill: 9999px;
  --r-card: 20px;
  --r-sm: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Gabarito, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue-300); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: 20px; }
@media (min-width: 1024px) { .wrap { padding-inline: 36px; } }

.skip {
  position: fixed; top: -60px; left: 20px; z-index: 200;
  padding: 12px 22px; border-radius: var(--r-pill);
  background: var(--blue); color: #fff; font-size: 14px; font-weight: 700;
  transition: top .2s;
}
.skip:focus { top: 14px; }

/* ---------- Tombol ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 14px 28px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .2s, border-color .2s, color .2s, transform .18s var(--ease), box-shadow .2s;
}
.btn > svg {
  width: 34px; height: 34px; padding: 8px; flex-shrink: 0;
  border-radius: 50%; background: rgba(255, 255, 255, .2);
}

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 28px rgba(27, 79, 224, .38); }
.btn-primary:has(> svg) { padding-left: 9px; }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(27, 79, 224, .5); }
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-outline { border: 1.5px solid rgba(255, 255, 255, .32); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .6); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0) scale(.98); }

.btn-dark { background: var(--navy); color: #fff; box-shadow: 0 12px 28px rgba(10, 20, 48, .22); }
.btn-dark:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(10, 20, 48, .3); }
.btn-dark:active { transform: translateY(0) scale(.98); }

.btn-sm { padding: 11px 22px; font-size: 12px; letter-spacing: .06em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 60;
  background: transparent; border-bottom: 1px solid transparent;
  translate: 0 -100%;
  transition: background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
body.is-loaded .site-header { animation: headDown .7s var(--ease) .1s forwards; }
@keyframes headDown { to { translate: none; } }
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(10, 20, 48, .1);
}

.nav-in { display: flex; align-items: center; gap: 22px; height: 84px; transition: height .3s var(--ease); }
.site-header.is-scrolled .nav-in { height: 68px; }
@media (max-width: 767px) { .nav-in { height: 70px; } .site-header.is-scrolled .nav-in { height: 62px; } }

/* Logo: wordmark asli dari artwork brand, dua varian warna ditukar saat scroll */
.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; flex-shrink: 0; }
.brand-lock { position: relative; display: block; line-height: 0; }
.brand-lock img { height: 34px; width: auto; transition: height .3s var(--ease), opacity .35s ease; }
.brand-dark { position: absolute; left: 0; top: 0; opacity: 0; }
.site-header.is-scrolled .brand-light { opacity: 0; }
.site-header.is-scrolled .brand-dark { opacity: 1; }
.site-header.is-scrolled .brand-lock img { height: 29px; }
.brand-sub {
  display: block;
  font-size: 8.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  line-height: 1; color: rgba(255, 255, 255, .5);
  transition: color .35s ease;
}
.site-header.is-scrolled .brand-sub { color: var(--muted); }
.brand:hover .brand-lock { opacity: .85; }
@media (max-width: 767px) {
  .brand-lock img { height: 30px; }
  .site-header.is-scrolled .brand-lock img { height: 27px; }
  .brand-sub { font-size: 7.5px; letter-spacing: .18em; }
}

.nav { display: none; margin-left: auto; }
@media (min-width: 1180px) { .nav { display: flex; align-items: center; gap: 2px; } }
.nav-link {
  position: relative;
  padding: 9px 13px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; white-space: nowrap;
  color: rgba(255, 255, 255, .86);
  transition: background-color .18s, color .18s;
}
.nav-link:hover { background: rgba(255, 255, 255, .13); color: #fff; }
.nav-link.is-active { background: rgba(255, 255, 255, .16); color: #fff; }
.site-header.is-scrolled .nav-link { color: var(--text); }
.site-header.is-scrolled .nav-link:hover { background: var(--mist); color: var(--blue); }
.site-header.is-scrolled .nav-link.is-active { background: rgba(27, 79, 224, .09); color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
@media (min-width: 1180px) { .nav-right { margin-left: 14px; } }
.nav-cta { display: none; }
@media (min-width: 600px) { .nav-cta { display: inline-flex; } }

.menu-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 48px; height: 48px; border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .1);
  transition: background-color .18s, border-color .18s, transform .12s;
}
@media (min-width: 1180px) { .menu-btn { display: none; } }
.menu-btn span {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: #fff;
  transition: background-color .18s;
}
.menu-btn:hover { background: var(--blue); border-color: var(--blue); }
.menu-btn:active { transform: scale(.94); }
.site-header.is-scrolled .menu-btn { border-color: var(--line); background: #fff; }
.site-header.is-scrolled .menu-btn span { background: var(--text); }
.site-header.is-scrolled .menu-btn:hover { background: var(--blue); border-color: var(--blue); }
.site-header.is-scrolled .menu-btn:hover span { background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: max(640px, 100svh);
  padding: 84px 0 0;
  background: var(--navy); color: #fff; overflow: hidden;
}
@media (max-width: 767px) { .hero { padding-top: 70px; } }
.hero::before {
  content: ""; position: absolute; z-index: 0;
  top: -18%; right: -12%; width: 780px; height: 780px; max-width: 110vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 79, 224, .42) 0%, rgba(27, 79, 224, .12) 42%, transparent 68%);
}
.hero .wrap { position: relative; z-index: 1; width: 100%; }

.hero-grid { display: grid; gap: 40px; padding-block: 56px 68px; align-items: center; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; padding-block: 72px 84px; }
}
@media (min-width: 1280px) { .hero-grid { gap: 56px; } }

.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-300);
}
.hero-title {
  margin-top: 16px;
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  font-weight: 800; line-height: 1.16; letter-spacing: -.02em;
}
.hero-lede {
  margin-top: 20px; max-width: 540px;
  font-size: clamp(15.5px, 1.2vw, 17px); line-height: 1.75;
  color: rgba(255, 255, 255, .76);
}

/* ---------- Chip jaminan ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 20px 9px 9px; border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px; font-weight: 600; color: #fff;
  transition: background-color .18s, border-color .18s, transform .18s var(--ease);
}
.chip svg {
  width: 36px; height: 36px; padding: 9px; flex-shrink: 0;
  border-radius: 11px; background: rgba(27, 79, 224, .3); color: #a9c3fd;
}
.chip:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .22); transform: translateY(-2px); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---------- Maskot ---------- */
.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art::before {
  content: ""; position: absolute; z-index: 0;
  left: 50%; top: 50%; translate: -50% -50%;
  width: min(100%, 660px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 79, 224, .42) 0%, rgba(27, 79, 224, .12) 46%, transparent 70%);
}
/* Maskot berformat persegi (1:1): lebar = tinggi, jadi batas lebarnya
   dijaga supaya tingginya tidak mendominasi hero. */
.hero-art img {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px; height: auto;
  animation: floaty 6s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .hero-art { justify-content: flex-end; }
  .hero-art img { max-width: 540px; }
}
@media (min-width: 1440px) { .hero-art img { max-width: 600px; } }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Halaman non-Beranda tanpa pita gelap ---------- */
/* Header di halaman ini dipaksa "is-scrolled" (JS) sejak awal karena tidak ada
   latar gelap di baliknya, jadi konten butuh jarak sebesar tinggi header.
   Halaman yang punya .page-band (mis. Layanan) mengurus jarak ini sendiri,
   sama seperti .hero di Beranda, karena headernya transparan-lalu-terang. */
body[data-page]:not([data-page="beranda"]) main:not(:has(.page-band)) { padding-top: 88px; }
@media (max-width: 767px) { body[data-page]:not([data-page="beranda"]) main:not(:has(.page-band)) { padding-top: 78px; } }

.empty-state { padding-block: clamp(56px, 9vw, 96px); text-align: center; }
.empty-state-ico {
  display: grid; place-items: center; margin-inline: auto;
  width: 68px; height: 68px; border-radius: var(--r-card);
  background: rgba(27, 79, 224, .1); color: var(--blue);
}
.empty-state-ico svg { width: 32px; height: 32px; }
.empty-state h2 { margin-top: 22px; font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; letter-spacing: -.01em; }
.empty-state p { margin: 12px auto 0; max-width: 440px; font-size: 15.5px; line-height: 1.75; color: var(--muted); }
.empty-state .btn { margin-top: 26px; }

/* ---------- Strip brand/klien ---------- */
.brand-strip-sec { padding-block: 44px; }
.brand-strip-label { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.brand-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 32px; margin-top: 24px; }
.brand-strip span {
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 800; letter-spacing: -.01em; color: #a7b0c2;
  transition: color .2s;
}
.brand-strip span:hover { color: var(--text); }

/* ---------- Section terang / gelap ---------- */
.sec { padding-block: clamp(64px, 8vw, 104px); }
.sec-light { background: var(--mist); }
.sec-dark { background: var(--navy); color: #fff; }
.sec-dark .eyebrow { color: var(--blue-300); }
.sec-dark .h2 { color: #fff; }
.sec-dark .h2 em { color: var(--blue-300); }
.sec-dark .lead { color: rgba(255, 255, 255, .74); }

.sec-head { max-width: 660px; }
.sec-head.is-center { max-width: 620px; margin-inline: auto; text-align: center; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -.02em; text-wrap: balance;
}
.h2 em { font-style: normal; color: var(--blue); }
.lead { margin-top: 14px; font-size: 16.5px; line-height: 1.75; color: var(--muted); }

.content-narrow { max-width: 680px; margin-inline: auto; }

.article-body { max-width: 680px; font-size: 15.5px; line-height: 1.75; color: var(--text); }
.article-body p { margin-top: 0; }
.article-body p + p { margin-top: 14px; }
.article-body.is-center { margin-inline: auto; text-align: center; }

.sec-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 36px; }
.sec-cta.is-center { justify-content: center; }

/* ---------- Tombol garis untuk latar terang ---------- */
.btn-line { border: 1.5px solid var(--line); color: var(--text); }
.btn-line:hover { border-color: var(--blue); color: var(--blue); background: rgba(27, 79, 224, .06); transform: translateY(-2px); }
.btn-line:active { transform: translateY(0) scale(.98); }

/* ---------- Pita judul gelap (halaman Layanan: hub & detail) ---------- */
/* Padding atas sama dengan .hero (84px/70px) karena header transparan
   menumpuk di atasnya lewat position:fixed, persis seperti di Beranda. */
.page-band { position: relative; padding: 116px 0 56px; background: var(--navy); color: #fff; overflow: hidden; }
@media (max-width: 767px) { .page-band { padding: 96px 0 44px; } }
.page-band::before {
  content: ""; position: absolute; z-index: 0; top: -34%; right: -10%;
  width: 560px; height: 560px; max-width: 90vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 79, 224, .38) 0%, rgba(27, 79, 224, .1) 46%, transparent 70%);
}
.page-band .wrap { position: relative; z-index: 1; }
.page-band .eyebrow { color: var(--blue-300); }
.page-band .h2 { color: #fff; }
.page-band .h2 em { color: var(--blue-300); }
.page-band .lead { color: rgba(255, 255, 255, .76); max-width: 640px; }

.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 13.5px; font-weight: 600; }
.crumb a { color: rgba(255, 255, 255, .6); transition: color .15s; }
.crumb a:hover { color: #fff; }
.crumb i { font-style: normal; color: rgba(255, 255, 255, .3); }
.crumb b { color: #fff; font-weight: 700; }

/* ---------- Pencarian layanan ---------- */
.svc-search {
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px;
  margin-top: 36px; padding: 22px; border-radius: var(--r-card);
  background: #fff; border: 1px solid var(--line);
}
.svc-search .f { flex: 1; min-width: 220px; }
.svc-search label {
  display: block; margin-bottom: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.svc-search input {
  width: 100%; height: 48px; padding: 0 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: #fff;
  font: inherit; font-size: 14.5px; color: var(--text);
  transition: border-color .15s;
}
.svc-search input:focus { outline: none; border-color: var(--blue); }
.svc-search input::placeholder { color: #9aa5b5; }

/* ---------- Kartu indeks layanan ---------- */
.svc-idx-grid { display: grid; gap: 18px; margin-top: 32px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .svc-idx-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .svc-idx-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.svc-card {
  display: flex; flex-direction: column; border-radius: var(--r-card);
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.svc-card:hover { transform: translateY(-4px); border-color: #cfd9ea; box-shadow: 0 18px 40px rgba(10, 20, 48, .1); }
.svc-card[hidden] { display: none; }
.svc-card-cover { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
.svc-card-cover img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) brightness(.82); transition: transform .35s var(--ease);
}
.svc-card:hover .svc-card-cover img { transform: scale(1.05); }
.svc-card-ico {
  position: absolute; left: 12px; top: 12px; display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: #fff; color: var(--blue); box-shadow: 0 2px 8px rgba(10, 20, 48, .15);
  transition: background-color .2s, color .2s;
}
.svc-card-ico svg { width: 21px; height: 21px; }
.svc-card:hover .svc-card-ico { background: var(--blue); color: #fff; }
.svc-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.svc-card-body h2 { font-size: 18.5px; font-weight: 800; letter-spacing: -.01em; }
.svc-card-body p { margin-top: 8px; flex: 1; font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--blue);
  transition: gap .2s var(--ease);
}
.svc-card-link svg { width: 16px; height: 16px; }
.svc-card:hover .svc-card-link { gap: 14px; }
.svc-search-empty { margin-top: 32px; text-align: center; font-size: 15px; color: var(--muted); }
.svc-search-empty[hidden] { display: none; }

/* ---------- Isi artikel layanan ---------- */
.article-body { max-width: 740px; }
.article-body p { margin-top: 16px; font-size: 16px; line-height: 1.85; color: #334155; }
.article-body p:first-child { margin-top: 0; }

/* ---------- Paket per layanan ---------- */
.pkg-grid { display: grid; gap: 18px; margin-top: 26px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 700px) { .pkg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.pkg-grid-3 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .pkg-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .pkg-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pkg-grid-4 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .pkg-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .pkg-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pkg-card {
  display: flex; flex-direction: column;
  padding: 28px 26px; border-radius: var(--r-card);
  background: #fff; border: 1px solid var(--line);
}
.pkg-card.is-lengkap { background: var(--navy); border-color: var(--navy); color: #fff; }
.pkg-tag {
  align-self: flex-start; padding: 5px 13px; border-radius: var(--r-pill);
  background: rgba(27, 79, 224, .1); color: var(--blue);
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.pkg-card.is-lengkap .pkg-tag { background: var(--blue); color: #fff; }
.pkg-card h3 { margin-top: 16px; font-size: 21px; font-weight: 800; letter-spacing: -.01em; }
.pkg-price { margin-top: 14px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; }
.pkg-price b { font-size: clamp(24px, 2.6vw, 30px); font-weight: 800; letter-spacing: -.02em; }
.pkg-price span { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.pkg-card.is-lengkap .pkg-price span { color: rgba(255, 255, 255, .55); }
.pkg-note { margin-top: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.pkg-card.is-lengkap .pkg-note { color: rgba(255, 255, 255, .5); }
.pkg-card p { margin-top: 8px; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.pkg-card.is-lengkap p { color: rgba(255, 255, 255, .74); }

.pkg-notes { margin-top: 28px; }
.pkg-notes-head { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.pkg-notes-grid { display: grid; gap: 12px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .pkg-notes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.pkg-note-card {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 16px 17px; border-radius: var(--r-sm);
  background: #fff; border: 1px solid var(--line);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.pkg-note-card:hover { border-color: #cfd9ea; box-shadow: 0 14px 30px rgba(10, 20, 48, .08); transform: translateY(-2px); }
.pkg-note-ico {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(27, 79, 224, .1); color: var(--blue);
}
.pkg-note-ico svg { width: 17px; height: 17px; }
.pkg-note-card p { font-size: 13.5px; line-height: 1.6; color: var(--text); }

/* Kartu kontak (mis. halaman Kontak) yang punya judul + deskripsi terpisah */
.pkg-note-content { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pkg-note-title { font-size: 15px; font-weight: 800; letter-spacing: -.01em; color: var(--text); }
.pkg-note-desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.pkg-note-link { font-weight: 700; color: var(--blue); text-decoration: none; }
.pkg-note-link:hover { text-decoration: underline; }
.pkg-note-sub { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }

.pkg-card ul { margin-top: 18px; display: grid; gap: 10px; }
.pkg-card li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; font-weight: 600; line-height: 1.5; }
.pkg-card li i {
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
  width: 19px; height: 19px; border-radius: 50%;
  background: rgba(27, 79, 224, .12); color: var(--blue);
}
.pkg-card.is-lengkap li i { background: rgba(255, 255, 255, .16); color: #9dbcfd; }
.pkg-card li i svg { width: 11px; height: 11px; }
.pkg-card .btn { margin-top: 22px; align-self: flex-start; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px 11px 12px; border-radius: var(--r-pill);
  background: var(--wa); color: #fff;
  font-size: 12.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .38);
  opacity: 0; transform: translateY(14px);
  transition: transform .18s var(--ease), box-shadow .2s;
}
body.is-loaded .wa-float { animation: waPop .5s var(--ease) 1.2s forwards; }
@keyframes waPop { to { opacity: 1; transform: none; } }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(37, 211, 102, .5); }
.wa-float:active { transform: translateY(0) scale(.97); }
.wa-float svg { width: 30px; height: 30px; padding: 6px; flex-shrink: 0; border-radius: 50%; background: rgba(255, 255, 255, .22); }
@media (max-width: 479px) { .wa-float span { display: none; } .wa-float { padding: 10px; } }

/* ---------- Animasi pembuka & reveal ---------- */
.fx { opacity: 0; translate: 0 18px; }
body.is-loaded .fx { animation: fxIn .8s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes fxIn { to { opacity: 1; translate: none; } }

.rv { opacity: 0; translate: 0 24px; }
.rv.is-in { animation: fxIn .7s var(--ease) forwards; animation-delay: var(--d, 0s); }

/* ---------- Menu mobile: panel geser dari kanan ---------- */
.m-drawer {
  position: fixed; inset: 0; z-index: 90;
  --dw-bg: #0a1430; --dw-fg: #fff; --dw-muted: rgba(255, 255, 255, .58);
  --dw-line: rgba(255, 255, 255, .1); --dw-line-strong: rgba(255, 255, 255, .28);
  --dw-accent: #1b4fe0; --dw-accent-text: #7aa4fb; --dw-accent-hover: #1740b8; --dw-on-accent: #fff;
}
.m-drawer-backdrop { position: absolute; inset: 0; background: rgba(4, 9, 24, .55); opacity: 0; transition: opacity .35s ease; }
.m-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 100%);
  overflow-y: auto; overscroll-behavior: contain; padding: 88px 28px 36px;
  background: var(--dw-bg); color: var(--dw-fg);
  transform: translateX(100%); transition: transform .5s var(--ease);
}
.m-drawer.is-open .m-drawer-backdrop { opacity: 1; }
.m-drawer.is-open .m-drawer-panel { transform: none; }
.m-drawer-close {
  position: absolute; top: 22px; right: 22px; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  border: 1px solid var(--dw-line-strong); color: var(--dw-fg);
  transition: background-color .15s, border-color .15s, transform .3s var(--ease);
}
.m-drawer-close svg { width: 21px; height: 21px; }
.m-drawer-close:hover { background: var(--dw-accent); border-color: var(--dw-accent); transform: rotate(90deg); }
.m-drawer-k { font-size: 11.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--dw-muted); }
.m-drawer-links { margin: 12px 0 0; }
.m-drawer-links a {
  display: flex; align-items: baseline; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid var(--dw-line);
  font-size: 24px; font-weight: 700; line-height: 1.2; color: var(--dw-fg);
  transition: color .15s, padding-left .25s var(--ease);
}
.m-drawer-links i { flex-shrink: 0; width: 20px; font-style: normal; font-size: 12px; font-weight: 700; color: var(--dw-accent-text); }
.m-drawer-links a:hover { color: var(--dw-accent-text); padding-left: 8px; }
.m-drawer.is-open .m-drawer-links li, .m-drawer.is-open .m-drawer-contact { animation: mdIn .5s var(--ease) both; }
.m-drawer.is-open .m-drawer-links li:nth-child(2) { animation-delay: .04s; }
.m-drawer.is-open .m-drawer-links li:nth-child(3) { animation-delay: .08s; }
.m-drawer.is-open .m-drawer-links li:nth-child(4) { animation-delay: .12s; }
.m-drawer.is-open .m-drawer-links li:nth-child(5) { animation-delay: .16s; }
.m-drawer.is-open .m-drawer-links li:nth-child(6) { animation-delay: .2s; }
.m-drawer.is-open .m-drawer-links li:nth-child(7) { animation-delay: .24s; }
.m-drawer.is-open .m-drawer-links li:nth-child(8) { animation-delay: .28s; }
.m-drawer.is-open .m-drawer-contact { animation-delay: .32s; }
@keyframes mdIn { from { opacity: 0; transform: translateY(16px); } }
.m-drawer-contact { margin-top: 32px; }
.m-drawer-phone { display: block; margin-top: 6px; font-size: 23px; font-weight: 800; color: var(--dw-fg); transition: color .15s; }
.m-drawer-phone:hover { color: var(--dw-accent-text); }
.m-drawer-contact p:not(.m-drawer-k) { margin-top: 6px; font-size: 14px; line-height: 1.6; color: var(--dw-muted); }
.m-drawer-cta {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; margin-top: 22px; padding: 15px 20px; border-radius: var(--r-pill);
  background: var(--dw-accent); color: var(--dw-on-accent);
  font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  transition: background-color .15s, transform .15s;
}
.m-drawer-cta:hover { background: var(--dw-accent-hover); transform: translateY(-2px); }
.m-drawer-cta:active { transform: translateY(0) scale(.98); }
@media (max-width: 480px) { .m-drawer-panel { padding: 84px 22px 30px; } }

/* ---------- Portofolio (Beranda) ---------- */
.port-grid { display: grid; gap: 18px; margin-top: 36px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .port-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .port-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.port-card {
  display: flex; flex-direction: column; border-radius: var(--r-card);
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.port-card:hover { transform: translateY(-4px); border-color: #cfd9ea; box-shadow: 0 18px 40px rgba(10, 20, 48, .1); }
.port-cover { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
.port-cover img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s var(--ease);
}
/* Foto stok bertanda "Ilustrasi" diredupkan biar terlihat editorial;
   screenshot produk asli (tanpa badge itu) ditampilkan apa adanya. */
.port-cover:has(.port-illust) img { filter: saturate(.85) brightness(.82); }
.port-card:hover .port-cover img { transform: scale(1.05); }
.port-cat {
  position: absolute; left: 12px; top: 12px; padding: 5px 11px; border-radius: var(--r-pill);
  background: #fff; color: var(--blue); box-shadow: 0 2px 8px rgba(10, 20, 48, .15);
  font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
}
.port-illust {
  position: absolute; right: 10px; bottom: 10px; padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(10, 20, 48, .6); backdrop-filter: blur(3px); color: #fff;
  font-size: 9.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
}
.port-body { display: flex; flex-direction: column; flex: 1; padding: 20px 20px 22px; }
.port-body h3 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; }
.port-body p { margin-top: 8px; flex: 1; font-size: 14px; line-height: 1.65; color: var(--muted); }
.port-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--blue);
  transition: gap .2s var(--ease);
}
.port-link svg { width: 15px; height: 15px; }
.port-card:hover .port-link { gap: 14px; }

/* ---------- Proses Kerja (latar navy) ---------- */
.steps { display: grid; gap: 40px; margin-top: 52px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; } }
.step { position: relative; text-align: center; padding-inline: 14px; }
.step-dot {
  position: relative; z-index: 1; display: grid; place-items: center; margin-inline: auto;
  width: 56px; height: 56px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .22);
  background: var(--navy); font-size: 18px; font-weight: 800; color: #fff;
  transition: border-color .2s, background-color .2s;
}
.step h3 { margin-top: 18px; font-size: 17px; font-weight: 800; color: #fff; }
.step p { margin-top: 8px; font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, .66); }
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: ""; position: absolute; top: 27px; left: calc(50% + 28px); width: calc(100% - 56px);
    height: 1px; background: rgba(255, 255, 255, .18);
  }
}

/* ---------- Kenapa Pilih G-DEV ---------- */
.why-grid { display: grid; gap: 18px; margin-top: 36px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.why-card {
  display: flex; gap: 16px; padding: 24px; border-radius: var(--r-card);
  background: #fff; border: 1px solid var(--line);
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.why-card:hover { transform: translateY(-4px); border-color: #cfd9ea; box-shadow: 0 18px 40px rgba(10, 20, 48, .1); }
.why-ico {
  display: grid; place-items: center; flex-shrink: 0; width: 48px; height: 48px;
  border-radius: var(--r-sm); background: rgba(27, 79, 224, .1); color: var(--blue);
}
.why-ico svg { width: 23px; height: 23px; }
.why-card h3 { font-size: 16.5px; font-weight: 800; letter-spacing: -.01em; }
.why-card p { margin-top: 6px; font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ---------- FAQ (akordeon) ---------- */
.faq-list { margin-top: 8px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 21px 2px; text-align: left; font-size: 16.5px; font-weight: 700;
}
.faq-q .faq-plus {
  display: grid; place-items: center; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(27, 79, 224, .1); color: var(--blue); transition: background-color .2s, color .2s;
}
.faq-q .faq-plus svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.faq-item.is-open .faq-q .faq-plus { background: var(--blue); color: #fff; }
.faq-item.is-open .faq-q .faq-plus svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 2px 22px; max-width: 660px; font-size: 14.5px; line-height: 1.75; color: var(--muted); }

/* ---------- CTA penutup ---------- */
.cta-band { padding-block: clamp(56px, 8vw, 96px); background: var(--blue); color: #fff; text-align: center; overflow: hidden; }
.cta-band .h2 { color: #fff; }
.cta-band .lead { margin-inline: auto; color: rgba(255, 255, 255, .85); }
.cta-band .sec-cta { justify-content: center; margin-top: 32px; }
.cta-band .btn-outline { border-color: rgba(255, 255, 255, .4); }
.cta-band .btn-outline:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }
/* Latar pita ini sudah biru, jadi .btn-primary (juga biru) harus dibalik
   warnanya di sini supaya tidak menyatu / hilang dengan latar belakangnya. */
.cta-band .btn-primary { background: #fff; color: var(--blue); box-shadow: 0 14px 30px rgba(2, 8, 28, .28); }
.cta-band .btn-primary:hover { background: #e8edff; }
.cta-band .btn-primary > svg { background: rgba(27, 79, 224, .12); color: var(--blue); }

/* ---------- Studi kasus portofolio ---------- */
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--blue-300); transition: gap .2s var(--ease), color .2s; }
.back-link:hover { gap: 12px; color: #fff; }
.back-link svg { width: 16px; height: 16px; }

.case-grid { display: grid; gap: 40px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 960px) { .case-grid { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; } }

.case-cover {
  position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: var(--r-card); border: 1px solid var(--line); background: var(--navy);
}
.case-cover img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) brightness(.8); }
.case-cover .port-illust { right: 14px; bottom: 14px; }

.case-side { display: grid; gap: 20px; }
@media (min-width: 960px) { .case-side { position: sticky; top: 100px; } }
.case-card { padding: 24px; border-radius: var(--r-card); background: #fff; border: 1px solid var(--line); }
.case-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.case-label { margin-top: 18px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.case-val { margin-top: 6px; font-size: 14.5px; font-weight: 700; color: var(--text); }
a.case-val:hover { color: var(--blue); }
ul.case-val { display: grid; gap: 7px; list-style: none; padding: 0; }
ul.case-val li { position: relative; padding-left: 16px; font-size: 14px; font-weight: 600; }
ul.case-val li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

.case-cta-card { padding: 24px; border-radius: var(--r-card); background: var(--navy); color: #fff; }
.case-cta-card h3 { font-size: 17px; font-weight: 800; }
.case-cta-card p { margin-top: 8px; font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, .72); }
.case-cta-card .btn { margin-top: 16px; width: 100%; }

.status-pill {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
  padding: 5px 13px; border-radius: var(--r-pill);
  background: #f1f3f7; color: #64748b; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: #94a3b8; flex-shrink: 0; }
.status-pill.is-active { background: rgba(22, 163, 74, .1); color: #15803d; }
.status-pill.is-active i { background: #22c55e; }
.case-card p.case-note { margin-top: 8px; font-size: 12.5px; font-weight: 500; line-height: 1.6; color: var(--muted); }

/* ---------- Slider galeri studi kasus ---------- */
.case-slider { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); background: var(--navy); }
.case-slider-track { display: flex; transition: transform .4s var(--ease); }
.case-slider-slide { flex: 0 0 100%; aspect-ratio: 16 / 10; }
.case-slider-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }
.case-slider-nav {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .92); color: var(--navy);
  display: grid; place-items: center; transition: background-color .15s;
}
.case-slider-nav:hover { background: #fff; }
.case-slider-nav svg { width: 18px; height: 18px; }
.case-slider-prev { left: 12px; }
.case-slider-next { right: 12px; }
.case-slider-status {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(10, 20, 48, .72); backdrop-filter: blur(4px);
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.case-slider-count {
  position: absolute; bottom: 12px; right: 14px; z-index: 2;
  font-size: 12px; font-weight: 700; color: #fff; background: rgba(10, 20, 48, .55); padding: 3px 10px; border-radius: var(--r-pill);
}
.case-slider-caption { margin-top: 12px; font-size: 13.5px; color: var(--muted); text-align: center; min-height: 20px; }
.case-slider-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.case-slider-dot { width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0; background: var(--line); cursor: pointer; transition: background-color .15s, width .2s; }
.case-slider-dot.is-active { width: 20px; border-radius: 4px; background: var(--blue); }

/* ---------- Heading/list/table di dalam artikel studi kasus ---------- */
.article-body h3 { margin-top: 34px; font-size: 19px; font-weight: 800; letter-spacing: -.01em; color: var(--text); }
.article-body ul { margin-top: 14px; display: grid; gap: 9px; list-style: none; padding: 0; }
.article-body li { position: relative; padding-left: 20px; font-size: 15.5px; line-height: 1.75; color: #334155; }
.article-body li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-300); }
.article-body li b, .article-body p b { color: var(--text); }
.article-table-wrap { margin-top: 16px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-sm); }
.article-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 480px; }
.article-table th, .article-table td { text-align: left; padding: 11px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article-table tr:last-child td { border-bottom: 0; }
.article-table th { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--mist); }
.article-table code { font-size: 12.5px; background: var(--mist); padding: 2px 6px; border-radius: 5px; color: var(--blue-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .7); padding-block: 56px 26px; }
.site-footer.is-compact { padding-block: 22px; }
.site-footer.is-compact .footer-bottom { margin-top: 0; padding-top: 0; border-top: 0; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; } }
.footer-brand img { height: 30px; width: auto; }
.footer-brand p { margin-top: 16px; max-width: 320px; font-size: 14px; line-height: 1.75; color: rgba(255, 255, 255, .55); }
.footer-h { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .45); }
.footer-links { margin-top: 16px; display: grid; gap: 11px; }
.footer-links a { font-size: 14.5px; font-weight: 600; color: rgba(255, 255, 255, .78); transition: color .15s; }
.footer-links a:hover { color: var(--blue-300); }
.footer-contact p { margin-top: 16px; font-size: 14.5px; line-height: 1.8; }
.footer-contact a:hover { color: var(--blue-300); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 13px; color: rgba(255, 255, 255, .45);
}

/* ---------- Form tugas ---------- */
.tform-card {
  max-width: 720px; margin-inline: auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(24px, 4vw, 40px); box-shadow: 0 18px 50px rgba(10, 20, 48, .06);
}
.tfield { margin-top: 22px; }
.tfield:first-child { margin-top: 0; }
.tfield-label {
  display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 9px;
}
.tfield-hint { font-weight: 500; color: var(--muted); font-size: 12.5px; }
.tfield input[type="text"],
.tfield input[type="date"],
.tfield input[type="number"],
.tfield textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--r-sm);
  border: 1.5px solid #c3ccdc; background: #fff;
  font: inherit; font-size: 15px; color: var(--text);
  transition: border-color .15s, background-color .15s, box-shadow .15s;
}
.tfield input[type="text"]::placeholder,
.tfield input[type="date"]::placeholder,
.tfield input[type="number"]::placeholder,
.tfield textarea::placeholder { color: #97a1b5; }
.tfield input[type="text"]:focus,
.tfield input[type="date"]:focus,
.tfield input[type="number"]:focus,
.tfield textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(27, 79, 224, .14);
}
.tfield textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.tradio-group { display: grid; gap: 9px; }
@media (min-width: 560px) { .tradio-group.is-cols-2 { grid-template-columns: 1fr 1fr; } }
.tradio {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 15px; border-radius: var(--r-sm);
  border: 1.5px solid #c3ccdc; background: #fff;
  font-size: 14.5px; font-weight: 600; color: var(--text);
  cursor: pointer; transition: border-color .15s, background-color .15s;
}
.tradio input { accent-color: var(--blue); width: 17px; height: 17px; flex-shrink: 0; }
.tradio:hover { border-color: var(--blue-300); }
.tradio:has(input:checked) { border-color: var(--blue); background: rgba(27, 79, 224, .07); color: var(--blue-600); }
.tform-submit { margin-top: 30px; }
.tform-submit .btn { width: 100%; }
.tform-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; line-height: 1.7; }
.tform-err { display: none; margin-top: 14px; padding: 12px 16px; border-radius: var(--r-sm); background: rgba(220, 38, 38, .08); color: #b91c1c; font-size: 13.5px; font-weight: 600; }
.tform-err.is-show { display: block; }
.tfield.is-invalid .tfield-label { color: #b91c1c; }
.tfield.is-invalid input[type="text"],
.tfield.is-invalid input[type="date"],
.tfield.is-invalid input[type="number"],
.tfield.is-invalid textarea { border-color: #dc2626; background: #fef2f2; }
.tfield.is-invalid .tradio { border-color: #dc2626; }

/* ---------- Gerak dikurangi ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fx, .rv { opacity: 1; translate: none; animation: none !important; }
  .site-header { translate: none; animation: none !important; }
  .wa-float { opacity: 1; transform: none; animation: none !important; }
  .hero-art img { animation: none; }
  .m-drawer-panel, .m-drawer-backdrop { transition: none; }
  .m-drawer.is-open .m-drawer-links li, .m-drawer.is-open .m-drawer-contact { animation: none; }
  .btn, .chip, .svc, .svc-ico, .brand-lock img { transition: none; }
}

/* ---------- Halaman Tentang ---------- */
.about-grid { display: grid; gap: 36px; grid-template-columns: minmax(0, 1fr); align-items: start; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 1.15fr 0.85fr; gap: 48px; } }

.about-intro-text { font-size: 16px; line-height: 1.8; color: var(--text); }
.about-intro-text p + p { margin-top: 18px; }

.quote-card {
  position: relative; padding: 32px 30px; border-radius: var(--r-card);
  background: var(--navy); color: #fff; overflow: hidden;
  box-shadow: 0 20px 48px rgba(10, 20, 48, .18);
}
.quote-card::before {
  content: ""; position: absolute; top: -30%; right: -20%; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle, rgba(27, 79, 224, .45) 0%, transparent 70%);
}
.quote-card-inner { position: relative; z-index: 1; }
.quote-mark { font-size: 48px; line-height: 1; color: var(--blue-300); opacity: .8; margin-bottom: 12px; }
.quote-text { font-size: 18px; font-weight: 700; line-height: 1.6; color: #fff; font-style: italic; }
.quote-author { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 20px;
  border: 2px solid rgba(255, 255, 255, .3);
}
.quote-info b { display: block; font-size: 16px; font-weight: 800; color: #fff; }
.quote-info span { font-size: 13px; color: rgba(255, 255, 255, .7); }

.values-grid { display: grid; gap: 20px; margin-top: 40px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.value-card {
  display: flex; flex-direction: column; padding: 28px 24px; border-radius: var(--r-card);
  background: #fff; border: 1px solid var(--line);
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.value-card:hover { transform: translateY(-4px); border-color: #cfd9ea; box-shadow: 0 16px 36px rgba(10, 20, 48, .08); }
.value-ico {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; background: rgba(27, 79, 224, .1); color: var(--blue);
  margin-bottom: 18px;
}
.value-ico svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.value-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ---------- Halaman FAQ (Clean Minimalist List) ---------- */
.faq-list { display: flex; flex-direction: column; margin-top: 20px; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent; border-radius: 0; padding: 0;
  box-shadow: none; border-left: none; border-right: none; border-top: none;
}
.faq-item:hover { border-color: var(--line); box-shadow: none; }

.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-size: 16px; font-weight: 700; color: var(--text);
  cursor: pointer; user-select: none; list-style: none;
  transition: color .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--blue); }
.faq-item[open] .faq-q { color: var(--blue); }

.faq-q-ico {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; background: #f5f7fb; border: 1px solid var(--line); color: var(--text);
  transition: background-color .2s, border-color .2s, color .2s, transform .2s var(--ease);
}
.faq-q-ico svg { width: 14px; height: 14px; }

.faq-ico-plus { display: block; }
.faq-ico-close { display: none; }
.faq-item[open] .faq-q-ico {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.faq-item[open] .faq-ico-plus { display: none; }
.faq-item[open] .faq-ico-close { display: block; }

.faq-a {
  padding: 0 0 20px; font-size: 14.5px; line-height: 1.7; color: var(--muted);
  border: none; margin: 0;
}
.faq-a p { margin: 0; }
.faq-a p + p { margin-top: 8px; }
.faq-a ul { margin: 10px 0 0; padding-left: 20px; list-style: disc; }
.faq-a li { margin-top: 4px; }

/* Accordion FAQ Beranda pakai <div>/<button> (JS-driven), bukan <details> nativenya faq.html —
   .faq-a butuh collapse manual di sini karena browser tidak menyembunyikannya sendiri. */
div.faq-item .faq-a { max-height: 0; overflow: hidden; padding: 0; transition: max-height .3s var(--ease); }
div.faq-item .faq-a p { padding: 0 2px 22px; }

/* ---------- Kartu portofolio sebagai tombol (buka lightbox, bukan pindah halaman) ---------- */
button.port-card {
  appearance: none; -webkit-appearance: none; font: inherit; text-align: left;
  cursor: pointer; width: 100%; padding: 0; margin: 0;
}

/* ---------- Lightbox studi kasus (tampil di atas halaman, tidak pindah tab) ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90; display: grid; place-items: center;
  padding: 24px; opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(8, 14, 34, .64); backdrop-filter: blur(3px); }
.lightbox-panel {
  position: relative; z-index: 1; width: 100%; max-width: 640px; max-height: 86vh; overflow-y: auto;
  background: #fff; border-radius: var(--r-card); box-shadow: 0 30px 80px rgba(10, 20, 48, .35);
  padding: 30px 26px; translate: 0 14px; scale: .98; transition: translate .25s var(--ease), scale .25s var(--ease);
}
.lightbox.is-open .lightbox-panel { translate: 0 0; scale: 1; }
.lightbox-close {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; display: grid; place-items: center; cursor: pointer;
  color: var(--text); transition: background-color .15s, border-color .15s;
}
.lightbox-close:hover { background: var(--mist); border-color: #cfd9ea; }
.lightbox-close svg { width: 15px; height: 15px; }

.lb-cover {
  display: block; aspect-ratio: 16 / 10; border-radius: var(--r-sm); overflow: hidden;
  background: var(--navy); margin-bottom: 18px;
}
.lb-cover img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) brightness(.82); }
.lb-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 10px; }
.lb-cat {
  padding: 5px 11px; border-radius: var(--r-pill); background: rgba(27, 79, 224, .1); color: var(--blue);
  font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.lightbox-panel h3 { font-size: 21px; font-weight: 800; letter-spacing: -.01em; }
.lightbox-panel > p.lb-desc { margin-top: 10px; font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.lb-feat-label { margin-top: 20px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.lb-feat { margin-top: 10px; display: grid; gap: 8px; list-style: none; padding: 0; }
.lb-feat li { position: relative; padding-left: 18px; font-size: 14px; font-weight: 600; line-height: 1.5; }
.lb-feat li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.lb-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.lb-cta .btn { flex: 1 1 auto; justify-content: center; }

