/* StreamVoucher — Dark Netflix-style streaming voucher */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e50914;
  --red-dark: #b20710;
  --red-glow: rgba(229,9,20,0.25);
  --cream: #f5f5f1;
  --bg: #141414;
  --bg2: #1c1c1c;
  --bg3: #242424;
  --card: #1f1f1f;
  --border: #2d2d2d;
  --text: #e5e5e5;
  --muted: #8c8c8c;
  --white: #ffffff;
  --gold: #f5c842;
  --green: #46d369;
  --blue: #0571b0;
  --purple: #833ab4;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── DEMO BAR ── */
.demo-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.demo-bar a { color: var(--white); text-decoration: underline; }
.demo-bar a:hover { opacity: .8; }

/* ── NAV ── */
nav {
  background: linear-gradient(180deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.7) 100%);
  padding: 0 24px;
  position: sticky;
  top: 32px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo svg { width: 22px; height: 22px; }
.nav-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav-brand-name span { color: var(--red); }

/* hamburger checkbox hack */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle-label span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
}
.nav-cta-btn:hover { background: var(--red-dark) !important; }

@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(10,10,10,.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
  }
  .nav-links a { padding: 12px 16px; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(229,9,20,.18) 0%, transparent 65%),
              var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e50914' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,9,20,.15);
  border: 1px solid rgba(229,9,20,.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 28px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px var(--red-glow);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 32px var(--red-glow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.05); }
.btn svg { width: 18px; height: 18px; }

/* ── PLATFORM STRIP ── */
.platform-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.platform-strip-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 16px;
}
.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: -.01em;
}
.p-netflix { background: rgba(229,9,20,.12); color: #e50914; border: 1px solid rgba(229,9,20,.25); }
.p-spotify { background: rgba(29,185,84,.1); color: #1db954; border: 1px solid rgba(29,185,84,.25); }
.p-disney { background: rgba(5,71,176,.12); color: #0547b0; border: 1px solid rgba(5,71,176,.25); }
.p-youtube { background: rgba(255,0,0,.1); color: #ff0000; border: 1px solid rgba(255,0,0,.25); }
.p-apple { background: rgba(255,255,255,.06); color: var(--white); border: 1px solid rgba(255,255,255,.12); }
.platform-badge svg { width: 20px; height: 20px; }

/* ── SECTION ── */
section { padding: 72px 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ── PRODUCT CARDS ── */
.container { max-width: 1100px; margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .25s;
  position: relative;
}
.product-card:hover {
  border-color: rgba(229,9,20,.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.product-card.featured { border-color: rgba(229,9,20,.5); }
.featured-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 50px;
}
.card-header {
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.card-platform { font-size: .75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.card-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.card-body { padding: 14px 20px 20px; }
.card-desc { font-size: .85rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.price-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}
.price-original {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-save {
  font-size: .75rem;
  background: rgba(70,211,105,.15);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.meta-tag {
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.meta-tag svg { width: 11px; height: 11px; }
.btn-card {
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: .9rem;
}

/* ── STATS ── */
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 64px;
  max-width: 900px;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--red); }
.stat-label { font-size: .8rem; color: var(--muted); }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all .2s;
}
.feature-card:hover { border-color: rgba(229,9,20,.3); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(229,9,20,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--red); }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── HOW STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  counter-increment: step;
}
.step-number {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIAL ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.stars { color: var(--gold); font-size: .9rem; margin-bottom: 12px; }
.testimonial-text { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  color: var(--white);
}
.author-name { font-weight: 700; color: var(--white); font-size: .85rem; }
.author-info { font-size: .78rem; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #ff3d3d 100%);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: -.02em; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1rem; }
.cta-banner .btn-white {
  background: var(--white);
  color: var(--red);
  font-weight: 800;
}
.cta-banner .btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ── PRODUK PAGE TABLE ── */
.platform-section { margin-bottom: 48px; }
.platform-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.platform-icon-lg {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-icon-lg svg { width: 28px; height: 28px; }
.platform-name-lg { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.platform-tagline { font-size: .85rem; color: var(--muted); }

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.product-table thead { background: rgba(255,255,255,.04); }
.product-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.product-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: middle;
}
.product-table tbody tr:hover { background: rgba(255,255,255,.03); }
.product-table tbody tr:last-child td { border-bottom: none; }
.product-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
}
.price-cell { font-weight: 700; color: var(--white); white-space: nowrap; }
.duration-cell { color: var(--muted); }
.badge-popular {
  background: rgba(229,9,20,.15);
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid rgba(229,9,20,.3);
  white-space: nowrap;
}
.badge-best {
  background: rgba(245,200,66,.12);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid rgba(245,200,66,.3);
}

/* ── CARA ORDER PAGE ── */
.steps-detail { max-width: 760px; margin: 0 auto; }
.step-detail-card {
  display: flex;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.step-num-big {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.step-detail-body h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-detail-body p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.step-detail-body ul { margin-top: 8px; padding-left: 18px; font-size: .85rem; color: var(--muted); line-height: 1.8; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item input[type=checkbox] { display: none; }
.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  font-size: .9rem;
  user-select: none;
  gap: 12px;
}
.faq-label::after { content: '+'; font-size: 1.3rem; color: var(--red); flex-shrink: 0; transition: transform .2s; }
.faq-item input:checked ~ .faq-label::after { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item input:checked ~ .faq-body { max-height: 300px; }
.faq-body-inner { padding: 0 20px 18px; }

/* ── CEK TRANSAKSI ── */
.cek-wrap { max-width: 560px; margin: 0 auto; }
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 28px;
}
.form-card h2 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.form-card p { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 7px; letter-spacing: .03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--white);
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 100px; }

.status-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.status-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .88rem;
}
.status-row:last-child { border-bottom: none; }
.status-key { color: var(--muted); }
.status-val { color: var(--white); font-weight: 600; }
.status-badge-success {
  background: rgba(70,211,105,.12);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  border: 1px solid rgba(70,211,105,.25);
}
.status-badge-pending {
  background: rgba(245,200,66,.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  border: 1px solid rgba(245,200,66,.25);
}

/* ── KONTAK ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card, .contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}
.contact-info-card h2, .contact-form-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-info-card p { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(229,9,20,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--red); }
.contact-item-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-bottom: 3px; }
.contact-item-val { font-size: .9rem; color: var(--white); font-weight: 600; }
.contact-item-sub { font-size: .8rem; color: var(--muted); }
.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  transition: all .2s;
}
.wa-btn:hover { background: #1da853; transform: translateY(-1px); }
.wa-btn svg { width: 22px; height: 22px; }

.jam-operasional {
  background: var(--bg3);
  border-radius: 10px;
  padding: 16px;
  margin-top: 20px;
}
.jam-operasional h4 { font-size: .82rem; font-weight: 700; color: var(--white); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.jam-row { display: flex; justify-content: space-between; font-size: .82rem; padding: 5px 0; color: var(--muted); }
.jam-row span:last-child { color: var(--text); font-weight: 600; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: .82rem;
  color: var(--muted);
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(180deg, rgba(229,9,20,.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 40px;
  text-align: center;
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); letter-spacing: -.02em; margin-bottom: 12px; }
.page-header p { color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: .85rem; color: var(--muted); margin-top: 14px; line-height: 1.7; }
.footer-col h4 { font-size: .82rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: .85rem; transition: color .15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ── UTILITY ── */
.bg-alt { background: var(--bg2); }
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }

@media (max-width: 600px) {
  section { padding: 48px 16px; }
  .form-card { padding: 24px 18px; }
  .cta-banner { padding: 40px 24px; }
  .stats-row { border-radius: 12px; }
  .stat-item { min-width: 120px; padding: 20px 12px; }
  .stat-number { font-size: 1.6rem; }
  .product-table th, .product-table td { padding: 10px 12px; }
}
