/* ========== Template B: Conversion - Responsive ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; }
body, html { width: 100%; min-height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5; font-size: 15px;
  background: #0a0a1a; color: #e8e8e8;
  -webkit-font-smoothing: antialiased;
}
ul { list-style: none; }
a { text-decoration: none; -webkit-tap-highlight-color: transparent; color: inherit; }
img { max-width: 100%; vertical-align: middle; }

.page { width: 100%; min-height: 100vh; max-width: 520px; margin: 0 auto; display: flex; flex-direction: column;
  background: linear-gradient(180deg, #0f0c29 0%, #302b63 50%, #16213e 100%); }
.container { padding: 0 20px 40px; }

/* Banner */
.banner {
  position: relative; width: 100%; padding-top: 55%; overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.banner-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(transparent, rgba(15,12,41,0.95));
}
.banner-title {
  font-size: 28px; font-weight: 800; color: #fff; line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.banner-subtitle { font-size: 15px; color: rgba(255,255,255,0.8); margin-top: 8px; line-height: 1.4; }

/* Live Bar */
.live-bar {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 0; gap: 6px;
  background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #00ff88;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,136,0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(0,255,136,0); }
}
.live-count { font-weight: 700; color: #00ff88; }

/* Urgency */
.urgency {
  padding: 24px 20px; text-align: center;
  background: linear-gradient(135deg, rgba(255,0,60,0.15), rgba(255,100,0,0.1));
  border: 1px solid rgba(255,0,60,0.2); border-left: none; border-right: none;
}
.urgency-content-title { font-size: 22px; font-weight: 800; color: #ff3d5a; }
.urgency-content-p { font-size: 13px; color: rgba(255,255,255,0.7); padding: 6px 0 14px; }
.urgency-stats { display: flex; gap: 12px; justify-content: center; }
.stat-card {
  flex: 1; max-width: 180px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 14px; border: 1px solid rgba(255,255,255,0.1);
}
.stat-number { font-size: 26px; font-weight: 800; color: #ffd700; text-shadow: 0 0 12px rgba(255,215,0,0.3); }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.6); }

/* Gender Selector */
.page-sex { padding: 20px 0; }
.sex-options {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  backdrop-filter: blur(8px);
}
.sex-title { font-size: 17px; font-weight: 700; color: #fff; padding-bottom: 14px; }
.sex-female, .sex-male {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; max-width: 320px; margin: 8px auto;
  height: 48px; border-radius: 24px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.sex-female {
  background: linear-gradient(135deg, #ff6b9d, #c44dff); color: #fff; border: none;
  box-shadow: 0 4px 16px rgba(196,77,255,0.3);
}
.sex-female:active { transform: scale(0.97); }
.sex-male {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}
.sex-male:active { transform: scale(0.97); }
.sex-icon { font-size: 18px; }

/* Thank You */
.page-thank, .page-welcome { display: none; }
.thank-card {
  text-align: center; padding: 28px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; backdrop-filter: blur(8px);
}
.thank-icon {
  width: 48px; height: 48px; line-height: 48px; border-radius: 50%;
  margin: 0 auto 14px; background: #00b09b; font-size: 24px; color: #fff;
}
.thank-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 16px; }

/* Welcome / CTA */
.welcome-content {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px 20px; backdrop-filter: blur(8px);
}
.welcome-txt { font-size: 15px; color: rgba(255,255,255,0.85); }
.welcome-txt p {
  line-height: 1.7; padding: 6px 0 6px 10px;
  border-left: 3px solid #00ff88; margin-bottom: 6px;
}
.welcome-txt-guide {
  font-weight: 700; font-size: 17px; color: #fff;
  line-height: 1.4; padding: 16px 0 6px; text-align: center;
}
.welcome-link-p { position: relative; margin: 12px 0; text-align: center; }
.welcome-link {
  display: inline-block; width: 100%; padding: 16px 20px;
  background: linear-gradient(135deg, #00b09b, #96c93d); color: #fff;
  font-weight: 700; font-size: 18px; border-radius: 32px;
  box-shadow: 0 6px 20px rgba(0,176,155,0.4);
  animation: cta-pulse 2s ease-in-out infinite;
}
.welcome-link:active { transform: scale(0.96); }
@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); box-shadow: 0 8px 28px rgba(0,176,155,0.5); }
}
.welcome-notis { color: rgba(255,255,255,0.4); font-size: 11px; padding-top: 14px; line-height: 1.5; text-align: center; }

/* Social Proof */
.section-title { font-size: 18px; font-weight: 700; color: #fff; padding: 24px 0 12px; text-align: center; }
.social-proof { padding-top: 8px; }
.testimonial-list { display: flex; flex-direction: column; gap: 10px; }
.testimonial-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 16px; backdrop-filter: blur(4px);
}
.testimonial-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-meta { flex: 1; }
.testimonial-name { font-size: 14px; font-weight: 600; color: #fff; }
.testimonial-time { font-size: 11px; color: rgba(255,255,255,0.4); }
.testimonial-stars { color: #fbbf24; font-size: 13px; letter-spacing: 1px; }
.testimonial-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Join Counter */
.join-counter { padding: 18px 0; }
.join-counter-inner {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px; border-radius: 32px;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.join-icon { font-size: 16px; }
.join-number { font-weight: 800; color: #ef4444; font-size: 15px; }

.second-cta { padding: 0 0 18px; }

/* Company Intro */
.page-intro {
  margin-top: 8px; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.intro-title {
  padding: 14px 18px; font-size: 16px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.intro-content { padding: 14px 18px 24px; background: rgba(255,255,255,0.02); }
.intro-content dt { font-weight: 700; font-size: 14px; color: #fff; padding-top: 10px; }
.intro-content dd { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.text-prominent { color: #ff6b6b; font-weight: 700; }
.text-indent2 { text-indent: 1em; }

/* FAQ */
.faq-section { padding-top: 8px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 14px 16px;
}
.faq-q { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 4px; }
.faq-a { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Footer */
.page-footer { padding: 24px 0 12px; text-align: center; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 24px;
  background: #25d366; color: #fff; font-size: 13px; font-weight: 600;
}
.footer-wa a { color: #fff; text-decoration: underline; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.25); padding-top: 12px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-sex, .page-welcome, .page-thank { animation: fadeInUp 0.4s ease-out; }

@media screen and (min-width: 600px) {
  body { background: #070714; }
  .page { box-shadow: 0 0 60px rgba(102,126,234,0.15); }
  .banner-title { font-size: 32px; }
  .welcome-link { font-size: 20px; padding: 18px 24px; }
}
