/* Referensi visual: jadiasn.id (navy + gold/cream, pill buttons, blob + dot-grid decoration,
   image-top feature cards, promo-banner CTA) — diimplementasikan ulang dengan konten PPG,
   dipadukan dengan token dari ui-ux-pro-max-skill: Government Portal blue (#1E40AF family)
   digelapkan ke arah navy jadiasn, + Trust & Authority security-green, + Friendly SaaS
   typography (Plus Jakarta Sans, single versatile font, rounded modern). */
:root {
  --navy: #08609f;
  --navy-dark: #074e81;
  --navy-mid: #0a79c8;
  --gold: #f5b301;
  --gold-dark: #c98f00;
  --cream: #fdecd3;
  --teal: #2dd4bf;
  --security-green: #059669;
  --whatsapp-green: #25d366;
  --ink: #16324f;
  --ink-soft: #5b6b7c;
  --border: #e3e8ee;
  --bg: #ffffff;
  --bg-alt: #f3f6fa;
  --radius: 16px;
  --card-shadow: 0 4px 6px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ---------- Decorative: dot-grid + blob (ciri khas jadiasn) ---------- */
.dot-grid {
  position: absolute; width: 140px; height: 100px;
  background-image: radial-gradient(var(--navy-mid) 1.5px, transparent 1.5px);
  background-size: 14px 14px; opacity: .18; z-index: 0;
}
.blob-cream {
  position: absolute; border-radius: 50%; background: var(--cream);
  opacity: .9; z-index: 0; filter: blur(0px);
}

/* ---------- Buttons (pill, seperti jadiasn) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14px;
  border: 1px solid transparent; transition: all .18s ease; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--bg-alt); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-light { background: var(--gold); color: var(--navy-dark); }
.btn-light:hover { background: var(--gold-dark); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 15px; }

/* ---------- Navbar ---------- */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 17px; }
.brand-logo { height: 40px; width: auto; display: block; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.brand-text strong { color: var(--navy); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.nav-links a:hover { color: var(--navy); }
.navbar-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 60px; position: relative; overflow: hidden; }

/* ---------- Hero Slider ---------- */
.hero-slider { position: relative; padding-bottom: 44px; touch-action: pan-y; cursor: grab; }
.hero-slider.is-dragging { cursor: grabbing; user-select: none; }
.hero-slide {
  display: none;
  grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  animation: heroFadeIn .5s ease;
}
.hero-slide.is-active { display: grid; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.hero-arrow {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--card-shadow); color: var(--navy); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5;
  transition: background .15s ease;
}
.hero-arrow:hover { background: var(--bg-alt); }
.hero-arrow-prev { left: -8px; }
.hero-arrow-next { right: -8px; }

.hero-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--border); border: none;
  cursor: pointer; padding: 0; transition: background .15s ease, width .15s ease;
}
.hero-dot.is-active { background: var(--navy); width: 22px; border-radius: 999px; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; color: #fff;
  background: var(--navy); padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: .3px;
}
.hero-copy h1 { font-size: 42px; line-height: 1.2; margin-bottom: 18px; color: var(--navy); }
.hero-lead { font-size: 16px; color: var(--ink-soft); max-width: 520px; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 30px; height: 30px; border-radius: 50%; background: var(--navy-mid); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700;
  border: 2px solid #fff; margin-left: -8px;
}
.avatar-stack span:first-child { margin-left: 0; }

.hero-visual { position: relative; }
.hero-blob { width: 420px; height: 420px; top: -60px; right: -60px; }
.hero-dotgrid { top: 10px; right: -10px; }
.mock-card {
  background: #fff; border-radius: 20px; box-shadow: 0 20px 50px rgba(22,50,79,.18);
  overflow: hidden; border: 1px solid var(--border); position: relative; z-index: 2;
}
.hero-photo-frame {
  border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(22,50,79,.2);
  position: relative; z-index: 2; border: 1px solid var(--border); line-height: 0;
}
.hero-photo { width: 100%; height: auto; object-fit: cover; display: block; aspect-ratio: 16 / 11; }
.mock-card-header { background: var(--navy); color: #fff; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; }
.mock-timer { font-family: monospace; background: rgba(255,255,255,.18); padding: 4px 10px; border-radius: 6px; }
.mock-card-body { padding: 24px; }
.mock-question { font-size: 14px; margin-bottom: 16px; color: var(--ink); }
.mock-options { display: flex; flex-direction: column; gap: 8px; }
.mock-option { border: 1px solid var(--border); border-radius: 10px; padding: 11px 14px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.mock-option.selected { border-color: var(--navy); background: var(--bg-alt); color: var(--navy); }
.mock-badge {
  position: absolute; background: #fff; border: 1px solid var(--border); z-index: 3;
  box-shadow: 0 10px 24px rgba(22,50,79,.14); border-radius: 999px; padding: 10px 18px;
  font-size: 12px; font-weight: 800; color: var(--navy);
}
.mock-badge-1 { top: -16px; right: 20px; }
.mock-badge-2 { bottom: -16px; left: -10px; background: var(--teal); color: var(--navy-dark); border: none; }

/* ---------- Trust strip: bidang studi (honest proof, bukan logo instansi palsu) ---------- */
.trust-strip { padding: 32px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 20px; }
.trust-strip-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-chip {
  background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 18px;
  font-size: 13px; font-weight: 700; color: var(--navy);
}

/* ---------- Proof / Trust cards ---------- */
.proof { padding: 56px 0; }
.proof-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 28px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proof-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 14px; box-shadow: var(--card-shadow); }
.proof-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(5,150,105,.1); color: var(--security-green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proof-icon svg { width: 22px; height: 22px; }
.proof-card strong { display: block; font-size: 13px; font-family: var(--font-heading); color: var(--ink); }
.proof-card span { display: block; font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Stats ---------- */
.stats { background: var(--navy); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { display: block; font-size: 36px; font-weight: 800; color: var(--gold); }
.stat-label { display: block; font-size: 13px; color: #c7d4e0; margin-top: 4px; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 30px; margin: 10px 0 12px; color: var(--navy); }
.section-lead { color: var(--ink-soft); font-size: 15px; }
.section-narrow { max-width: 760px; }
.section-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.section-split h2 { font-size: 28px; margin: 10px 0 14px; color: var(--navy); }
.check-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { padding-left: 26px; position: relative; font-size: 14px; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--security-green); font-weight: 800; }

.tentang-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 24px; box-shadow: var(--card-shadow); }
.tentang-row { display: flex; justify-content: space-between; padding: 16px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.tentang-row:last-child { border-bottom: none; }
.tentang-row span { color: var(--ink-soft); }

/* ---------- Struktur Tes ---------- */
.struktur-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.struktur-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--card-shadow); transition: transform .15s ease, box-shadow .15s ease; }
.struktur-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(22,50,79,.12); }
.struktur-index { display: inline-block; font-size: 12px; font-weight: 800; color: #fff; background: var(--navy); padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
.struktur-card h3 { font-size: 18px; margin-bottom: 6px; }
.struktur-meta { font-size: 13px; font-weight: 700; color: var(--gold-dark); margin-bottom: 10px; }
.struktur-card p:last-child { font-size: 14px; color: var(--ink-soft); }

/* ---------- Fitur ---------- */
.fitur-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fitur-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--card-shadow); }
.fitur-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-alt); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fitur-icon svg { width: 22px; height: 22px; }
.fitur-card h3 { font-size: 16px; margin-bottom: 6px; }
.fitur-card p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Harga ---------- */
.harga-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.harga-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--card-shadow); display: flex; flex-direction: column;
  position: relative;
}
.harga-card-highlight { border: 2px solid var(--navy); box-shadow: 0 16px 34px rgba(22,50,79,.16); }
.harga-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-dark); font-size: 11px; font-weight: 800;
  padding: 6px 16px; border-radius: 999px; text-transform: uppercase; letter-spacing: .3px;
}
.harga-card h3 { font-size: 18px; margin-bottom: 4px; color: var(--navy); }
.harga-desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.harga-price { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 22px; }
.harga-price span { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.harga-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex-grow: 1; }
.harga-list li { padding-left: 24px; position: relative; font-size: 13px; color: var(--ink-soft); }
.harga-list li::before { content: "✓"; position: absolute; left: 0; color: var(--security-green); font-weight: 800; }
.btn-block { width: 100%; }

/* ---------- Produk (kartu produk lynk.id) ---------- */
.produk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.produk-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--card-shadow); overflow: hidden; display: flex; flex-direction: column;
}
.produk-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.produk-body { padding: 16px 18px; display: flex; flex-direction: column; flex: 1; }
.produk-body h3 { font-size: 14px; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.produk-desc { font-size: 12px; color: var(--ink-soft); margin-bottom: 10px; }
.produk-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; margin-top: auto; }
.produk-price-old { font-size: 12px; color: var(--ink-soft); text-decoration: line-through; }
.produk-price-new { font-size: 19px; font-weight: 800; color: var(--navy); }
.produk-body .btn { font-size: 13px; padding: 10px 16px; }

/* ---------- Cara Kerja ---------- */
.langkah-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.langkah-card { text-align: center; padding: 0 8px; }
.langkah-num { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); font-weight: 800; margin: 0 auto 16px; }
.langkah-card h3 { font-size: 16px; margin-bottom: 6px; }
.langkah-card p { font-size: 13px; color: var(--ink-soft); }

/* ---------- Promo Banner (gaya "Upgrade Skill" jadiasn) ---------- */
.promo-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 24px; padding: 44px 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.promo-banner::after {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(245,179,1,.12); top: -100px; right: -60px;
}
.promo-copy { position: relative; z-index: 1; }
.promo-copy .eyebrow { background: var(--gold); color: var(--navy-dark); }
.promo-copy h2 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.promo-copy p { color: #cddced; font-size: 14px; max-width: 420px; }
.promo-cta { position: relative; z-index: 1; }

/* ---------- Testimoni ---------- */
.testimoni { background: linear-gradient(180deg, #eef2f7, #dfe6ee); padding: 88px 0; }
.testimoni-heading { max-width: 640px; margin: 0 auto; }
.testimoni-slider { position: relative; display: flex; align-items: center; gap: 12px; }
.testimoni-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 8px 4px 24px; flex: 1;
  scrollbar-width: none;
}
.testimoni-track::-webkit-scrollbar { display: none; }
.testimoni-card {
  flex: 0 0 calc(33.333% - 16px); scroll-snap-align: start;
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 260px;
}
.testimoni-card p { font-size: 14px; font-style: italic; color: #dbe4ee; line-height: 1.7; margin-bottom: 22px; }
.testimoni-person { display: flex; align-items: center; gap: 12px; }
.testimoni-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy-mid); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.testimoni-avatar-photo { object-fit: cover; border: 2px solid rgba(255,255,255,.25); }
.testimoni-person div { display: flex; flex-direction: column; font-size: 13px; }
.testimoni-person span { color: #a8b7c8; font-size: 12px; }
.testimoni-arrow {
  width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--card-shadow); color: var(--navy); font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
.testimoni-arrow:hover { background: var(--bg-alt); }
.testimoni-dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.testimoni-dot { width: 9px; height: 9px; border-radius: 50%; background: #c7d0da; border: none; cursor: pointer; padding: 0; transition: background .15s ease, width .15s ease; }
.testimoni-dot.is-active { background: var(--navy); width: 22px; border-radius: 999px; }

/* ---------- Blog / Berita PPG ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--card-shadow); display: block; transition: transform .15s ease, box-shadow .15s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(22,50,79,.12); }
.blog-card-thumb { height: 160px; background: linear-gradient(135deg, var(--biru-light, var(--bg-alt)), var(--cream)); }
.blog-card-body { padding: 20px; }
.blog-card-tag {
  display: inline-block; font-size: 11px; font-weight: 800; color: var(--navy); background: var(--bg-alt);
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 12px;
}
.blog-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; }
.blog-card-date { font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.article-body p { font-size: 15px; color: var(--ink); margin-bottom: 16px; line-height: 1.8; }

/* ---------- CTA (final) ---------- */
.cta { background: var(--navy-dark); color: #fff; padding: 76px 0; }
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-size: 28px; margin-bottom: 12px; }
.cta-inner p { color: #cddced; margin-bottom: 26px; font-size: 15px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; }
.faq-item summary { font-weight: 700; font-size: 15px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; font-size: 18px; color: var(--navy); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 12px; font-size: 14px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: #c7d4e0; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #1f3a54; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
.footer-logo-badge {
  display: inline-flex; align-self: flex-start; background: #fff; padding: 10px 16px;
  border-radius: 12px; box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.footer-brand .brand-logo { height: 36px; width: auto; display: block; }
.footer-brand p { font-size: 13px; color: #8fa3b8; }
.footer-links { display: flex; gap: 56px; }
.footer-links h4 { color: #fff; font-size: 13px; margin-bottom: 14px; }
.footer-links a { display: block; font-size: 13px; color: #8fa3b8; margin-bottom: 10px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; font-size: 12px; color: #71879c; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-slide, .section-split { grid-template-columns: 1fr; }
  .hero-arrow { top: 22%; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .struktur-grid, .fitur-grid { grid-template-columns: repeat(2, 1fr); }
  .langkah-grid { grid-template-columns: repeat(2, 1fr); }
  .harga-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .produk-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimoni-card { flex: 0 0 calc(50% - 12px); }
  .footer-inner { grid-template-columns: 1fr; }
  .promo-banner { flex-direction: column; text-align: center; }
  .promo-copy p { max-width: 100%; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    gap: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 8px 24px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .navbar-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .hero-copy h1 { font-size: 30px; }
  .struktur-grid, .fitur-grid, .langkah-grid, .proof-grid, .harga-grid, .produk-grid { grid-template-columns: 1fr; }
  .mock-badge, .hero-blob, .hero-dotgrid { display: none; }
  .hero-arrow { display: none; }
  .testimoni-card { flex: 0 0 100%; }
  .testimoni-arrow { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
}
