/* TotoLagi — Responsive Site Stylesheet */
:root {
  --red-900: #5a0a0f;
  --red-800: #7a0c14;
  --red-700: #9c1019;
  --red-600: #b0151c;
  --red-500: #c8242c;
  --red-50:  #fff1f1;
  --gold-700: #a47214;
  --gold-600: #c89529;
  --gold-500: #e6b547;
  --gold-400: #f4cf6a;
  --gold-300: #ffe19b;
  --gold-100: #fff3d2;
  --ivory:   #fff6e5;
  --cream:   #fdebc4;
  --paper:   #fffaf0;
  --ink-900: #1a0a0b;
  --ink-700: #3a1f20;
  --ink-500: #6b4a4b;
  --ink-300: #b7a2a3;
  --green:   #2a8b57;
  --green-soft: #cfe9d9;

  --shadow-card: 0 1px 0 rgba(255,255,255,.55) inset, 0 1px 2px rgba(90,10,15,.08), 0 6px 18px rgba(90,10,15,.06);
  --shadow-pop:  0 10px 30px rgba(90,10,15,.25);
  --shadow-hero: 0 30px 80px rgba(0,0,0,.35);

  --container: 1200px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink-900);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.display { font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif; letter-spacing: -0.01em; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; font-variant-numeric: tabular-nums; }
.italic { font-style: italic; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* Sections */
section { padding: 56px 0; position: relative; }
@media (min-width: 768px) { section { padding: 80px 0; } }
@media (min-width: 1024px) { section { padding: 96px 0; } }

.section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--red-700);
  text-transform: uppercase;
  margin-bottom: 12px;
  white-space: nowrap;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ""; width: 18px; height: 2px; background: var(--gold-500);
  border-radius: 1px;
}
.section-eyebrow.on-dark { color: var(--gold-400); }
.section-lead { font-size: clamp(15px, 1.4vw, 17px); color: var(--ink-500); max-width: 640px; margin: 14px auto 0; }
.section-head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 15px;
  padding: 14px 22px;
  border-radius: 14px;
  border: none;
  letter-spacing: 0.02em;
  transition: transform .12s, box-shadow .12s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-500) 60%, var(--gold-600) 100%);
  color: var(--red-900);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), inset 0 -2px 0 rgba(120,80,0,.18), 0 8px 22px rgba(230,181,71,.35);
}
.btn-primary:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.7), inset 0 -2px 0 rgba(120,80,0,.18), 0 10px 28px rgba(230,181,71,.45); }
.btn-red {
  background: linear-gradient(180deg, var(--red-500) 0%, var(--red-600) 55%, var(--red-700) 100%);
  color: var(--ivory);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -2px 0 rgba(0,0,0,.18), 0 8px 22px rgba(176,21,28,.35);
}
.btn-outline-light {
  background: rgba(255,246,229,0.10);
  color: var(--ivory);
  border: 1.5px solid rgba(230,181,71,0.45);
}
.btn-outline-light:hover { background: rgba(255,246,229,0.16); }
.btn-outline-dark {
  background: var(--paper);
  color: var(--red-700);
  border: 1.5px solid rgba(176,21,28,0.22);
}
.btn-lg { padding: 16px 26px; font-size: 16px; border-radius: 16px; }
.btn-sm { padding: 9px 14px; font-size: 13px; border-radius: 10px; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.02em;
  background: rgba(230,181,71,0.18);
  color: var(--gold-700);
  border: 1px solid rgba(230,181,71,0.4);
  text-transform: uppercase;
}
.chip.red { background: rgba(176,21,28,0.08); color: var(--red-700); border-color: rgba(176,21,28,0.2); }
.chip.dark { background: rgba(26,10,11,0.85); color: var(--gold-300); border-color: rgba(230,181,71,0.4); }
.chip.solid-gold { background: var(--gold-500); color: var(--red-900); border-color: var(--gold-600); }
.chip.live { background: var(--red-600); color: var(--ivory); border: none; }
.chip.live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ivory);
  animation: pulse 1.4s infinite;
}

/* Cards */
.card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(176,21,28,0.06);
  overflow: hidden;
}
.card-dark {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(230,181,71,0.30), transparent 60%),
    linear-gradient(135deg, #2a0608 0%, #4a0d12 100%);
  color: var(--ivory);
  border: 1px solid rgba(230,181,71,0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
}

/* Hairlines */
.hairline { background: rgba(26,10,11,0.08); height: 1px; width: 100%; }
.gold-hairline {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 30%, var(--gold-500) 70%, transparent);
}

/* Number ball (reused) */
.ball {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800; font-size: 28px;
  color: var(--ivory);
  background: radial-gradient(circle at 32% 28%, #ff5961 0%, var(--red-600) 38%, var(--red-800) 75%, var(--red-900) 100%);
  box-shadow:
    inset 0 -3px 6px rgba(0,0,0,.35),
    inset 0 2px 3px rgba(255,255,255,.25),
    0 4px 10px rgba(90,10,15,.35),
    0 0 0 2px rgba(230,181,71,.85),
    0 0 0 3px rgba(255,255,255,.45);
  text-shadow: 0 1px 1px rgba(0,0,0,.35);
  flex-shrink: 0;
}
.ball.lg { width: 72px; height: 72px; font-size: 38px; box-shadow:
    inset 0 -4px 8px rgba(0,0,0,.35), inset 0 2px 3px rgba(255,255,255,.25),
    0 6px 14px rgba(90,10,15,.4), 0 0 0 3px rgba(230,181,71,.85), 0 0 0 4px rgba(255,255,255,.45); }
.ball.md { width: 44px; height: 44px; font-size: 24px; box-shadow:
    inset 0 -2px 5px rgba(0,0,0,.35), inset 0 2px 3px rgba(255,255,255,.25),
    0 3px 8px rgba(90,10,15,.3), 0 0 0 1.5px rgba(230,181,71,.85), 0 0 0 2px rgba(255,255,255,.4); }
.ball.sm { width: 32px; height: 32px; font-size: 17px; box-shadow:
    inset 0 -2px 4px rgba(0,0,0,.35), inset 0 1px 2px rgba(255,255,255,.25),
    0 2px 5px rgba(90,10,15,.3), 0 0 0 1.5px rgba(230,181,71,.85); }
.ball.xs { width: 26px; height: 26px; font-size: 13px; box-shadow:
    inset 0 -1px 2px rgba(0,0,0,.35), inset 0 1px 1px rgba(255,255,255,.25),
    0 1px 3px rgba(90,10,15,.3), 0 0 0 1px rgba(230,181,71,.85); }
.ball.gold {
  background: radial-gradient(circle at 32% 28%, #fff0b8 0%, var(--gold-500) 38%, var(--gold-600) 70%, var(--gold-700) 100%);
  color: var(--red-900);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.ball.ghost {
  background: radial-gradient(circle at 32% 28%, #fff7ee 0%, #f5e4c4 50%, #d9c79e 100%);
  color: var(--red-700);
  box-shadow: inset 0 -2px 4px rgba(176,21,28,.12), inset 0 1px 2px rgba(255,255,255,.7), 0 0 0 1.5px rgba(176,21,28,.18);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,181,71,.6); }
  50%      { box-shadow: 0 0 0 12px rgba(230,181,71,0); }
}
@keyframes ballDrop {
  0%   { transform: translateY(-24px) scale(.7); opacity: 0; }
  60%  { transform: translateY(3px) scale(1.06); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ========================================================== */
/* HEADER */
/* ========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26,10,11,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230,181,71,0.25);
  color: var(--ivory);
}
.site-header .bar {
  display: flex; align-items: center; gap: 16px;
  height: 68px;
}
.site-header .nav-links {
  display: none;
  margin-left: auto; align-items: center; gap: 4px;
}
@media (min-width: 1024px) {
  .site-header .nav-links { display: flex; }
}
.site-header .nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600; font-size: 14px;
  color: rgba(255,246,229,0.78);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.site-header .nav-links a:hover { background: rgba(255,246,229,0.08); color: var(--ivory); }
.site-header .header-cta { display: flex; gap: 8px; margin-left: auto; }
@media (min-width: 1024px) { .site-header .header-cta { margin-left: 12px; } }
.site-header .ticker {
  display: none;
  margin-left: 16px; padding-left: 16px;
  border-left: 1px solid rgba(230,181,71,0.25);
  align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  color: var(--gold-300);
  white-space: nowrap;
}
@media (min-width: 1280px) { .site-header .ticker { display: flex; } }
.site-header .ticker .label { font-size: 9px; letter-spacing: 0.16em; opacity: 0.75; white-space: nowrap; }
.site-header .ticker .amount { color: var(--gold-400); font-size: 15px; }

.menu-toggle {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,246,229,0.10);
  border: 1px solid rgba(230,181,71,0.25);
  color: var(--ivory);
  margin-left: auto;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: flex; flex-direction: column;
  padding: 8px 20px 16px;
  border-top: 1px solid rgba(230,181,71,0.2);
  background: rgba(26,10,11,0.98);
}
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 600; font-size: 15px;
  color: rgba(255,246,229,0.85);
  border-bottom: 1px solid rgba(230,181,71,0.12);
}
.mobile-nav a:last-of-type { border-bottom: none; }

/* ========================================================== */
/* HERO */
/* ========================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% 0%, rgba(230,181,71,0.30), transparent 60%),
    radial-gradient(900px 700px at 0% 100%, rgba(176,21,28,0.55), transparent 65%),
    linear-gradient(180deg, var(--red-800) 0%, #2a0608 100%);
  color: var(--ivory);
  padding: 56px 0 72px;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 96px 0 120px; } }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("kawung.svg");
  background-size: 180px 180px;
  opacity: 0.07;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 48px; }
}
@media (min-width: 1280px) {
  .hero-inner { grid-template-columns: 1.25fr 1fr; gap: 64px; }
}

.hero-jackpot-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.22em; font-weight: 800;
  color: var(--gold-300);
  margin-bottom: 14px;
  white-space: nowrap;
}
.hero-amount {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(44px, 7.5vw, 92px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  background: linear-gradient(180deg, #fff5cd 0%, var(--gold-400) 50%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(230,181,71,0.25);
  margin: 0;
  white-space: nowrap;
}
.hero-amount .currency {
  font-size: 0.42em;
  vertical-align: 0.55em;
  letter-spacing: -0.02em;
  margin-right: 0.05em;
}
.hero-tagline {
  font-size: clamp(15px, 1.6vw, 18px);
  opacity: 0.85;
  margin: 18px 0 0;
  max-width: 540px;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(230,181,71,0.2);
}
@media (min-width: 640px) { .hero-trust { grid-template-columns: repeat(4, 1fr); } }
.hero-trust .item { display: flex; align-items: center; gap: 10px; }
.hero-trust .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(230,181,71,0.15);
  display: grid; place-items: center;
  color: var(--gold-400);
  flex-shrink: 0;
  border: 1px solid rgba(230,181,71,0.3);
}
.hero-trust .lbl { font-weight: 800; font-size: 13px; line-height: 1.1; }
.hero-trust .sub { font-size: 11px; opacity: 0.7; }

/* Hero right card — live countdown ticket */
.hero-ticket {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(230,181,71,0.4), transparent 60%),
    linear-gradient(135deg, #1a0405 0%, #3a0c12 100%);
  border: 1px solid rgba(230,181,71,0.4);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-hero);
  position: relative;
  overflow: hidden;
}
.hero-ticket::before {
  content: ""; position: absolute; top: 50%; left: -10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--red-900); transform: translateY(-50%);
}
.hero-ticket::after {
  content: ""; position: absolute; top: 50%; right: -10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--red-900); transform: translateY(-50%);
}

/* ========================================================== */
/* PASARAN GRID */
/* ========================================================== */
.pasaran-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .pasaran-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pasaran-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .pasaran-grid { grid-template-columns: repeat(5, 1fr); } }

.pasaran-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(176,21,28,0.06);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.pasaran-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(90,10,15,.12); }
.pasaran-card.live { border: 1px solid rgba(176,21,28,0.25); background: linear-gradient(180deg, #fff 0%, #fff6e5 100%); }
.pasaran-card .flag {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
  margin: 0 auto;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,.18), inset 0 1px 2px rgba(255,255,255,.3), 0 4px 10px rgba(0,0,0,.12), 0 0 0 2px rgba(230,181,71,0.5);
}
.pasaran-card .name { font-weight: 800; font-size: 18px; }
.pasaran-card .balls { display: flex; justify-content: center; gap: 6px; }
.pasaran-card .timer {
  font-family: "JetBrains Mono"; font-weight: 800; font-size: 18px;
  color: var(--red-700);
}
.pasaran-card .schedule { font-size: 12px; color: var(--ink-500); }

/* ========================================================== */
/* LIVE STRIP */
/* ========================================================== */
.live-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) { .live-banner { grid-template-columns: 1fr 1.2fr; gap: 32px; } }
.live-banner .card-dark { padding: 28px; }
@media (min-width: 768px) { .live-banner .card-dark { padding: 36px; } }

/* ========================================================== */
/* RIWAYAT TABLE */
/* ========================================================== */
.results-table {
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid rgba(176,21,28,0.06);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.results-row {
  display: grid;
  grid-template-columns: 120px repeat(5, 1fr);
  align-items: center;
  padding: 14px 20px;
}
.results-row.head {
  background: linear-gradient(180deg, #2a0608, #1a0405);
  color: var(--gold-300);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 800;
  padding: 14px 20px;
}
.results-row + .results-row { border-top: 1px solid rgba(176,21,28,0.08); }
.results-row .date { font-weight: 700; }
.results-row .date .sub { font-size: 11px; color: var(--ink-500); font-weight: 500; }
.results-row .cell {
  display: flex; gap: 4px; justify-content: center;
}
@media (max-width: 720px) {
  .results-row { grid-template-columns: 1fr 1fr; padding: 14px; }
  .results-row.head { display: none; }
  .results-row .date { grid-column: 1 / -1; padding-bottom: 8px; border-bottom: 1px dashed rgba(176,21,28,0.18); margin-bottom: 8px; }
  .results-row .cell { justify-content: space-between; padding: 6px 0; }
  .results-row .cell::before {
    content: attr(data-label);
    font-size: 11px;
    color: var(--ink-500);
    font-weight: 700;
    letter-spacing: 0.1em;
  }
}

/* ========================================================== */
/* CARA MAIN — 4 STEPS */
/* ========================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(176,21,28,0.06);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-card);
}
.step .num {
  position: absolute;
  top: -20px; left: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff0b8, var(--gold-500) 50%, var(--gold-700));
  color: var(--red-900);
  font-family: "Bricolage Grotesque";
  font-style: italic; font-weight: 800; font-size: 22px;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(230,181,71,0.4), 0 0 0 4px var(--ivory);
}
.step .ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(176,21,28,0.07);
  color: var(--red-700);
  display: grid; place-items: center;
  margin: 12px 0 18px;
}
.step h3 { margin: 0 0 6px; font-family: "Bricolage Grotesque"; font-size: 20px; font-weight: 700; }
.step p { margin: 0; font-size: 14px; color: var(--ink-500); }

/* ========================================================== */
/* PROMOSI */
/* ========================================================== */
.promo-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 768px) { .promo-grid { grid-template-columns: repeat(3, 1fr); } }
.promo-card {
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--ivory);
}
.promo-card.welcome {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(230,181,71,0.45), transparent 60%),
    linear-gradient(135deg, #5a0a0f 0%, #b0151c 100%);
  border: 1px solid rgba(230,181,71,0.4);
}
.promo-card.cashback {
  background:
    radial-gradient(80% 120% at 0% 100%, rgba(255,255,255,0.15), transparent 60%),
    linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 100%);
  color: var(--red-900);
  border: 1px solid rgba(90,10,15,0.2);
}
.promo-card.referral {
  background:
    radial-gradient(80% 120% at 100% 100%, rgba(230,181,71,0.35), transparent 60%),
    linear-gradient(135deg, #1a0405 0%, #3a0c12 100%);
  border: 1px solid rgba(230,181,71,0.3);
}
.promo-card .badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.2em; font-weight: 800;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.18);
  align-self: flex-start;
}
.promo-card.cashback .badge { background: rgba(90,10,15,0.2); }
.promo-card .big {
  font-family: "Bricolage Grotesque";
  font-style: italic; font-weight: 800;
  font-size: 64px; line-height: 0.9; letter-spacing: -0.04em;
  margin: 14px 0 8px;
}
.promo-card.welcome .big { color: var(--gold-400); }
.promo-card.referral .big { color: var(--gold-400); }
.promo-card h3 { font-family: "Bricolage Grotesque"; font-size: 22px; font-weight: 700; margin: 0; }
.promo-card p { font-size: 13px; opacity: 0.85; margin: 6px 0 0; }
.promo-card .terms { font-size: 11px; opacity: 0.65; margin-top: 14px; }

/* ========================================================== */
/* TESTIMONI + TRUST */
/* ========================================================== */
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(176,21,28,0.06);
  box-shadow: var(--shadow-card);
  position: relative;
}
.testi-card .qmark {
  position: absolute;
  top: 18px; right: 20px;
  font-family: "Bricolage Grotesque"; font-style: italic; font-weight: 800;
  font-size: 70px; line-height: 1; color: var(--gold-400); opacity: 0.5;
}
.testi-card .stars { display: flex; gap: 2px; color: var(--gold-500); margin-bottom: 12px; }
.testi-card .quote { font-size: 15px; line-height: 1.5; color: var(--ink-700); }
.testi-card .author { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px dashed rgba(176,21,28,0.15); }
.testi-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-700), var(--red-900));
  color: var(--gold-400);
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
  font-family: "Bricolage Grotesque";
}
.testi-card .name { font-weight: 700; font-size: 14px; }
.testi-card .meta { font-size: 11px; color: var(--ink-500); }
.testi-card .win {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: auto;
  font-size: 11px; font-weight: 800;
  color: var(--green); font-family: "JetBrains Mono";
}

.trust-row {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 16px 36px;
  padding: 28px 24px;
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid rgba(176,21,28,0.08);
}
.trust-row .item {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-700);
  font-weight: 700; font-size: 13px;
}
.trust-row .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(176,21,28,0.06);
  color: var(--red-700);
  display: grid; place-items: center;
}

/* ========================================================== */
/* FAQ */
/* ========================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid rgba(176,21,28,0.08);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: 0 10px 24px rgba(90,10,15,.1); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700; font-size: 15px;
  cursor: pointer;
  border: none; background: transparent;
  width: 100%; text-align: left;
}
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(176,21,28,0.08);
  color: var(--red-700);
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--red-700); color: var(--ivory); }
.faq-a {
  display: none;
  padding: 0 24px 24px;
  color: var(--ink-500);
  font-size: 14px; line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

/* ========================================================== */
/* CTA BAND */
/* ========================================================== */
.cta-band {
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(230,181,71,0.30), transparent 60%),
    linear-gradient(180deg, var(--red-700) 0%, var(--red-900) 100%);
  color: var(--ivory);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("kawung.svg");
  background-size: 180px 180px;
  opacity: 0.06;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: "Bricolage Grotesque";
  font-style: italic; font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.cta-band .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ========================================================== */
/* FOOTER */
/* ========================================================== */
.site-footer {
  background: linear-gradient(180deg, #1a0405 0%, #0c0303 100%);
  color: rgba(255,246,229,0.75);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(230,181,71,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer-grid h4 {
  font-family: "Bricolage Grotesque";
  font-weight: 700; font-size: 14px;
  color: var(--gold-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a {
  font-size: 14px;
  color: rgba(255,246,229,0.65);
  transition: color .15s;
}
.footer-grid a:hover { color: var(--gold-300); }
.footer-about p { font-size: 14px; margin: 14px 0 18px; }
.footer-payment {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.payment-chip {
  background: rgba(255,246,229,0.06);
  border: 1px solid rgba(230,181,71,0.2);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-300);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(230,181,71,0.18);
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,246,229,0.55);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; text-align: left; }
}
.footer-bottom .age-warn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(176,21,28,0.18);
  color: var(--ivory);
  border: 1px solid rgba(176,21,28,0.4);
  font-weight: 800; font-size: 11px; letter-spacing: 0.08em;
}

/* Section variants */
.section-dark {
  background: linear-gradient(180deg, #0a0102 0%, #1a0405 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("kawung.svg");
  background-size: 180px 180px;
  opacity: 0.04;
  pointer-events: none;
}
.section-dark .container { position: relative; }
.section-dark .section-title { color: var(--ivory); }
.section-dark .section-lead { color: rgba(255,246,229,0.7); }
.section-cream { background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%); }

/* Util */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; }
.text-center { text-align: center; }
.no-wrap { white-space: nowrap; }
