/* ═══════════════════════════════════════════
   TINYJOY — style.css  (Mobile-First Revisi)
   tinyjoy.web.id
═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; line-height: 1.7;
  color: #1A1A2E; background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
blockquote { font-style: normal; }

/* ── CSS VARIABLES ── */
:root {
  --accent:   #FF6B35;
  --accent2:  #FFB347;
  --green:    #10B981;
  --purple:   #7C3AED;
  --blue:     #3B82F6;
  --text:     #1A1A2E;
  --muted:    #6B7280;
  --light:    #F8F7FF;
  --border:   #E5E7EB;
  --white:    #ffffff;
  --r:        16px;
  --r-sm:     10px;
  --r-xs:     8px;
  --shadow:   0 4px 24px rgba(0,0,0,0.07);
  --shadow-md:0 8px 40px rgba(0,0,0,0.11);
}

/* ── UTILITIES ── */
.hidden { display: none !important; }
.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
.c-accent { color: var(--accent); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  padding: 10px 16px 12px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
@media (max-width: 767px) { .mobile-sticky-cta { display: block; } }
.btn-sticky-cta {
  display: block; width: 100%;
  background: var(--accent); color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 16px; font-weight: 900;
  padding: 15px; border-radius: var(--r-sm);
  border: none; box-shadow: 0 4px 16px rgba(255,107,53,.35);
  transition: background .2s;
}
.btn-sticky-cta:hover { background: #e55a25; }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 998;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }

.nav-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 0 16px; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
@media (min-width: 640px) { .nav-inner { padding: 0 24px; } }

.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 20px;
  color: var(--text); letter-spacing: -.3px;
  flex-shrink: 0;
}
.nav-logo span:first-child { color: var(--accent); }
.logo-star { color: #FBBF24; font-size: 13px; }

.nav-links { display: none; }
@media (min-width: 768px) {
  .nav-links { display: flex; gap: 28px; }
  .nav-links a { font-size: 14px; font-weight: 600; color: var(--muted); transition: color .2s; }
  .nav-links a:hover { color: var(--accent); }
}

/* Desktop CTA */
.desktop-only { display: none; }
@media (min-width: 768px) {
  .desktop-only {
    display: inline-flex; align-items: center;
    background: var(--accent); color: #fff;
    font-weight: 700; font-size: 14px;
    padding: 10px 20px; border-radius: 100px; border: none;
    transition: background .2s, transform .2s;
    white-space: nowrap;
  }
  .desktop-only:hover { background: #e55a25; transform: translateY(-1px); }
}

/* Hamburger */
.nav-hamburger {
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; padding: 4px;
  flex-shrink: 0;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu dropdown */
.nav-mobile {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 8px 16px 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px; font-weight: 600; color: var(--muted);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--accent); }
.btn-nav-mobile {
  margin-top: 12px;
  background: var(--accent); color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 900;
  padding: 14px; border-radius: var(--r-sm); border: none;
  box-shadow: 0 4px 16px rgba(255,107,53,.3);
  transition: background .2s;
}
.btn-nav-mobile:hover { background: #e55a25; }

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 15px;
  padding: 14px 28px; border-radius: 100px; border: none;
  box-shadow: 0 6px 22px rgba(255,107,53,.35);
  transition: all .25s; white-space: nowrap;
}
@media (min-width: 480px) { .btn-primary { font-size: 16px; padding: 16px 32px; } }
.btn-primary:hover { background: #e55a25; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,53,.45); }
.btn-primary.btn-large { font-size: 17px; padding: 18px 36px; }
@media (min-width: 480px) { .btn-primary.btn-large { font-size: 18px; padding: 18px 44px; } }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 14px;
  padding: 13px 22px; border-radius: 100px;
  border: 2px solid var(--border);
  transition: all .2s;
}
@media (min-width: 480px) { .btn-ghost { font-size: 15px; padding: 14px 24px; } }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ════════════════════════════════════════════
   SECTION SHARED
════════════════════════════════════════════ */
.section-light { background: var(--light); }
.section-white { background: var(--white); }
section { padding: 72px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

.section-head { text-align: center; margin-bottom: 48px; }
@media (min-width: 768px) { .section-head { margin-bottom: 56px; } }

.section-tag {
  display: inline-block;
  background: rgba(255,107,53,.1);
  color: var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -1px; color: var(--text);
}
.section-sub {
  font-size: 15px; color: var(--muted);
  max-width: 520px; margin: 12px auto 0; line-height: 1.7;
}
@media (min-width: 640px) { .section-sub { font-size: 17px; } }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 80px;
  background: #FFFDF9;
  overflow: hidden; position: relative; text-align: center;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .2; }
.shape-1 { width: 400px; height: 400px; background: #FFB347; top: -100px; right: -80px; }
.shape-2 { width: 300px; height: 300px; background: #FF6B35; bottom: -60px; left: -60px; }
.shape-3 { width: 200px; height: 200px; background: #A78BFA; top: 40%; right: 5%; }
.shape-4 { width: 160px; height: 160px; background: #60A5FA; top: 20%; left: 5%; }

.badge-wrap { margin-bottom: 20px; }
.badge-live {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(255,107,53,.25);
  box-shadow: 0 2px 10px rgba(255,107,53,.1);
  color: var(--text); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px;
}
.badge-live strong { color: var(--accent); }
.dot-live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: blink 1.4s ease infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(30px, 7vw, 62px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--text);
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--accent); font-style: normal; }
.hero-title .underline-text { position: relative; display: inline-block; }
.hero-title .underline-text::after {
  content: ''; position: absolute; left: 0; bottom: 1px;
  width: 100%; height: 5px;
  background: linear-gradient(90deg,var(--accent),var(--accent2));
  border-radius: 3px; z-index: -1; opacity: .35;
}
.hero-sub {
  font-size: 15px; color: var(--muted); max-width: 540px;
  margin: 0 auto 32px; line-height: 1.7;
}
@media (min-width: 480px) { .hero-sub { font-size: 17px; } }
.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
}
.hero-scarcity {
  display: inline-block;
  background: #FFF3EC; border: 1.5px solid rgba(255,107,53,.2);
  color: var(--accent); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 48px;
}
.hero-scarcity s { color: var(--muted); }

/* ════════════════════════════════════════════
   VIDEO SLIDER
════════════════════════════════════════════ */
.video-slider-section {
  position: relative;
  margin-bottom: 48px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.slider-container {
  position: relative;
  display: flex; align-items: center; gap: 0;
}
.slider-viewport {
  overflow: hidden;
  border-radius: var(--r);
  flex: 1;
  /* mask edges for depth */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.slider-track {
  display: flex;
  gap: 16px;
  padding: 8px 16px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  cursor: grab;
}
.slider-track.dragging { cursor: grabbing; transition: none; }

.video-slide {
  flex: 0 0 160px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .2s;
}
@media (min-width: 480px)  { .video-slide { flex: 0 0 180px; } }
@media (min-width: 768px)  { .video-slide { flex: 0 0 200px; } }

.video-slide:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.featured-slide {
  border-color: var(--accent);
  box-shadow: 0 6px 28px rgba(255,107,53,.18);
}
.slide-popular {
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; text-align: center; padding: 5px;
}

/* ── Video thumbnail (real image) ── */
.vs-thumb {
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.vs-thumbnail-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.video-slide:hover .vs-thumbnail-img { transform: scale(1.04); }

.vs-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.28);
  transition: background .2s;
}
.vs-play-btn svg {
  width: 48px; height: 48px;
  background: rgba(255,107,53,.92);
  border-radius: 50%;
  padding: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
  transition: transform .2s, background .2s;
}
.vs-thumb:hover .vs-play-btn { background: rgba(0,0,0,.18); }
.vs-thumb:hover .vs-play-btn svg { transform: scale(1.1); background: var(--accent); }

/* ── Video Modal ── */
.video-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.88);
  align-items: center; justify-content: center;
  padding: 16px;
  backdrop-filter: blur(6px);
}
.video-modal-overlay.open { display: flex; }

.video-modal-inner {
  position: relative;
  width: 100%; max-width: 400px;
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.video-modal-close {
  position: absolute; top: -44px; right: 0;
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.video-modal-close:hover { background: rgba(255,255,255,.3); }

.video-modal-frame {
  position: relative;
  width: 100%;
  /* 9:16 ratio for Shorts */
  padding-top: 177.78%;
  border-radius: var(--r);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.video-modal-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Order Notification Popup ── */
.order-notif {
  position: fixed;
  bottom: 24px; left: 20px;
  z-index: 8888;
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  max-width: 280px; width: calc(100vw - 40px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
  pointer-events: none;
}
.order-notif.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.order-notif.hide {
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.on-avatar {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.on-content { flex: 1; min-width: 0; }
.on-name { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.on-msg { font-size: 12px; color: var(--muted); margin-top: 1px; }
.on-time { font-size: 11px; color: var(--accent); font-weight: 600; margin-top: 3px; }
.on-close {
  background: none; border: none; color: var(--muted);
  font-size: 14px; cursor: pointer; padding: 2px;
  line-height: 1; transition: color .2s; flex-shrink: 0;
}
.on-close:hover { color: var(--text); }
.vs-info { padding: 10px 12px 12px; }
.vs-title { font-size: 12px; font-weight: 700; margin-bottom: 3px; line-height: 1.4; }
@media (min-width: 480px) { .vs-title { font-size: 13px; } }
.vs-meta { font-size: 11px; color: var(--muted); }

/* Slider arrows */
.slider-arrow {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text);
  box-shadow: var(--shadow); z-index: 2;
  transition: all .2s;
}
@media (min-width: 640px) { .slider-arrow { width: 42px; height: 42px; } }
.slider-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.slider-arrow:disabled { opacity: .35; pointer-events: none; }
.slider-prev { margin-right: 8px; }
.slider-next { margin-left: 8px; }

/* Dots */
.slider-dots {
  display: flex; justify-content: center; gap: 7px; margin-top: 16px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 100px;
  background: var(--border); transition: all .25s; border: none;
  padding: 0;
}
.slider-dot.active {
  width: 20px; background: var(--accent);
}

/* Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 20px 16px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.stat-item { text-align: center; padding: 8px 14px; }
@media (min-width: 480px) { .stat-item { padding: 8px 20px; } }
.stat-num { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 900; color: var(--text); }
@media (min-width: 480px) { .stat-num { font-size: 26px; } }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 2px; }
@media (min-width: 480px) { .stat-label { font-size: 12px; } }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.platforms {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; padding-bottom: 8px;
}
.plat-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.plat-tags { display: flex; gap: 7px; flex-wrap: wrap; justify-content: center; }
.plat-tag {
  background: #fff; border: 1.5px solid var(--border);
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
}

/* ════════════════════════════════════════════
   PROBLEM
════════════════════════════════════════════ */
.grid-2x2 {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 540px) { .grid-2x2 { grid-template-columns: repeat(2,1fr); } }

.problem-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 22px 20px;
  transition: border-color .2s, transform .2s;
}
@media (min-width: 640px) { .problem-card { padding: 28px; } }
.problem-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.pc-icon { font-size: 26px; margin-bottom: 11px; }
.problem-card h3 {
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 800;
  margin-bottom: 9px; color: var(--text); line-height: 1.35;
}
@media (min-width: 640px) { .problem-card h3 { font-size: 17px; } }
.problem-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.problem-note {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1.5px solid rgba(255,107,53,.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-sm); padding: 18px 20px; margin-top: 16px;
}
.pn-icon { font-size: 20px; min-width: 26px; }
.problem-note p { font-size: 14px; color: var(--muted); line-height: 1.7; }
@media (min-width: 640px) { .problem-note p { font-size: 15px; } }
.problem-note strong { color: var(--text); font-weight: 700; }

/* ════════════════════════════════════════════
   CURRICULUM
════════════════════════════════════════════ */
.curriculum-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 540px)  { .curriculum-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px)  { .curriculum-grid { grid-template-columns: repeat(3,1fr); } }

.module-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 22px 20px;
  transition: all .25s; position: relative; overflow: hidden;
}
@media (min-width: 640px) { .module-card { padding: 26px; } }
.module-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--accent),var(--accent2));
  opacity: 0; transition: opacity .2s;
}
.module-card:hover { border-color: rgba(255,107,53,.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.module-card:hover::before { opacity: 1; }
.module-card-accent { background: linear-gradient(135deg,#FFF5F0,#fff); border-color: rgba(255,107,53,.35); }
.module-card-accent::before { opacity: 1; }
.module-num { font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 900; color: var(--accent); letter-spacing: 2px; margin-bottom: 7px; }
.module-icon { font-size: 26px; margin-bottom: 9px; }
.module-card h3 { font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 9px; line-height: 1.3; }
@media (min-width: 640px) { .module-card h3 { font-size: 17px; } }
.module-card p { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.65; }
.module-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.module-tags span { background: #FFF0E8; color: var(--accent); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }

/* ════════════════════════════════════════════
   FOR WHO
════════════════════════════════════════════ */
.forwho-grid {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  max-width: 740px; margin: 0 auto;
}
@media (min-width: 540px) { .forwho-grid { grid-template-columns: repeat(2,1fr); } }

.fw-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 14px 16px;
  transition: border-color .2s;
}
.fw-item:hover { border-color: var(--green); }
.fw-check {
  min-width: 22px; height: 22px;
  background: #DCFCE7; color: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; margin-top: 1px;
}
.fw-item span:last-child { font-size: 14px; font-weight: 500; line-height: 1.5; }

/* ════════════════════════════════════════════
   BONUS
════════════════════════════════════════════ */
.bonus-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 20px 22px;
  margin-bottom: 12px; box-shadow: var(--shadow);
}
.bh-val { font-family: 'Nunito', sans-serif; font-size: 26px; font-weight: 900; color: var(--accent); }
.bh-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.bh-badge { background: #DCFCE7; color: var(--green); font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; padding: 9px 18px; border-radius: 100px; }

.bonus-list { display: flex; flex-direction: column; gap: 9px; }
.bonus-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 15px 18px;
  transition: border-color .2s;
}
.bonus-item:hover { border-color: var(--accent); }
.bi-left { display: flex; align-items: center; gap: 12px; }
.bi-icon { font-size: 22px; }
.bi-name { font-size: 14px; font-weight: 700; }
.bi-desc { font-size: 12px; color: var(--muted); margin-top: 1px; }
.bi-orig { font-size: 11px; color: var(--muted); text-decoration: line-through; text-align: right; }
.bi-free { font-size: 13px; font-weight: 800; color: var(--green); text-align: right; }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 540px)  { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px)  { .testi-grid { grid-template-columns: repeat(3,1fr); } }

.testi-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 22px 20px;
  transition: all .2s;
}
@media (min-width: 640px) { .testi-card { padding: 24px; } }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255,107,53,.2); }
.testi-stars { color: #FBBF24; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card blockquote { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.testi-card blockquote strong { color: var(--accent); font-weight: 700; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 11px; color: var(--muted); }

/* ════════════════════════════════════════════
   EARNINGS
════════════════════════════════════════════ */
.earnings-card {
  display: flex; gap: 32px; flex-wrap: wrap;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 28px 24px;
  box-shadow: var(--shadow); align-items: center;
  max-width: 780px; margin: 0 auto;
}
@media (min-width: 640px) { .earnings-card { padding: 40px; } }
.ec-left { flex: 0 0 auto; text-align: center; width: 100%; }
@media (min-width: 640px) { .ec-left { width: auto; } }
.ec-amount { font-family: 'Nunito', sans-serif; font-size: clamp(40px,8vw,52px); font-weight: 900; color: var(--green); letter-spacing: -2px; line-height: 1; }
.ec-period { font-size: 13px; color: var(--muted); margin-top: 5px; }
.ec-badge { display: inline-block; background: #DCFCE7; color: var(--green); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; margin: 9px 0; }
.ec-source { font-size: 13px; color: var(--muted); }
.ec-source strong { color: var(--text); }
.ec-verified { font-size: 11px; color: var(--muted); margin-top: 5px; }
.ec-right { flex: 1; min-width: 220px; width: 100%; }
@media (min-width: 640px) { .ec-right { width: auto; } }
.ec-bar-title { font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.ec-bars { display: flex; flex-direction: column; gap: 13px; }
.ecb-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.ecb-track { height: 8px; background: #F3F4F6; border-radius: 4px; overflow: hidden; }
.ecb-fill { height: 100%; border-radius: 4px; }

/* ════════════════════════════════════════════
   MENTOR — fully centered
════════════════════════════════════════════ */
.mentor-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 40px 28px;
  box-shadow: var(--shadow);
  max-width: 680px; margin: 0 auto;
}
.mentor-avatar-wrap { margin-bottom: 16px; }
.mentor-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg,var(--accent),#e04020);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-size: 30px; font-weight: 900; color: #fff;
  border: 4px solid rgba(255,107,53,.2); margin: 0 auto 10px;
}
.mentor-badge-verified { display: inline-block; background: #DCFCE7; color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.mentor-name { font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 900; margin-bottom: 4px; }
.mentor-title { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.mentor-bio { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; max-width: 500px; }
@media (min-width: 640px) { .mentor-bio { font-size: 15px; } }
.mentor-stats { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.ms-item { text-align: center; }
.ms-num { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 900; color: var(--accent); }
.ms-label { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════════
   PRICING  (Priority Fix)
════════════════════════════════════════════ */
.pricing-wrap { max-width: 520px; margin: 0 auto; }

.countdown-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  background: #FFF5F0; border: 1.5px solid rgba(255,107,53,.25);
  border-radius: var(--r-sm); padding: 12px 16px; margin-bottom: 14px;
}
.cd-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.cd-timer { display: flex; align-items: center; gap: 6px; }
.cd-unit {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-xs); padding: 6px 10px;
  text-align: center; min-width: 46px;
}
.cd-num { font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 900; color: var(--accent); display: block; }
.cd-lbl { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-size: 18px; font-weight: 800; color: var(--accent); }

.pricing-card {
  background: #fff; border: 2px solid var(--accent);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 8px 40px rgba(255,107,53,.14);
}
.pricing-header {
  background: linear-gradient(135deg,#FFF5F0,#FFF8F3);
  padding: 28px 24px 22px;
  border-bottom: 1.5px solid rgba(255,107,53,.15);
  text-align: center;
}
@media (min-width: 480px) { .pricing-header { padding: 32px 32px 24px; } }

.pricing-ribbon {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .3px;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.pricing-name {
  font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 900;
  margin-bottom: 4px; line-height: 1.3;
}
@media (min-width: 480px) { .pricing-name { font-size: 20px; } }
.pricing-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* Price block — centered */
.price-block {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-bottom: 12px;
}
.price-orig-row {
  display: flex; align-items: center; gap: 8px; justify-content: center;
}
.price-orig-label { font-size: 12px; color: var(--muted); }
.price-orig { font-size: 15px; color: var(--muted); text-decoration: line-through; }
.price-main-row {
  display: flex; align-items: baseline; gap: 4px;
  line-height: 1; justify-content: center;
}
.price-prefix {
  font-family: 'Nunito', sans-serif;
  font-size: 20px; font-weight: 900; color: var(--text);
  line-height: 1;
}
@media (min-width: 380px) { .price-prefix { font-size: 24px; } }
.price-main {
  font-family: 'Nunito', sans-serif;
  font-size: 48px; font-weight: 900; color: var(--text);
  letter-spacing: -2px; line-height: 1;
}
@media (min-width: 380px) { .price-main { font-size: 56px; } }
.price-savings {
  display: inline-block;
  background: #DCFCE7; color: var(--green);
  font-size: 12px; font-weight: 800;
  padding: 4px 12px; border-radius: 100px;
}
.price-note { font-size: 12px; color: var(--muted); }

.pricing-body { padding: 20px 20px 24px; }
@media (min-width: 480px) { .pricing-body { padding: 24px 28px 28px; } }

/* Seat bar — priority fix */
.seat-bar {
  background: #F9FAFB; border: 1.5px solid var(--border);
  border-radius: var(--r-xs);
  padding: 14px 16px;
  margin: 0 0 20px;
}
.sb-info {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
  font-size: 13px; margin-bottom: 10px;
}
.sb-info span { color: var(--muted); }
.sb-info strong { color: var(--accent); font-weight: 700; }
.sb-track {
  height: 7px; background: #E5E7EB; border-radius: 4px; overflow: hidden;
  margin: 0;
}
.sb-fill { height: 100%; width: 54%; background: linear-gradient(90deg,var(--accent),var(--accent2)); border-radius: 4px; }

.feat-list { list-style: none; margin-bottom: 22px; display: flex; flex-direction: column; gap: 9px; }
.feat-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.55; }
@media (min-width: 480px) { .feat-list li { font-size: 14px; } }
.feat-chk { color: var(--green); font-weight: 800; min-width: 15px; margin-top: 1px; flex-shrink: 0; }

.btn-buy {
  display: block; width: 100%;
  background: var(--accent); color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 900;
  padding: 17px 20px; border-radius: var(--r-sm);
  text-align: center; border: none;
  box-shadow: 0 6px 22px rgba(255,107,53,.35);
  transition: all .2s; margin-bottom: 14px;
}
@media (min-width: 480px) { .btn-buy { font-size: 17px; padding: 18px 24px; } }
.btn-buy:hover { background: #e55a25; transform: translateY(-2px); }
.pricing-guarantee { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.5; }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 9px; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-sm); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 17px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); text-align: left;
}
@media (min-width: 640px) { .faq-q { font-size: 15px; padding: 19px 22px; } }
.faq-icon {
  width: 26px; height: 26px; min-width: 26px; border-radius: 50%;
  background: #FFF0E8; color: var(--accent); font-size: 18px;
  display: flex; align-items: center; justify-content: center; line-height: 1;
  transition: transform .2s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s; font-size: 14px; color: var(--muted); line-height: 1.7; padding: 0 20px; }
@media (min-width: 640px) { .faq-a { padding: 0 22px; } }
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }
@media (min-width: 640px) { .faq-item.open .faq-a { padding: 0 22px 20px; } }

/* ════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
#final-cta {
  background: linear-gradient(135deg,var(--accent) 0%,#FF9A3C 100%);
  padding: 80px 0; text-align: center; overflow: hidden;
}
@media (min-width: 640px) { #final-cta { padding: 100px 0; } }
.fca-inner { position: relative; }
.fca-shapes { position: absolute; inset: 0; pointer-events: none; }
.fca-shape { position: absolute; border-radius: 50%; opacity: .12; }
.fca-s1 { width: 360px; height: 360px; background: #fff; top: -140px; right: -80px; }
.fca-s2 { width: 280px; height: 280px; background: #fff; bottom: -100px; left: -60px; }
#final-cta h2 { font-family: 'Nunito', sans-serif; font-size: clamp(24px,5vw,46px); font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px; }
#final-cta h2 span { opacity: .93; }
#final-cta > .container > .fca-inner > p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 32px; }
#final-cta .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 8px 28px rgba(0,0,0,.14); }
#final-cta .btn-primary:hover { background: #FFF5F0; }
.fca-meta { font-size: 13px; color: rgba(255,255,255,.72); margin-top: 14px; }

/* ════════════════════════════════════════════
   FOOTER — redesigned with socials
════════════════════════════════════════════ */
footer {
  background: #1A1A2E;
  padding: 52px 0 40px;
  /* Extra bottom padding on mobile so sticky CTA doesn't overlap */
}
@media (max-width: 767px) { footer { padding-bottom: 100px; } }

.footer-top {
  text-align: center;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 22px; font-weight: 900; color: #fff;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,.45);
  line-height: 1.6; max-width: 400px; margin: 0 auto 20px;
}

/* Social icons */
.footer-socials { display: flex; align-items: center; justify-content: center; gap: 10px; }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  text-decoration: none;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--accent); color: #fff;
  border-color: var(--accent); transform: translateY(-2px);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 24px;
}

/* Bottom row */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: #fff; }

/* ════════════════════════════════════════════
   PAYMENT NAV
════════════════════════════════════════════ */
.pay-nav {
  position: sticky; top: 0; z-index: 99;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); padding: 0;
}
.pay-nav .container { height: 60px; display: flex; align-items: center; justify-content: space-between; }
.back-btn { background: none; border: none; font-size: 13px; font-weight: 600; color: var(--muted); transition: color .2s; padding: 4px 0; }
.back-btn:hover { color: var(--accent); }
.pay-nav-logo { font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 900; }
.pay-nav-logo span { color: var(--accent); }
.pay-nav-secure { font-size: 12px; color: var(--green); font-weight: 600; }

/* ════════════════════════════════════════════
   PAYMENT CONTENT
════════════════════════════════════════════ */
#payment-page { background: var(--light); min-height: 100vh; }
.pay-container { padding-top: 36px; padding-bottom: 80px; }
@media (min-width: 640px) { .pay-container { padding-top: 48px; } }
.pay-header { margin-bottom: 28px; }
.pay-header h1 { font-family: 'Nunito', sans-serif; font-size: clamp(22px,5vw,34px); font-weight: 900; letter-spacing: -1px; margin-bottom: 5px; }
.pay-header p { font-size: 15px; color: var(--muted); }

.pay-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
@media (min-width: 820px) { .pay-grid { grid-template-columns: 1fr 340px; } }

.form-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 22px 18px; margin-bottom: 14px; }
@media (min-width: 480px) { .form-card { padding: 26px 24px; } }
.form-section-title { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.form-group { margin-bottom: 15px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.req { color: var(--accent); }
.form-input {
  width: 100%;
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--r-xs); padding: 11px 13px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; color: var(--text);
  transition: border-color .2s, background .2s; outline: none; appearance: none;
}
.form-input:focus { border-color: var(--accent); background: #fff; }
.form-input::placeholder { color: #B0B7C3; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.pay-methods { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.pay-method-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pm-label {
  display: flex; align-items: center; gap: 12px;
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 13px 15px; cursor: pointer; transition: all .2s;
}
.pay-method-opt input:checked + .pm-label { border-color: var(--accent); background: #FFF5F0; }
.pm-icon { width: 36px; height: 36px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.pm-info { flex: 1; }
.pm-name { font-size: 14px; font-weight: 700; }
.pm-desc { font-size: 12px; color: var(--muted); }
.pm-radio { width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 50%; transition: all .2s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pay-method-opt input:checked + .pm-label .pm-radio { border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px #fff; }

.bank-box { display: none; background: #FFFDF9; border: 1.5px solid rgba(255,107,53,.22); border-radius: var(--r-sm); padding: 18px; margin-bottom: 18px; }
.bank-box.active { display: block; }
.bank-box-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }

/* 4-bank card grid */
.bank-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
@media (min-width: 480px) { .bank-cards-grid { grid-template-columns: repeat(2, 1fr); } }

.bank-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-xs); overflow: hidden;
  transition: border-color .2s;
}
.bank-card:hover { border-color: rgba(255,107,53,.4); }

.bank-card-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #F9FAFB;
}
.bank-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 11px; font-weight: 900;
  padding: 3px 8px; border-radius: 4px; letter-spacing: .5px;
}
.bca-logo  { background: #E8F0FF; color: #0060AF; }
.jago-logo { background: #E8FFF3; color: #00875A; }
.ocbc-logo { background: #FFF0E8; color: #C84B00; }
.cimb-logo { background: #FFE8E8; color: #B00020; }
.bank-card-name { font-size: 13px; font-weight: 700; color: var(--text); }

.bank-card-body { padding: 11px 14px; display: flex; flex-direction: column; gap: 7px; }
.bank-field { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.bf-label { font-size: 11px; color: var(--muted); white-space: nowrap; }
.bf-val-wrap { display: flex; align-items: center; gap: 6px; }
.bf-val { font-size: 14px; font-weight: 700; font-family: 'Nunito', sans-serif; letter-spacing: .3px; }
.bf-name { font-size: 13px; font-weight: 600; color: var(--text); }

/* Old bank-rows kept for QRIS layout compatibility */
.bank-rows { display: flex; flex-direction: column; gap: 9px; margin-bottom: 8px; }
.bank-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.br-label { font-size: 12px; color: var(--muted); }
.br-val { font-size: 14px; font-weight: 700; }
.bca-label { color: #0060AF; }
.bri-label { color: #F37021; }
.br-copy-wrap { display: flex; align-items: center; gap: 8px; }
.copy-btn { display: inline-flex; align-items: center; gap: 3px; background: #fff; border: 1.5px solid var(--border); border-radius: 6px; padding: 4px 9px; font-family: inherit; font-size: 12px; font-weight: 600; color: var(--muted); transition: all .2s; }
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.bank-divider { height: 1px; background: var(--border); margin: 12px 0; }
.bank-total-box { display: flex; justify-content: space-between; align-items: center; background: #FFF0E8; border: 1.5px solid rgba(255,107,53,.18); border-radius: var(--r-xs); padding: 11px 15px; margin-top: 4px; }
.btb-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.btb-val { font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 900; color: var(--accent); }

.qris-code-wrap { text-align: center; margin-bottom: 4px; }
.qris-code { width: 150px; height: 150px; background: #fff; border: 2px solid var(--border); border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.qris-placeholder { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.5; font-weight: 700; }
.qris-desc { font-size: 13px; color: var(--muted); }

.btn-pay {
  display: block; width: 100%; background: var(--accent); color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 900;
  padding: 17px; border-radius: var(--r-sm); text-align: center; border: none;
  box-shadow: 0 6px 22px rgba(255,107,53,.35); transition: all .2s; margin-bottom: 10px;
}
@media (min-width: 480px) { .btn-pay { font-size: 17px; } }
.btn-pay:hover { background: #e55a25; transform: translateY(-2px); }
.pay-secure-note { text-align: center; font-size: 12px; color: var(--muted); }
.error-msg { font-size: 12px; color: #EF4444; margin-top: 5px; font-weight: 600; }

/* ORDER SUMMARY */
.order-summary { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 22px 18px; position: sticky; top: 76px; }
@media (min-width: 480px) { .order-summary { padding: 24px; } }
.os-title { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 900; margin-bottom: 16px; }
.os-item { display: flex; justify-content: space-between; gap: 10px; padding-bottom: 14px; border-bottom: 1.5px solid var(--border); margin-bottom: 12px; }
.os-item-name { font-size: 13px; font-weight: 700; line-height: 1.4; }
.os-item-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }
.os-item-price { font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 900; white-space: nowrap; }
.os-price-rows { display: flex; flex-direction: column; gap: 7px; margin-bottom: 10px; }
.os-pr { display: flex; justify-content: space-between; font-size: 13px; }
.osp-label { color: var(--muted); }
.osp-strike { text-decoration: line-through; color: var(--muted); }
.osp-green { color: var(--green); font-weight: 700; }
.os-total { display: flex; justify-content: space-between; align-items: center; border-top: 1.5px solid var(--border); padding-top: 10px; margin-bottom: 16px; font-weight: 700; font-size: 14px; }
.ost-val { font-family: 'Nunito', sans-serif; font-size: 20px; font-weight: 900; color: var(--accent); }
.os-bonuses { margin-bottom: 14px; }
.osb-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 9px; }
.osb-item { display: flex; align-items: center; gap: 7px; font-size: 12px; margin-bottom: 5px; font-weight: 500; }
.osb-item::before { content: '✓'; color: var(--green); font-weight: 800; min-width: 12px; }
.os-guarantees { border-top: 1.5px solid var(--border); padding-top: 12px; margin-bottom: 12px; display: flex; flex-direction: column; gap: 7px; }
.osg-item { display: flex; gap: 7px; font-size: 12px; color: var(--muted); }
.osg-check { color: var(--green); font-weight: 800; min-width: 12px; }
.os-scarcity { background: #FFF5F0; border: 1.5px solid rgba(255,107,53,.18); border-radius: var(--r-xs); padding: 11px 13px; font-size: 12px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.os-scarcity strong { color: var(--accent); }
.os-wa-link { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 600; transition: color .2s; }
.os-wa-link:hover { color: var(--accent); }

/* ════════════════════════════════════════════
   MOBILE SPACING — prevent sticky CTA overlap
════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Give last section above footer enough breathing room */
  #final-cta { padding-bottom: 90px; }
  .pay-container { padding-bottom: 110px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { justify-content: center; }
}
