/* Parkour Bold — Kursus Parkour */
:root {
  --pk-black: #0a0a0f;
  --pk-dark: #12121a;
  --pk-card: #1a1a26;
  --pk-border: #2a2a3a;
  --pk-accent: #ff3d00;
  --pk-accent2: #ff9100;
  --pk-neon: #00e5ff;
  --pk-text: #e8e8f0;
  --pk-muted: #8888aa;
  --pk-white: #ffffff;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--pk-black);
  color: var(--pk-text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--pk-accent); text-decoration: none; }
a:hover { color: var(--pk-accent2); }

img { max-width: 100%; display: block; }

/* ── DEMO BAR ─────────────────────────────── */
.demo-bar {
  background: linear-gradient(90deg, #1a0000, #2d0500);
  border-bottom: 2px solid var(--pk-accent);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.demo-bar span { color: var(--pk-accent2); text-transform: uppercase; }
.demo-bar-links { display: flex; gap: 12px; }
.demo-bar a {
  color: var(--pk-white);
  background: var(--pk-accent);
  padding: 4px 12px;
  border-radius: var(--radius);
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: background .2s;
}
.demo-bar a:hover { background: var(--pk-accent2); color: var(--pk-black); }
.demo-bar a.outline {
  background: transparent;
  border: 1px solid var(--pk-accent);
  color: var(--pk-accent);
}
.demo-bar a.outline:hover { background: var(--pk-accent); color: var(--pk-white); }

/* ── HEADER / NAV ─────────────────────────── */
header {
  background: var(--pk-dark);
  border-bottom: 1px solid var(--pk-border);
  position: sticky;
  top: 38px;
  z-index: 900;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--pk-white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo svg { flex-shrink: 0; }
.logo span { color: var(--pk-accent); }

/* hamburger checkbox hack */
#nav-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pk-white);
  border-radius: 2px;
  transition: all .3s;
}
#nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
nav ul a {
  color: var(--pk-text);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s;
  padding-bottom: 2px;
}
nav ul a:hover { color: var(--pk-accent); }
nav ul a.active { color: var(--pk-accent); border-bottom: 2px solid var(--pk-accent); }
.nav-cta a {
  background: var(--pk-accent) !important;
  color: var(--pk-white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
}
.nav-cta a:hover { background: var(--pk-accent2) !important; color: var(--pk-black) !important; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav {
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--pk-dark);
    border-top: 1px solid var(--pk-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  #nav-toggle:checked ~ nav { max-height: 400px; }
  nav ul { flex-direction: column; gap: 0; padding: 12px 20px 20px; align-items: flex-start; }
  nav ul li { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--pk-border); }
  nav ul li:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; }
  .nav-cta a { display: inline-block; }
}

/* ── UTILITY ──────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--pk-white);
  letter-spacing: -0.02em;
}
.section-title em { font-style: normal; color: var(--pk-accent); }
.section-sub {
  margin-top: 12px;
  color: var(--pk-muted);
  font-size: 17px;
  max-width: 600px;
}
.label-tag {
  display: inline-block;
  background: rgba(255,61,0,.15);
  color: var(--pk-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,61,0,.3);
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.btn-primary { background: var(--pk-accent); color: var(--pk-white); }
.btn-primary:hover { background: var(--pk-accent2); color: var(--pk-black); }
.btn-outline { background: transparent; border: 2px solid var(--pk-accent); color: var(--pk-accent); }
.btn-outline:hover { background: var(--pk-accent); color: var(--pk-white); }
.btn-neon { background: var(--pk-neon); color: var(--pk-black); }
.btn-neon:hover { opacity: .85; }

/* ── HERO ─────────────────────────────────── */
.hero {
  background: var(--pk-dark);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255,61,0,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,229,255,.07) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,42,58,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,42,58,.5) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--pk-white);
}
.hero-text h1 em { font-style: normal; color: var(--pk-accent); display: block; }
.hero-text p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--pk-muted);
  max-width: 480px;
}
.hero-btns {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.stat-item {}
.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--pk-accent);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--pk-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.parkour-art {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  position: relative;
}
.pk-figure {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; max-width: 260px; margin: 0 auto; }
  .hero-stats { gap: 20px; }
}

/* ── FEATURES / KEUNGGULAN ────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--pk-accent); transform: translateY(-4px); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,61,0,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--pk-white); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--pk-muted); line-height: 1.6; }

/* ── PROGRAMS / KELAS ─────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.program-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.program-card:hover { border-color: var(--pk-accent); transform: translateY(-4px); }
.program-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.program-thumb svg { position: relative; z-index: 1; }
.program-body { padding: 24px; }
.program-level {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.level-pemula { background: rgba(0,229,255,.15); color: var(--pk-neon); border: 1px solid rgba(0,229,255,.3); }
.level-menengah { background: rgba(255,145,0,.15); color: var(--pk-accent2); border: 1px solid rgba(255,145,0,.3); }
.level-lanjutan { background: rgba(255,61,0,.15); color: var(--pk-accent); border: 1px solid rgba(255,61,0,.3); }
.program-body h3 { font-size: 20px; font-weight: 800; color: var(--pk-white); margin-bottom: 8px; }
.program-body p { font-size: 14px; color: var(--pk-muted); margin-bottom: 16px; }
.program-meta { display: flex; gap: 16px; font-size: 13px; color: var(--pk-muted); margin-bottom: 20px; }
.program-price { font-size: 22px; font-weight: 900; color: var(--pk-accent); }
.program-price span { font-size: 13px; color: var(--pk-muted); font-weight: 400; }

/* ── SCHEDULE ─────────────────────────────── */
.schedule-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.schedule-table th {
  background: rgba(255,61,0,.1);
  color: var(--pk-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--pk-border);
}
.schedule-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--pk-border);
  font-size: 14px;
  color: var(--pk-text);
}
.schedule-table tr:hover td { background: rgba(255,61,0,.04); }
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.badge-open { background: rgba(0,200,80,.2); color: #00c850; }
.badge-full { background: rgba(255,61,0,.2); color: var(--pk-accent); }
.badge-new { background: rgba(0,229,255,.2); color: var(--pk-neon); }

/* ── TESTIMONIALS ─────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testi-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  line-height: 1;
  color: rgba(255,61,0,.2);
  font-weight: 900;
}
.testi-card p { font-size: 15px; color: var(--pk-text); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pk-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--pk-accent);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--pk-white); }
.testi-role { font-size: 12px; color: var(--pk-muted); }
.stars { color: var(--pk-accent2); font-size: 13px; margin-bottom: 10px; }

/* ── TRAINERS ─────────────────────────────── */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.trainer-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color .2s;
}
.trainer-card:hover { border-color: var(--pk-accent); }
.trainer-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,61,0,.3), rgba(255,145,0,.2));
  border: 2px solid var(--pk-accent);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trainer-card h3 { font-size: 17px; font-weight: 800; color: var(--pk-white); margin-bottom: 4px; }
.trainer-card .role { font-size: 12px; color: var(--pk-accent); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.trainer-card p { font-size: 13px; color: var(--pk-muted); line-height: 1.6; }

/* ── CTA BANNER ───────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,61,0,.2) 0%, rgba(255,145,0,.1) 50%, rgba(0,229,255,.05) 100%);
  border: 1px solid rgba(255,61,0,.3);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 900; color: var(--pk-white); margin-bottom: 12px; }
.cta-banner p { color: var(--pk-muted); margin-bottom: 28px; font-size: 16px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ──────────────────────────────────── */
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item input[type="checkbox"] { display: none; }
.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--pk-white);
  transition: color .2s;
}
.faq-label:hover { color: var(--pk-accent); }
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--pk-accent);
}
.faq-item input:checked ~ .faq-label .faq-arrow { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-item input:checked ~ .faq-body { max-height: 300px; }
.faq-body p { padding: 0 24px 20px; font-size: 14px; color: var(--pk-muted); line-height: 1.7; }

/* ── FORM ─────────────────────────────────── */
.form-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 600px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--pk-text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--pk-dark);
  border: 1px solid var(--pk-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--pk-text);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pk-accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--pk-dark); }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
}

/* ── GALLERY GRID ─────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pk-border);
  aspect-ratio: 4/3;
  background: var(--pk-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, transform .2s;
}
.gallery-item:hover { border-color: var(--pk-accent); transform: scale(1.02); }

/* ── CONTACT INFO ─────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
.info-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,61,0,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-list h4 { font-size: 12px; font-weight: 700; color: var(--pk-accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.info-list p { font-size: 14px; color: var(--pk-text); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── MAP PLACEHOLDER ──────────────────────── */
.map-box {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--pk-muted);
  font-size: 14px;
}

/* ── PRICING ──────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.price-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.price-card:hover { border-color: var(--pk-accent); transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--pk-accent);
  background: linear-gradient(180deg, rgba(255,61,0,.08) 0%, var(--pk-card) 100%);
  position: relative;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pk-accent);
  color: var(--pk-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-name { font-size: 18px; font-weight: 800; color: var(--pk-white); margin-bottom: 4px; }
.price-amount { font-size: 36px; font-weight: 900; color: var(--pk-accent); line-height: 1; margin: 12px 0 4px; }
.price-amount span { font-size: 16px; color: var(--pk-muted); font-weight: 400; }
.price-desc { font-size: 13px; color: var(--pk-muted); margin-bottom: 20px; }
.price-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-features li {
  font-size: 14px;
  color: var(--pk-text);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.check { color: var(--pk-accent); font-weight: 700; flex-shrink: 0; }
.cross { color: var(--pk-muted); flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--pk-dark);
  border-top: 1px solid var(--pk-border);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p { font-size: 14px; color: var(--pk-muted); margin-top: 12px; max-width: 300px; line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--pk-accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--pk-muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--pk-accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid var(--pk-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--pk-muted);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  background: var(--pk-dark);
  padding: 64px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pk-accent), transparent);
}
.page-hero h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 900; color: var(--pk-white); letter-spacing: -0.03em; }
.page-hero h1 em { font-style: normal; color: var(--pk-accent); }
.page-hero p { margin-top: 14px; font-size: 17px; color: var(--pk-muted); max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── BREADCRUMB ───────────────────────────── */
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--pk-muted); align-items: center; margin-bottom: 40px; flex-wrap: wrap; }
.breadcrumb a { color: var(--pk-muted); }
.breadcrumb a:hover { color: var(--pk-accent); }
.breadcrumb svg { width: 12px; height: 12px; color: var(--pk-border); }

/* ── DIVIDER ──────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--pk-border);
  margin: 0;
}
