/* ══════════════════════════════════════════
   WINLY — APPLY PAGE STYLES
   ══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  padding: 100px 48px 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(200,255,0,0.06) 0%, transparent 65%);
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; }
.hero h1 { font-size: 3.2rem; font-weight: 700; letter-spacing: -0.05em; line-height: 1.04; color: #fff; margin-bottom: 18px; }
.hero h1 .lime { color: var(--lime); }
.hero-body { font-size: 1.05rem; color: var(--sub); line-height: 1.7; margin-bottom: 24px; }
.trust-row { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 16px; }
.trust-item { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.trust-icon { color: var(--lime); }

/* ── FORM ── */
.form-section { padding: 72px 48px 100px; }
.form-inner { max-width: 620px; margin: 0 auto; }
.form-card { background: var(--card); border: 1px solid var(--border-mid); border-radius: 16px; padding: 40px; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-select {
  display: block; width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px;
  font-size: 14px; color: var(--sub); font-family: inherit; outline: none;
  transition: border-color 0.2s; cursor: pointer; -webkit-appearance: none; appearance: none;
}
.form-select:focus { border-color: var(--lime-border); }
.form-select option { background: #1a1a1a; color: #fff; }
.form-hint { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* ── PLAN SELECTION ── */
.plan-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.plan-radio { display: none; }
.plan-card-label {
  display: block; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; cursor: pointer; transition: all 0.2s; text-align: center;
}
.plan-radio:checked~.plan-card-label,
.plan-radio:checked+.plan-card-label {
  background: var(--lime-dim); border-color: var(--lime-border);
}
.plan-card-label .plan-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.plan-card-label .plan-price { font-size: 15px; font-weight: 700; color: var(--lime); }
.plan-card-label .plan-period { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ── FORM SUBMIT OVERRIDE ── */
.form-submit { font-size: 16px; }

.submit-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.55; }
.submit-note a { color: var(--lime); }

/* ── WHAT HAPPENS NEXT ── */
.next-section { padding: 80px 48px 100px; }
.next-inner { max-width: 720px; margin: 0 auto; }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.tl-item { display: flex; gap: 24px; position: relative; }
.tl-item:not(:last-child)::before {
  content: ''; position: absolute; left: 14px; top: 30px; bottom: -10px; width: 1px; background: var(--border);
}
.tl-dot {
  width: 30px; height: 30px; border-radius: 50%; background: var(--card); border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 11px; font-weight: 700; color: var(--lime); margin-top: 1px; position: relative;
}
.tl-body { padding-bottom: 32px; }
.tl-h { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.tl-p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.tl-time { font-size: 11px; color: var(--lime); font-weight: 600; margin-bottom: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero, .form-section, .next-section { padding-left: 24px; padding-right: 24px; }
  .hero h1 { font-size: 2.4rem; }
  .form-card { padding: 28px; }
  .form-two-col { grid-template-columns: 1fr; }
  .plan-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .trust-row { flex-direction: column; gap: 10px; }
}
