/* Ön Kayıt Formu */
.form-page { background: var(--bg); min-height: 100vh; padding-top: 72px; }

.form-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.form-brand { display: flex; align-items: center; gap: 12px; color: white; font-weight: 700; }
.form-brand img { height: 40px; }
.form-back { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; }
.form-back:hover { color: var(--accent-light); }

.form-container { max-width: 760px; margin: 0 auto; padding: 32px 24px 64px; }
.form-intro { text-align: center; margin-bottom: 32px; }
.form-intro h1 { font-size: 1.8rem; color: var(--navy); margin: 12px 0 8px; font-weight: 800; }
.form-intro p { color: var(--muted); }

.alert-error {
  background: #fee2e2; color: #991b1b; padding: 14px 18px;
  border-radius: 12px; margin-bottom: 20px; font-weight: 600;
}

.reg-form fieldset {
  background: white; border: 1px solid #e2e8f0; border-radius: var(--radius);
  padding: 24px; margin-bottom: 20px;
}
.reg-form legend {
  font-weight: 800; color: var(--navy); padding: 0 8px; font-size: 1.05rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0;
  border-radius: 10px; font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,86,160,0.12);
}
.field-hint { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }

.sel-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; margin-bottom: 10px; align-items: center; }
.sel-row select { padding: 12px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-family: inherit; }
.sel-remove {
  width: 40px; height: 40px; border: none; border-radius: 10px;
  background: #fee2e2; color: #dc2626; font-size: 1.3rem; cursor: pointer;
}
.btn-add-sel {
  background: transparent; border: 2px dashed #cbd5e1; color: var(--muted);
  padding: 10px 16px; border-radius: 10px; cursor: pointer; font-weight: 600;
  font-family: inherit; margin-bottom: 16px;
}
.btn-add-sel:hover { border-color: var(--blue); color: var(--blue); }

.price-box {
  background: var(--navy); color: white; padding: 20px; border-radius: 12px; margin-bottom: 12px;
}
.price-row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.price-row strong { color: var(--accent-light); font-size: 1.1rem; }
.price-msg { color: #fbbf24; font-size: 0.9rem; margin-top: 8px; font-weight: 600; }
.pricing-table {
  display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: var(--muted);
}
.pricing-table span { background: #f1f5f9; padding: 6px 10px; border-radius: 8px; }

.check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; cursor: pointer; }
.check input { margin-top: 4px; flex-shrink: 0; }

.btn-submit { width: 100%; margin-top: 8px; border: none; cursor: pointer; }

/* Başarı */
.success-card {
  background: white; border-radius: var(--radius); padding: 48px 32px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid #e2e8f0;
}
.success-icon {
  width: 72px; height: 72px; background: linear-gradient(135deg, #10b981, #34d399);
  color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; margin: 0 auto 20px;
}
.success-card h1 { color: var(--navy); margin-bottom: 8px; }
.success-lead { color: var(--muted); margin-bottom: 24px; }
.success-details {
  text-align: left; max-width: 360px; margin: 0 auto 24px;
  display: grid; grid-template-columns: auto 1fr; gap: 8px 16px;
}
.success-details dt { color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.success-details dd { font-weight: 600; color: var(--navy); }
.success-note { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }

@media (max-width: 640px) {
  .form-row, .sel-row { grid-template-columns: 1fr; }
  .form-header { padding: 0 16px; }
  .form-brand span { display: none; }
}

.field .field-hint {
  display: block;
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 0.8rem;
}

.tri-info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  color: var(--text);
  line-height: 1.7;
}
.tri-info-card h2 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 16px;
  line-height: 1.4;
}
.tri-info-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin: 20px 0 8px;
}
.tri-info-card p { margin-bottom: 12px; }
.tri-info-card ul {
  margin: 0 0 12px 1.1rem;
}
.tri-info-card a { color: var(--blue); font-weight: 700; }
