/* ============================================================
   VISMAXPRO LP REPLICA - STYLESHEET
   Theme: Royal Blue + Gold (drama/streaming branding)
   ============================================================ */

:root {
  --blue-900: #0a1454;
  --blue-800: #0d1b6e;
  --blue-700: #1a237e;
  --blue-600: #283593;
  --blue-500: #3949ab;
  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-300: #fcd34d;
  --gold-600: #d97706;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --ok: #16a34a;
  --warn: #dc2626;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ====== LAYOUT ====== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.wrap { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ====== HEADER ====== */
.site-header {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  padding: 14px 0;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 4px 20px rgba(10,20,84,.3);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff !important; }
.brand img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold-400); box-shadow: 0 0 12px rgba(245,158,11,.5); }
.brand .name { font-weight: 800; font-size: 18px; letter-spacing: .5px; color: #fff !important; text-shadow: 0 2px 4px rgba(0,0,0,.4); }
.brand .name .name-ax { color: #fbbf24 !important; }
.brand .tag { font-size: 11px; color: #fcd34d !important; }
.header-actions { display: flex; gap: 8px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 8px; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; transition: all .2s; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #1a1300; box-shadow: 0 4px 14px rgba(245,158,11,.4); }
.btn-gold:hover { box-shadow: 0 6px 20px rgba(245,158,11,.6); }
.btn-blue { background: var(--blue-600); color: #fff; }
.btn-blue:hover { background: var(--blue-500); }
.btn-outline { background: transparent; color: #fff; border: 1px solid var(--gold-400); }
.btn-outline:hover { background: rgba(245,158,11,.15); }
.btn-ghost { background: #f1f5f9; color: var(--ink); }
.btn-ghost:hover { background: #e2e8f0; }
.btn-danger { background: var(--warn); color: #fff; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ====== HERO ====== */
.hero {
  background:
    radial-gradient(ellipse at top, rgba(245,158,11,.18), transparent 60%),
    linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-800) 100%);
  color: #fff; padding: 50px 0 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero .logo-big { width: 130px; height: 130px; margin: 0 auto 20px; border-radius: 50%; border: 4px solid var(--gold-400); box-shadow: 0 0 40px rgba(245,158,11,.5); }
.hero h1 { font-size: clamp(26px, 5vw, 44px); font-weight: 900; line-height: 1.15; margin-bottom: 12px; }
.hero h1 .gold { color: var(--gold-400); }
.hero .subtitle { font-size: 16px; color: #c7d2fe; max-width: 720px; margin: 0 auto 24px; }
.release-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15); border: 1px solid var(--gold-400);
  color: var(--gold-300); padding: 8px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14px; margin-bottom: 20px;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.inviter-badge {
  margin: 28px auto 0; max-width: 460px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(245,158,11,.3);
  border-radius: 14px; padding: 16px; backdrop-filter: blur(8px);
  text-align: left;
}
.inviter-badge .ib-head { display: flex; align-items: center; gap: 12px; }
.inviter-badge .avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex; align-items: center; justify-content: center; color: #1a1300;
  font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.inviter-badge .ib-info { font-size: 13px; }
.inviter-badge .ib-info b { color: var(--gold-300); }
.inviter-badge .ib-row { display: flex; justify-content: space-between; padding: 3px 0; font-size: 12px; color: #dbeafe; }
.inviter-badge .ib-row b { color: #fff; }

/* ====== SECTIONS ====== */
section { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2 { font-size: clamp(22px, 4vw, 30px); font-weight: 800; color: var(--blue-700); }
.section-title .lead { color: var(--muted); margin-top: 6px; font-size: 15px; }
.section-gold { border-top: 3px solid var(--gold-400); }
.section-blue { background: linear-gradient(180deg, #fff, #eef2ff); }

/* ====== INFO STRIP ====== */
.info-strip {
  background: var(--blue-800); color: #fff; padding: 18px 0; text-align: center;
  border-top: 2px solid var(--gold-500);
}
.info-strip .company { font-weight: 800; color: var(--gold-300); font-size: 15px; }
.info-strip .docs { font-size: 12px; color: #c7d2fe; margin-top: 4px; }

/* ====== CARDS ====== */
.card {
  background: #fff; border-radius: 14px; padding: 20px;
  box-shadow: 0 4px 20px rgba(15,23,42,.06); border: 1px solid var(--line);
}
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ====== VIPRO CARD ====== */
.vipro-card {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: #fff; border-radius: 16px; padding: 24px; position: relative; overflow: hidden;
  border: 2px solid var(--gold-400);
}
.vipro-card::before {
  content: 'VIPRO'; position: absolute; top: -10px; right: 14px;
  font-size: 80px; font-weight: 900; color: rgba(245,158,11,.08);
}
.vipro-card h3 { color: var(--gold-300); font-size: 22px; margin-bottom: 12px; }
.vipro-card .price { font-size: 28px; font-weight: 800; color: #fff; }
.vipro-card ul { list-style: none; margin-top: 14px; }
.vipro-card li { padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,.15); font-size: 14px; }
.vipro-card li:last-child { border: none; }

/* ====== PAKET UPGRADE ====== */
.paket {
  background: #fff; border-radius: 14px; overflow: hidden; border: 2px solid var(--line);
  transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.paket:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(26,35,126,.15); border-color: var(--gold-400); }
.paket .head { padding: 16px; color: #fff; text-align: center; }
.paket .head .tier { font-size: 12px; opacity: .85; letter-spacing: 1px; text-transform: uppercase; }
.paket .head .name { font-size: 18px; font-weight: 800; }
.paket .head .harga { font-size: 22px; font-weight: 900; margin-top: 4px; }
.paket .body { padding: 16px; flex: 1; }
.paket .tugas { font-size: 12px; background: #fef3c7; color: var(--gold-600); padding: 6px 10px; border-radius: 6px; text-align: center; margin-bottom: 12px; font-weight: 600; }
.paket .row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 14px; border-bottom: 1px dotted var(--line); }
.paket .row:last-child { border: none; }
.paket .row b { color: var(--blue-700); }
.paket-1 .head { background: linear-gradient(135deg,#16a34a,#15803d); }
.paket-2 .head { background: linear-gradient(135deg,#0ea5e9,#0369a1); }
.paket-3 .head { background: linear-gradient(135deg,#8b5cf6,#6d28d9); }
.paket-4 .head { background: linear-gradient(135deg,#ec4899,#be185d); }
.paket-5 .head { background: linear-gradient(135deg,#f59e0b,#d97706); }
.paket-6 .head { background: linear-gradient(135deg,#ef4444,#b91c1c); }
.paket-7 .head { background: linear-gradient(135deg,#0f172a,#1e293b); border-bottom: 3px solid var(--gold-400); }
.paket-8 .head { background: linear-gradient(135deg,#1a237e,#0a1454); border-bottom: 4px solid var(--gold-400); }

/* ====== BONUS TABLE ====== */
.bonus-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(15,23,42,.06); }
.bonus-table th { background: var(--blue-700); color: #fff; padding: 12px; text-align: left; font-size: 14px; }
.bonus-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
.bonus-table tr:hover td { background: #f8fafc; }
.bonus-table .pct { font-weight: 700; color: var(--gold-600); }

/* ====== REWARD ====== */
.reward-item {
  background: #fff; border-radius: 12px; padding: 14px; text-align: center;
  border: 1px solid var(--line); border-left: 4px solid var(--gold-500);
}
.reward-item .cond { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.reward-item .prize { font-weight: 800; color: var(--blue-700); font-size: 18px; }

/* ====== WITHDRAW BOX ====== */
.wd-box { background: linear-gradient(135deg,#fff,#fef3c7); border: 2px dashed var(--gold-500); border-radius: 14px; padding: 20px; }
.wd-box h3 { color: var(--gold-600); margin-bottom: 10px; }
.wd-box ul { list-style: none; }
.wd-box li { padding: 5px 0; font-size: 14px; }

/* ====== DISCLAIMER ====== */
.disclaimer {
  background: #fff7ed; border: 2px solid #fed7aa; color: #9a3412;
  border-radius: 12px; padding: 18px; margin: 24px 0; font-size: 14px;
}
.disclaimer b { color: #7c2d12; }

/* ====== FOOTER ====== */
.site-footer {
  background: var(--blue-900); color: #cbd5e1; padding: 30px 0 16px; margin-top: auto;
}
.site-footer .container { display: flex; flex-direction: column; gap: 16px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gold-400); }
.footer-brand .fb-name { font-weight: 800; color: #fff; }
.footer-brand .fb-tag { font-size: 11px; color: var(--gold-300); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-links a { color: #cbd5e1; }
.footer-links a:hover { color: var(--gold-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 12px; text-align: center; font-size: 12px; color: #94a3b8; }
.footer-register {
  display: inline-block; font-size: 11px; color: #64748b;
  padding: 2px 8px; border: 1px dashed #475569; border-radius: 4px;
  text-decoration: none; margin-left: 6px;
}
.footer-register:hover { color: var(--gold-300); border-color: var(--gold-400); text-decoration: none; }

/* Link kecil & buram di paling bawah footer (Login Mitra, Admin, Daftar LP) */
.footer-tiny-links {
  margin-top: 16px; padding-top: 12px;
  border-top: 1px dashed rgba(148,163,184,.2);
  display: flex; justify-content: center; align-items: center; gap: 8px;
  font-size: 10px; opacity: 0.45; filter: blur(0.3px);
  transition: opacity .25s, filter .25s;
  flex-wrap: wrap;
}
.footer-tiny-links:hover { opacity: 0.85; filter: blur(0); }
.footer-tiny-links a {
  color: #94a3b8; text-decoration: none;
  padding: 2px 6px; border-radius: 3px;
}
.footer-tiny-links a:hover {
  color: #fbbf24; background: rgba(245,158,11,.08);
  text-decoration: underline;
}
.footer-tiny-links span { color: #475569; }
.footer-disclaimer {
  background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.3);
  border-radius: 8px; padding: 10px; font-size: 11px; color: #fca5a5; margin-top: 8px;
}

/* ====== FORMS ====== */
.form-wrap { max-width: 460px; margin: 40px auto; }
.form-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 8px 30px rgba(15,23,42,.1); border: 1px solid var(--line); }
.form-card .fc-logo { width: 70px; height: 70px; margin: 0 auto 14px; border-radius: 50%; border: 3px solid var(--gold-400); }
.form-card h2 { text-align: center; color: var(--blue-700); font-size: 22px; margin-bottom: 4px; }
.form-card .sub { text-align: center; color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px;
  font-size: 14px; font-family: inherit; transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(57,73,171,.15);
}
.captcha-box {
  background: linear-gradient(135deg,#eef2ff,#fef3c7); border: 1px solid var(--line);
  border-radius: 8px; padding: 12px; text-align: center; font-weight: 700; font-size: 18px;
  color: var(--blue-700); margin-bottom: 5px; letter-spacing: 2px;
}
.alert { padding: 11px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-ok { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-warn { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.form-foot { text-align: center; margin-top: 16px; font-size: 13px; color: var(--muted); }

/* ====== ACTIVATE / PAYMENT ====== */
.pay-summary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); color: #fff;
  border-radius: 14px; padding: 20px; margin-bottom: 18px; text-align: center; border: 2px solid var(--gold-400);
}
.pay-summary .label { font-size: 13px; color: var(--gold-300); }
.pay-summary .amount { font-size: 34px; font-weight: 900; margin: 6px 0; }
.pay-summary .unique { font-size: 12px; color: #c7d2fe; }
.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.pay-method { background: #fff; border: 2px solid var(--line); border-radius: 10px; padding: 14px; text-align: center; }
.pay-method.active { border-color: var(--gold-400); background: #fffbeb; }
.pay-method .pm-name { font-weight: 800; color: var(--blue-700); }
.pay-method .pm-num { font-size: 16px; font-weight: 700; margin: 4px 0; }
.pay-method .pm-copy { font-size: 11px; color: var(--gold-600); cursor: pointer; }
.upload-area { border: 2px dashed var(--blue-500); border-radius: 10px; padding: 20px; text-align: center; background: #f8fafc; }
.upload-area input[type=file] { margin: 8px 0; }

/* ====== DASHBOARD ====== */
.dash { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.dash-sidebar {
  background: linear-gradient(180deg, var(--blue-900), var(--blue-700)); color: #fff; padding: 20px 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.dash-sidebar .logo { text-align: center; padding: 0 16px 20px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 14px; }
.dash-sidebar .logo img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold-400); margin: 0 auto 8px; }
.dash-sidebar .logo .lt { font-weight: 800; font-size: 15px; }
.dash-sidebar .logo .ls { font-size: 11px; color: var(--gold-300); }
.dash-nav a {
  display: flex; align-items: center; gap: 10px; padding: 11px 18px; color: #cbd5e1;
  font-size: 14px; border-left: 3px solid transparent;
}
.dash-nav a:hover, .dash-nav a.active { background: rgba(255,255,255,.06); color: #fff; border-left-color: var(--gold-400); text-decoration: none; }
.dash-nav a .ico { font-size: 16px; width: 18px; text-align: center; }
.dash-main { background: var(--bg); padding: 24px; overflow-y: auto; }
.dash-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.dash-topbar h1 { font-size: 22px; color: var(--blue-700); }
.dash-user { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.dash-user .av {
  width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex; align-items: center; justify-content: center; color: #1a1300; font-weight: 800;
}

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: 12px; padding: 18px; box-shadow: 0 4px 14px rgba(15,23,42,.05); border-left: 4px solid var(--gold-400); }
.stat-card .sl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-card .sv { font-size: 24px; font-weight: 800; color: var(--blue-700); margin-top: 4px; }
.stat-card .ss { font-size: 11px; color: var(--ok); margin-top: 2px; }

.table-card { background: #fff; border-radius: 12px; box-shadow: 0 4px 14px rgba(15,23,42,.05); overflow: hidden; }
.table-card .tc-head { padding: 16px 20px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.table-card .tc-head h3 { font-size: 16px; color: var(--blue-700); }
.table-card table { width: 100%; border-collapse: collapse; }
.table-card th { background: #f1f5f9; padding: 11px 14px; text-align: left; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.table-card td { padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 14px; }
.table-card tr:last-child td { border: none; }
.table-card .scroll { max-height: 480px; overflow-y: auto; }

.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-aktif { background: #dcfce7; color: #166534; }
.badge-banned { background: #fee2e2; color: #991b1b; }
.badge-paid { background: #dcfce7; color: #166534; }
.badge-rejected { background: #fee2e2; color: #991b1b; }

.ref-link-box {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); color: #fff;
  border-radius: 12px; padding: 20px; border: 2px solid var(--gold-400);
}
.ref-link-box .rl-label { font-size: 12px; color: var(--gold-300); margin-bottom: 8px; }
.ref-link-box .rl-input { display: flex; gap: 8px; }
.ref-link-box input {
  flex: 1; padding: 11px; border: none; border-radius: 8px; font-size: 14px;
  background: rgba(255,255,255,.95); color: var(--ink);
}
.share-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
  border-radius: 8px; font-size: 13px; font-weight: 600; color: #fff; text-decoration: none;
}
.share-btn:hover { text-decoration: none; opacity: .9; }
.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }
.share-tg { background: #0088cc; }
.share-copy { background: var(--gold-500); color: #1a1300; }

/* ====== RESPONSIVE ====== */
/* Cegah horizontal overflow di mobile (sangat penting!) */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img, video, iframe, table {
  max-width: 100%;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Legalitas image */
.legalitas-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.legalitas-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--gold-400);
  box-shadow: 0 6px 24px rgba(10,20,84,.12);
  display: block;
}

/* YouTube video responsive (16:9) */
.yt-video-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.yt-video-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 3px solid var(--gold-400);
  box-shadow: 0 8px 30px rgba(10,20,84,.15);
  background: #000;
}
.yt-video-box iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tutorial steps */
.tutor-step {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 2px solid var(--line);
  border-top: 4px solid var(--gold-400);
  box-shadow: 0 4px 14px rgba(15,23,42,.05);
}
.tutor-step .ts-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #1a1300;
  font-weight: 900;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245,158,11,.4);
}
.tutor-step .ts-body h4 {
  color: var(--blue-700);
  font-size: 15px;
  margin-bottom: 4px;
}
.tutor-step .ts-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Tutorial closing */
.tutor-closing {
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: #fff;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  border: 2px solid var(--gold-400);
}
.tutor-closing p {
  font-size: 15px;
  line-height: 1.6;
}
.tutor-closing b { color: var(--gold-300); }

/* ====== RESPONSIVE BREAKPOINTS ====== */
@media (max-width: 860px) {
  .dash { grid-template-columns: 1fr; }
  .dash-sidebar { position: relative; height: auto; }
  .dash-nav a { display: inline-flex; }
  .dash-nav { display: flex; flex-wrap: wrap; padding: 0 12px; gap: 4px; }
  .pay-methods { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .tutor-step { flex-direction: row; }
}
@media (max-width: 520px) {
  .hero { padding: 32px 0 40px; }
  .hero h1 { font-size: 24px; }
  .hero .logo-big { width: 100px; height: 100px; }
  .header-actions .btn-label { display: none; }
  .footer-top { flex-direction: column; }
  .container { padding: 0 12px; }
  .section-title h2 { font-size: 20px; }
  .paket .head .harga { font-size: 18px; }
  .paket .head .name { font-size: 15px; }
  .vipro-card .price { font-size: 22px; }
  .pay-summary .amount { font-size: 26px; }
  .tutor-step {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
  .tutor-step .ts-num { width: 38px; height: 38px; font-size: 17px; }
  .tutor-closing { padding: 16px; }
  .tutor-closing p { font-size: 13px; }
  .inviter-badge { padding: 12px; }
  .inviter-badge .avatar { width: 46px; height: 46px; font-size: 17px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 14px; }
  .stat-card .sv { font-size: 20px; }
  .bonus-table { font-size: 13px; }
  .bonus-table th, .bonus-table td { padding: 8px 10px; }
}
@media (max-width: 380px) {
  .stat-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ====== UTIL ====== */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; }
.text-muted { color: var(--muted); }
.text-gold { color: var(--gold-600); }
.text-blue { color: var(--blue-700); }
.fw-700 { font-weight: 700; }
.flex { display: flex; } .gap-2 { gap: 8px; } .items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.divider { height: 1px; background: var(--line); margin: 16px 0; }
