/* ── Page ── */
.tkl-page {
  background: #fff;
  min-height: 100vh;
  padding-bottom: 80px;
}

/* ── Hero Banner ── */
.tkl-hero {
  background: linear-gradient(180deg, #ff5200 0%, #ff783e 100%);
  padding: 40px 20px 70px;
  text-align: center;
  color: white;
  position: relative;
}

.tkl-back-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.tkl-hero-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.tkl-hero-img {
  width: 200px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.tkl-hero-sub {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.6;
}

/* ── Content ── */
.tkl-content {
  margin-top: -40px;
  border-radius: 25px 25px 0 0;
  padding: 25px 20px;
  min-height: 50vh;
  position: relative;
  z-index: 2;
  background: #fff;
}

/* ── Benefit Card ── */
.tkl-benefit-card {
  background: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.tkl-benefit-icon {
  width: 42px;
  height: 42px;
  background: #fff5f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #ff5200;
}

.tkl-benefit-text h6 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.88rem;
  color: #222;
}

.tkl-benefit-text p {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0;
}

/* ── Fixed bottom button ── */
.tkl-btn-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: white;
  text-align: center;
  z-index: 100;
}

.tkl-btn-daftar {
  background: #ff5200;
  color: white;
  border: none;
  padding: 10px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(255, 82, 0, 0.25);
  cursor: pointer;
  transition: 0.2s;
}

.tkl-btn-daftar:hover { background: #e64a00; }
.tkl-btn-daftar:active { transform: scale(0.95); }
