/* ==========================================================================
   KLWINMYS — Homepage-specific styles
   ========================================================================== */

/* Hero CTAs */
.hero .stat-row { display: flex; gap: 2.5rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.hero .stat-row .stat { text-align: center; }
.hero .stat-row .stat-value { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: #f8b700; line-height: 1; }
.hero .stat-row .stat-label { font-size: .8rem; color: #9aa3bd; text-transform: uppercase; letter-spacing: 1px; margin-top: .3rem; }

/* "Why KLWIN" feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.feature-item {
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  border: 1px solid rgba(248,183,0,.15);
  transition: all .25s ease;
}
.feature-item:hover { border-color: rgba(248,183,0,.5); background: rgba(248,183,0,.05); transform: translateY(-4px); }
.feature-item .icon-box {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #f8b700, #ff9500);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem; color: #0a0e27;
  box-shadow: 0 6px 18px rgba(248,183,0,.3);
}
.feature-item h3 { font-size: 1.05rem; color: #fff; margin-bottom: .5rem; }
.feature-item p { font-size: .9rem; color: #c5cbe1; margin: 0; }

/* Bonus table — homepage variant */
.bonus-table { max-width: 900px; margin: 0 auto; }

/* Step-by-step daftar */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step {
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 1.5rem 1.2rem 1.2rem;
  position: relative;
  border: 1px solid rgba(248,183,0,.15);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: -16px; left: 1.2rem;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #f8b700, #ff9500);
  color: #0a0e27;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.step h3 { font-size: 1.05rem; margin: .5rem 0; color: #fff; }
.step p { font-size: .88rem; color: #c5cbe1; margin: 0; }

/* Payment grid */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: .8rem; max-width: 900px; margin: 0 auto; }
.payment-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(248,183,0,.15);
  border-radius: 8px;
  padding: 1rem .6rem;
  text-align: center;
  font-size: .82rem;
  color: #c5cbe1;
  transition: all .2s;
  min-height: 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
}
.payment-item:hover { border-color: #f8b700; color: #f8b700; }
.payment-item .pay-icon { font-size: 1.4rem; }
.payment-item .pay-label { font-weight: 600; }

/* Safety check list */
.safety-list { list-style: none; padding: 0; max-width: 720px; margin: 0 auto; }
.safety-list li {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  margin-bottom: .6rem;
  border-left: 3px solid #00d084;
}
.safety-list li.warning { border-left-color: #ff9500; }
.safety-list li .check { font-size: 1.2rem; color: #00d084; flex-shrink: 0; }
.safety-list li.warning .check { color: #ff9500; }
.safety-list li .text { flex: 1; }
.safety-list li .text strong { display: block; margin-bottom: .2rem; color: #fff; }
.safety-list li .text span { font-size: .88rem; color: #c5cbe1; }

/* Comparison table — homepage */
.comparison-table { max-width: 950px; margin: 0 auto; }
.comparison-table .row-highlight { background: rgba(248,183,0,.08); }
.comparison-table .row-highlight td:first-child::before { content: "👑 "; }
.comparison-table .star-rating { color: #f8b700; letter-spacing: 1px; }

/* Provider strip */
.provider-strip {
  display: flex; gap: 2rem; justify-content: center; align-items: center; flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid rgba(248,183,0,.1);
  border-bottom: 1px solid rgba(248,183,0,.1);
  margin: 2rem 0;
}
.provider-strip .provider {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #c5cbe1;
  font-size: 1.05rem;
  opacity: .7;
  transition: opacity .2s;
}
.provider-strip .provider:hover { opacity: 1; color: #f8b700; }

/* Author byline on home */
.review-by {
  text-align: center;
  margin: 2rem auto 0;
  padding: 1rem;
  max-width: 700px;
  font-size: .92rem;
  color: #c5cbe1;
  background: rgba(255,255,255,.03);
  border-radius: 10px;
}
.review-by strong { color: #f8b700; }

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero .stat-row { gap: 1.5rem; }
  .hero .stat-row .stat-value { font-size: 1.4rem; }
  .feature-item { padding: 1.2rem 1rem; }
  .steps-row { gap: 1rem; }
  .provider-strip { gap: 1.2rem; padding: 1.5rem 0; }
  .provider-strip .provider { font-size: .92rem; }
}
