/* =====================================================================
   TRABAR FOREX ID — Stylesheet utama (rebuild profesional 2026)
   Tidak bergantung pada Bootstrap / Elementor / Tailwind asli.
   Dipakai oleh index.html (versi baru) dan vip.html (versi baru).
   ===================================================================== */

/* ---------- 1. Reset minimal ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 1.2em; }

/* ---------- 2. Design Tokens ---------- */
:root {
  /* Backgrounds */
  --bg-0:        #060A14;
  --bg-1:        #0A0F1E;
  --bg-2:        #111827;
  --bg-3:        #1A2236;
  --bg-elev:     #1F2A44;

  /* Text */
  --text-0:      #F8FAFC;
  --text-1:      #CBD5E1;
  --text-2:      #94A3B8;
  --text-3:      #64748B;

  /* Accent — palet finansial profesional */
  --brand:       #10B981;  /* emerald / bullish */
  --brand-2:     #059669;
  --brand-soft:  rgba(16, 185, 129, 0.10);
  --brand-line:  rgba(16, 185, 129, 0.28);
  --gold:        #F59E0B;
  --danger:      #EF4444;
  --info:        #3B82F6;

  /* Borders */
  --border:      rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md:   0 6px 16px rgba(0, 0, 0, 0.30);
  --shadow-lg:   0 18px 40px rgba(0, 0, 0, 0.45);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;

  /* Type */
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, Consolas, monospace;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
}

/* ---------- 3. Base ---------- */
html, body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-0);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--text-1); }
strong { color: var(--text-0); font-weight: 600; }
.muted { color: var(--text-2); }
.brand-text { color: var(--brand); }
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- 4. Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
}
.section-tight { padding: clamp(40px, 5vw, 70px) 0; }
.text-center { text-align: center; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- 5. Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 10, 20, 0.78);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-0);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand img { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
}
.nav-links a {
  color: var(--text-1);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text-0); background: var(--bg-2); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-0);
  padding: 8px;
  border-radius: var(--r-sm);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-1);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--brand);
  color: #03291C;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.28);
}
.btn-primary:hover { background: var(--brand-2); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(16, 185, 129, 0.40); }

.btn-outline {
  background: transparent;
  color: var(--text-0);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  padding: 8px 14px;
}
.btn-ghost:hover { color: var(--text-0); }

.btn-sm { padding: 8px 16px; font-size: 0.88rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn .icon { width: 16px; height: 16px; }

/* ---------- 7. Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge .dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- 8. Hero ---------- */
.hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(16, 185, 129, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(59, 130, 246, 0.07), transparent 70%),
    var(--bg-0);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 50% 50% at 50% 30%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 30%, black, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-title {
  background: linear-gradient(180deg, #FFFFFF 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 18ch;
  margin: 20px auto 24px;
}
.hero-title .accent {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  max-width: 58ch;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-2);
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-0);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero-stat-value .unit { color: var(--brand); }
.hero-stat-label {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- 9. Trust strip (partner logos) ---------- */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.trust-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 60px);
}
.trust-logos img {
  height: 32px;
  width: auto;
  filter: grayscale(100%) brightness(1.6) opacity(0.6);
  transition: filter 0.2s ease;
}
.trust-logos img:hover { filter: grayscale(0%) brightness(1) opacity(1); }

/* ---------- 10. Section heading ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .badge { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-2); font-size: 1.05rem; }

/* ---------- 11. Feature cards ---------- */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.card-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-md);
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: 0.95rem; margin: 0; }

/* ---------- 12. Pricing / Service tiers ---------- */
.tier {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.tier.featured {
  border-color: var(--brand);
  background:
    linear-gradient(180deg, rgba(16,185,129,0.06) 0%, transparent 100%),
    var(--bg-2);
  transform: scale(1.03);
}
.tier:hover { border-color: var(--border-strong); }
.tier.featured:hover { border-color: var(--brand); }
.tier-label {
  font-size: 0.75rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 8px;
}
.tier.featured .tier-label { color: var(--brand); }
.tier-name { font-size: 1.4rem; margin-bottom: 12px; }
.tier-tagline { color: var(--text-2); font-size: 0.92rem; margin-bottom: 24px; min-height: 2.8em; }
.tier-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-0);
  margin-bottom: 4px;
}
.tier-price .per { font-size: 0.85rem; color: var(--text-2); font-weight: 500; }
.tier-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-1);
}
.tier-list svg {
  width: 18px; height: 18px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.tier-list li.unavailable { color: var(--text-3); }
.tier-list li.unavailable svg { color: var(--text-3); }
.tier .btn { margin-top: auto; }

.featured-pill {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--brand);
  color: #03291C;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- 13. How it works steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--bg-elev);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.03em;
}
.step h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.05rem;
  padding-right: 64px;
}
.step p { color: var(--text-2); font-size: 0.92rem; margin: 0; }

/* ---------- 14. Live market embed ---------- */
.market-embed {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 4px;
}
.market-embed iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  border-radius: calc(var(--r-lg) - 4px);
}
@media (max-width: 600px) {
  .market-embed iframe { height: 380px; }
}

/* ---------- 15. Performance stats ---------- */
.perf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .perf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .perf-grid { grid-template-columns: 1fr; } }
.perf {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
}
.perf-value {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
}
.perf-value .small { font-size: 0.6em; color: var(--text-2); }
.perf-label {
  margin-top: 10px;
  color: var(--text-2);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- 16. Testimonials ---------- */
.testi {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testi-quote {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-1);
  line-height: 1.7;
  margin: 0 0 20px;
}
.testi-quote::before { content: "“"; color: var(--brand); font-size: 2.4rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; font-family: Georgia, serif; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
}
.testi-name { color: var(--text-0); font-weight: 600; font-size: 0.92rem; }
.testi-role { color: var(--text-2); font-size: 0.82rem; }

/* ---------- 17. FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--brand-line); }
.faq-item summary {
  list-style: none;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--text-0);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-body {
  padding: 0 22px 18px;
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ---------- 18. CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(ellipse 80% 100% at 80% 50%, rgba(16, 185, 129, 0.18), transparent 70%),
    linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: var(--text-2); margin-bottom: 28px; max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin: 0 6px 8px; }

/* ---------- 19. Risk disclosure ---------- */
.risk-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-top: 36px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.risk-box .risk-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--gold);
}
.risk-box p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}
.risk-box strong { color: var(--gold); }
.risk-box a { color: var(--brand); text-decoration: underline; }

/* ---------- 20. Footer ---------- */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand span { font-weight: 700; color: var(--text-0); font-size: 1.05rem; }
.footer-desc { color: var(--text-2); font-size: 0.92rem; max-width: 36ch; }
.footer h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-1);
  font-size: 0.93rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--brand); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-copy { color: var(--text-3); font-size: 0.85rem; margin: 0; }
.footer-social { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-1);
  transition: all 0.15s;
}
.footer-social a:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

/* ---------- 21. VIP page specific ---------- */
.vip-hero {
  padding: clamp(70px, 9vw, 120px) 0 clamp(40px, 5vw, 70px);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245, 158, 11, 0.10), transparent 70%),
    var(--bg-0);
  text-align: center;
}
.vip-hero h1 { max-width: 22ch; margin: 18px auto 18px; }
.vip-hero p { color: var(--text-2); max-width: 60ch; margin: 0 auto 32px; font-size: 1.05rem; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .benefit-grid { grid-template-columns: 1fr; } }

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .step-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .step-grid { grid-template-columns: 1fr; } }
.step-card-vip {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: border-color 0.18s, transform 0.18s;
}
.step-card-vip:hover { border-color: var(--brand-line); transform: translateY(-2px); }
.step-card-vip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid var(--brand-line);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.step-card-vip img {
  width: 100%;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.step-card-vip p { color: var(--text-1); font-size: 0.9rem; margin: 0; line-height: 1.55; }
.step-card-vip p b { color: var(--text-0); }
.step-card-vip a { color: var(--brand); text-decoration: underline; font-weight: 500; }

.vip-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ---------- 22. Scroll-to-top ---------- */
.to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  color: var(--brand);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.15s;
  z-index: 60;
}
.to-top.show { display: inline-flex; }
.to-top:hover { background: var(--brand); color: #03291C; }
.to-top svg { width: 18px; height: 18px; }

/* ---------- 23. Utility ---------- */
::selection { background: var(--brand-soft); color: var(--text-0); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: clamp(40px, 8vw, 80px) 0;
}

/* ---------- 24. Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeIn 0.6s ease forwards;
  }
  .fade-in:nth-child(2) { animation-delay: 0.08s; }
  .fade-in:nth-child(3) { animation-delay: 0.16s; }
  .fade-in:nth-child(4) { animation-delay: 0.24s; }
  @keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
  }
}
