/* ============================================================
   mulai.css — Jalur Mulai Bisnis (halaman /mulai)
   Dark Gold Warm theme, mobile-first
   ============================================================ */

.start-main { padding: 40px 16px 80px; min-height: 70vh; }
.start-container { max-width: 780px; margin: 0 auto; }

/* ---- HEADER ---- */
.start-header { margin-bottom: 32px; }
.start-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; color: #f0e8d0;
  margin: 0 0 12px; letter-spacing: -0.02em; line-height: 1.2;
}
.start-lead {
  color: #c2bbac; font-size: 1.02rem; line-height: 1.7;
  margin: 0; max-width: 640px;
}

/* ---- PATH (numbered timeline) ---- */
.start-path {
  position: relative; list-style: none;
  margin: 36px 0 48px; padding: 0;
}
/* garis vertikal penghubung antar-langkah */
.start-path::before {
  content: ""; position: absolute; left: 21px; top: 16px; bottom: 16px;
  width: 2px; background: linear-gradient(#d4af37, rgba(212,175,55,0.12));
}

.start-step {
  position: relative; display: flex; gap: 20px; padding-bottom: 24px;
}
.start-step:last-child { padding-bottom: 0; }

.start-step-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #0a0a0a; font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px #0a0a0a;
}

.start-card {
  flex: 1; min-width: 0; display: flex; gap: 16px; padding: 14px;
  background: #111; border: 1px solid #222; border-radius: 14px;
  overflow: hidden; text-decoration: none; color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.start-card:hover {
  border-color: #d4af37; transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.15);
}

.start-card-cover {
  flex-shrink: 0; width: 128px; aspect-ratio: 16/10;
  border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}
.start-card-cover img {
  width: 100%; height: 100%; object-fit: cover; object-position: left center;
  display: block; transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.start-card:hover .start-card-cover img { transform: scale(1.04); }

.start-card-body { display: flex; flex-direction: column; min-width: 0; }
.start-card-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: #d4af37; margin: 0 0 5px;
}
.start-card-title {
  font-size: 1rem; font-weight: 600; color: #e8dfc8;
  line-height: 1.4; margin: 0 0 6px;
}
.start-card-desc {
  font-size: 0.85rem; color: #a49d8e; line-height: 1.55; margin: 0 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.start-card-read {
  font-size: 0.82rem; font-weight: 600; color: #b8912a; margin-top: auto;
}
.start-card:hover .start-card-read { color: #d4af37; }

/* ---- RESPONSIVE ---- */
@media (max-width: 560px) {
  .start-main { padding: 24px 14px 60px; }
  .start-step { gap: 14px; }
  .start-card { flex-direction: column; }
  .start-card-cover { width: 100%; aspect-ratio: 16/9; }
}
@media (prefers-reduced-motion: reduce) {
  .start-card { transition: border-color 0.2s; }
  .start-card-cover img { transition: none; }
}
