:root {
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --text: #0f172a;
  --text-muted: #64748b;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --grad: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --radius: 16px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 34px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(37, 99, 235, 0.18);
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer; border: none;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-ghost-dark { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.15); }
.btn-light { background: #fff; color: var(--primary-dark); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: rgba(37,99,235,0.06); }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled { background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); width: min(1400px, 96%); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad); color: #fff; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-text { color: var(--text); }
.brand-line { display: block; line-height: 1.15; }
.navbar:not(.scrolled) .brand-text { color: #fff; }
.accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; gap: 6px; }
.nav-links a {
  padding: 8px 14px; border-radius: 10px; font-weight: 600; font-size: 0.92rem; color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(37,99,235,0.08); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.15); }

.nav-cta { padding: 10px 18px; font-size: 0.88rem; }
.navbar:not(.scrolled) .nav-cta { box-shadow: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.navbar:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero (Full-Width Cinematic Background) ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 64px) 0 84px;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg picture,
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: contrast(1.06) brightness(1.03);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.32) 0%, rgba(15, 23, 42, 0.48) 50%, rgba(15, 23, 42, 0.82) 100%);
  z-index: 1;
}

.hero-bg::before, .hero-bg::after {
  display: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  background: rgba(15, 23, 42, 0.55); border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,0.35); }

.hero-copy {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 22px 0 20px;
  font-weight: 800;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.90), 0 1px 5px rgba(0, 0, 0, 0.95);
}

.gradient-text {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero p {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.68;
  color: #ffffff;
  max-width: 680px;
  margin-inline: auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.92), 0 1px 4px rgba(0, 0, 0, 0.95);
}
.hero p + p { margin-top: 12px; }

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-caption-pill {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.95);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.35);
}

/* ---------- Trust ---------- */
.trust { padding: 30px 0; border-bottom: 1px solid #eef2f7; text-align: center; }
.trust p { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 18px; }
.trust-logos { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-logos span { font-weight: 800; color: #94a3b8; font-size: 0.95rem; letter-spacing: 0.01em; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(37,99,235,0.08);
  color: var(--primary); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section-head p { color: var(--text-muted); margin-top: 14px; font-size: 1.02rem; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  display: block; background: #fff; border: 1px solid #eef2f7; border-radius: var(--radius); padding: 18px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card h3::after { content: " →"; color: var(--primary); opacity: 0; transition: opacity 0.25s ease; }
.feature-card:hover h3::after { opacity: 1; }
.feature-icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; font-size: 1.3rem;
  background: color-mix(in srgb, var(--c) 12%, white);
  margin-bottom: 12px;
}
.feature-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Integration flow */
.flow { margin-bottom: 40px; }
.flow-row { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 14px; }
.flow-node {
  text-align: center; background: #fff; border: 1px solid #eef2f7; border-radius: var(--radius);
  padding: 26px 14px; box-shadow: var(--shadow-sm);
}
.flow-ico { display: block; font-size: 1.9rem; margin-bottom: 10px; }
.flow-node strong { display: block; font-size: 1rem; }
.flow-node small { color: var(--text-muted); font-size: 0.8rem; }
.flow-arrow { text-align: center; font-size: 1.6rem; color: var(--primary); font-weight: 700; }

.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.access-card {
  background: #fff; border: 1px solid #eef2f7; border-radius: var(--radius); padding: 26px;
  border-left: 4px solid var(--primary);
}
.access-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.access-card p { color: var(--text-muted); font-size: 0.92rem; }

.section-cta { text-align: center; }
/* Gallery */
.gallery-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.gallery-item {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm);
  flex: 0 0 auto; width: calc((100% - 40px) / 3);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item::after {
  content: attr(data-caption); position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 36px 18px 14px; font-size: 0.92rem; font-weight: 700; color: #fff;
  background: linear-gradient(transparent, rgba(15,23,42,0.7)); opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 36px; }

/* Lokasi / Denah */
.lokasi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.lokasi-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 14px 0 16px; }
.lokasi-copy p { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 20px; }
.lokasi-lists { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 12px; }
.lokasi-lists li { position: relative; padding-left: 28px; font-size: 0.96rem; }
.lokasi-lists li::before { content: "📍"; position: absolute; left: 0; top: 0; }
.lokasi-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.lokasi-photo { margin: 0; background: #fff; border: 1px solid #eef2f7; border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow-md); }
.lokasi-photo img { display: block; width: 100%; height: auto; border-radius: calc(var(--radius) - 8px); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  background: rgba(11,18,32,0.92); backdrop-filter: blur(6px); padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-caption { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.98rem; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 42px; height: 42px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.4rem; cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.24); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.5rem; cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.24); }
.lightbox-prev { left: 26px; }
.lightbox-next { right: 26px; }

/* Benefits */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { background: #fff; border: 1px solid #eef2f7; border-radius: var(--radius); padding: 20px 18px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.benefit-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.benefit-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; font-size: 1.25rem; background: color-mix(in srgb, var(--c) 12%, white); }
.benefit-num { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; color: #fff; background: linear-gradient(135deg,#2563eb 0%, #7c3aed 100%); padding: 5px 10px; border-radius: 999px; display: inline-block; box-shadow: 0 2px 8px rgba(37,99,235,0.25); }
.benefit-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative; background: #fff; border: 1px solid #eef2f7; border-radius: 20px; padding: 32px 28px;
  display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-md); }
.price-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 0.74rem; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.2rem; }
.price-desc { color: var(--text-muted); font-size: 0.88rem; margin: 6px 0 20px; }
.price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 22px; }
.price .cur { font-size: 1.1rem; font-weight: 700; vertical-align: super; margin-right: 2px; }
.price small { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); margin-left: 4px; }
.price-list { flex: 1; display: grid; gap: 12px; margin-bottom: 26px; }
.price-list li { position: relative; padding-left: 28px; font-size: 0.9rem; color: #334155; }
.price-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 19px; height: 19px;
  display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; color: #fff;
  background: var(--grad); border-radius: 6px;
}
.price-note { text-align: center; color: var(--text-muted); font-size: 0.86rem; margin-top: 28px; }

/* Org sections (KKPB, Dasawisma) */
.org-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.org-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 14px 0 16px; }
.org-copy p { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 20px; }
.org-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.org-list li { position: relative; padding-left: 30px; font-size: 0.96rem; }
.org-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px;
  display: grid; place-items: center; font-size: 0.72rem; font-weight: 800; color: #fff;
  background: var(--grad); border-radius: 6px;
}
.org-visual { position: relative; }
.org-card {
  background: var(--grad); border-radius: 24px; color: #fff; padding: 40px 32px;
  box-shadow: var(--shadow-lg); text-align: center; position: relative; overflow: hidden;
}
.org-card::before, .org-card::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
}
.org-card::before { width: 320px; height: 320px; background: var(--c, #2563eb); top: -140px; right: -100px; }
.org-card::after { width: 300px; height: 300px; background: #7c3aed; bottom: -140px; left: -100px; }
.org-ico {
  display: grid; place-items: center; width: 84px; height: 84px; margin: 0 auto 20px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px; font-size: 2.4rem; position: relative; z-index: 1;
}
.org-card h3 { font-size: 1.4rem; margin-bottom: 10px; position: relative; z-index: 1; }
.org-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; position: relative; z-index: 1; }
.org-chip {
  display: inline-block; margin-top: 18px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.8rem; font-weight: 600; position: relative; z-index: 1;
}

/* CTA */
.cta { padding: 32px 0 64px; }
.cta-box {
  text-align: center; color: #fff; border-radius: 28px; padding: 48px 32px;
  background: linear-gradient(140deg, #101a33 0%, #1e1b4b 100%);
  position: relative; overflow: hidden;
}
.cta-box::before, .cta-box::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
}
.cta-box::before { width: 340px; height: 340px; background: #2563eb; top: -120px; left: -80px; }
.cta-box::after { width: 340px; height: 340px; background: #7c3aed; bottom: -140px; right: -60px; }
.cta-box h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 30px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-contacts { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 30px; font-size: 0.88rem; color: rgba(255,255,255,0.8); position: relative; z-index: 1; }

/* Scroll to top */
.scroll-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  display: grid; place-items: center; font-size: 1.35rem; color: #fff;
  background: var(--grad); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { transform: translateY(-3px); }

/* Footer */
.footer { background: #0b1220; color: #94a3b8; padding: 64px 0 0; }
.footer .brand-text { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #60a5fa; }
.footer-col p { font-size: 0.88rem; line-height: 1.8; }
.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.12); margin: 12px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; text-align: center; font-size: 0.85rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { justify-content: center; }
  .gallery-item { width: calc((100% - 20px) / 2); }
  
  .flow-row { grid-template-columns: 1fr 1fr; }
  .flow-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: var(--nav-h); right: 0; bottom: 0; left: 0; z-index: 99;
    flex-direction: column; align-items: center; justify-content: flex-start; gap: 8px; padding: 32px 24px;
    background: #ffffff; backdrop-filter: blur(16px); box-shadow: 0 12px 40px rgba(15,23,42,0.12); border-top: 1px solid #e2e8f0;
    transform: translateY(-120%); opacity: 0; visibility: hidden; pointer-events: none; transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.35s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { color: var(--text) !important; font-size: 1.05rem; padding: 12px 20px; border-radius: 10px; transition: background 0.2s, color 0.2s; }
  .nav-links a:hover { background: rgba(37,99,235,0.10) !important; color: #2563eb !important; }
  .nav-links #nav-cta { display: inline-flex; margin-top: 16px; width: min(280px, 85%); justify-content: center; }
  .nav-links a.active { background: linear-gradient(135deg,#2563eb 0%, #7c3aed 100%) !important; color: #fff !important; box-shadow: 0 4px 12px rgba(37,99,235,0.25); }
  
  .nav-toggle { display: flex; }

  .benefit-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .access-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { justify-content: center; }
  .gallery-item { width: 100%; }
  .lokasi-grid { grid-template-columns: 1fr; gap: 28px; }
  .org-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 48px 0; }
  
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .flow-row { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
}
