/* ── PREVIEW MOCKUP ── */
.mockup-wrap {
  max-width: min(900px, 100%);
  margin: 72px auto 0;
  animation: fadeUp 0.8s 0.4s ease both;
}
.mockup-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red {
  background: #ef4444;
}
.dot.yellow {
  background: var(--yellow);
}
.dot.green {
  background: var(--success);
}
.mockup-body {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 32px;
  overflow: hidden;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.mock-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mock-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.mock-stat.s1::before {
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dim));
}
.mock-stat.s2::before {
  background: linear-gradient(90deg, var(--blue), var(--blue-dim));
}
.mock-stat.s3::before {
  background: linear-gradient(90deg, var(--success), #16a34a);
}
.mock-stat.s4::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}
.mock-stat .val {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
}
.mock-stat.s1 .val {
  color: var(--yellow);
}
.mock-stat.s2 .val {
  color: var(--blue);
}
.mock-stat.s3 .val {
  color: var(--success);
}
.mock-stat.s4 .val {
  color: #ef4444;
}
.mock-stat .lbl {
  color: var(--gray);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.mock-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-row {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.mock-name {
  font-size: 0.82rem;
  font-weight: 600;
}
.mock-detail {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 2px;
}
.mock-amount {
  margin-left: auto;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ef4444;
}

/* ── SECTIONS ── */
section {
  padding: 96px 24px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--yellow-dim);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--white2);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 540px;
}

/* ── HOW IT WORKS ── */
.how-bg {
  background: var(--bg2);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 64px;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 16px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.2rem;
  color: #0e0e14;
}
.step-title {
  font-family: var(--font-title);
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc {
  color: var(--white2);
  font-size: 0.8rem;
  line-height: 1.7;
}

/* ── TESTIMONIAL / TRUST ── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.trust-item {
  text-align: center;
}
.trust-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-label {
  color: var(--white2);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* ── CTA BOTTOM ── */
.cta-bottom {
  text-align: center;
  padding: 96px 24px;
  background: radial-gradient(
    ellipse at center,
    rgba(250, 204, 21, 0.06) 0%,
    transparent 70%
  );
  border-top: 1px solid var(--border);
}
.cta-bottom h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-bottom p {
  color: var(--white2);
  font-size: 0.9rem;
  margin-bottom: 36px;
}
