/* ============================================================
   Netilyo Akademi — Kayıt (multi-step registration wizard)
   ============================================================ */
.kayit-main { padding: 70px 32px 140px; }
.kayit-shell { max-width: 1180px; margin: 0 auto; }

.kayit-card {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  padding: 70px 60px; box-shadow: 0 30px 70px rgba(13,13,13,.06);
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center;
  min-height: 540px;
}
.kayit-illus { display: flex; align-items: center; justify-content: center; }
.kayit-illus img { max-width: 240px; max-height: 380px; width: auto; height: auto; object-fit: contain; }

.kayit-step { display: none; }
.kayit-step.active { display: block; animation: kayitFade .35s ease both; }
@keyframes kayitFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .kayit-step.active { animation: none; } }

.kayit-step h1 {
  font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin: 0 0 16px; line-height: 1.15;
}
.kayit-step p.kayit-sub {
  font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; max-width: 480px; margin: 0 0 32px;
}

/* Buttons stacked full-width in this flow */
.kayit-actions { display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
.kayit-actions .btn { width: 100%; justify-content: center; padding: 15px 24px; font-size: 15px; }
.kayit-icon-btn { width: 18px; height: 18px; filter: brightness(0) invert(1); }

/* Age counter */
.age-counter { display: flex; align-items: center; gap: 28px; margin: 36px 0 40px; }
.age-btn {
  width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--border);
  background: #fff; font-size: 22px; font-weight: 700; cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center; transition: border-color .15s ease, background .15s ease;
}
.age-btn:hover { border-color: var(--ink); }
.age-value { font-size: 48px; font-weight: 800; min-width: 70px; text-align: center; font-variant-numeric: tabular-nums; }

/* School type flags */
.school-flags { display: flex; gap: 40px; margin-bottom: 34px; flex-wrap: wrap; }
.school-flag {
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: inherit; font-size: 14.5px; color: var(--ink-soft); text-align: center;
  transition: transform .15s ease;
  max-width: 130px;
}
.school-flag img { width: 90px; }
.school-flag:hover { transform: translateY(-3px); }
.school-flag.selected { color: var(--ink); font-weight: 700; }
.school-flag.selected img { filter: drop-shadow(0 0 0 2px var(--accent)); }
.school-alt-link { font-weight: 700; font-size: 15px; background: none; border: none; padding: 0; cursor: pointer; color: var(--ink); font-family: inherit; }
.school-alt-link:hover { color: var(--accent); }

/* Checkbox row */
.kayit-check-row {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 26px; max-width: 480px;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.55;
}
.kayit-check-row a { color: var(--ink); text-decoration: underline; }
.kayit-check-row a:hover { color: var(--accent); }
.kayit-checkbox {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--border);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, border-color .15s ease; margin-top: 1px;
}
.kayit-checkbox.checked { background: var(--ink); border-color: var(--ink); }
.kayit-checkbox svg { width: 13px; height: 13px; color: #fff; opacity: 0; transition: opacity .1s ease; }
.kayit-checkbox.checked svg { opacity: 1; }

/* Form inputs */
.kayit-field { margin-bottom: 16px; }
.kayit-field input {
  width: 100%; max-width: 480px; padding: 14px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); font-family: inherit; font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .15s ease;
}
.kayit-field input:focus { border-color: var(--accent); }
.kayit-field input::placeholder { color: var(--ink-faint); }

.pw-strength { display: flex; align-items: center; gap: 12px; max-width: 480px; margin: 4px 0 26px; }
.pw-strength-label { font-size: 13.5px; color: var(--ink-faint); white-space: nowrap; }
.pw-strength-track { flex: 1; height: 4px; border-radius: 999px; background: var(--border); overflow: hidden; }
.pw-strength-fill { height: 100%; width: 6%; border-radius: 999px; background: #d0d3d8; transition: width .25s ease, background .25s ease; }

.kayit-error {
  font-size: 13.5px; color: #c4364a; margin: -10px 0 16px; max-width: 480px; min-height: 17px;
}

.kayit-success {
  display: none; align-items: center; gap: 10px; margin-top: 18px; padding: 14px 16px;
  background: var(--accent-soft); border: 1px solid #cddcf3; border-radius: 10px;
  font-size: 14px; color: var(--ink); max-width: 480px;
}
.kayit-success.show { display: flex; }

@media (max-width: 860px) {
  .kayit-card { grid-template-columns: 1fr; padding: 44px 28px; text-align: center; }
  .kayit-illus img { max-width: 200px; }
  .kayit-actions, .kayit-check-row, .kayit-field input, .pw-strength { max-width: 100%; margin-left: auto; margin-right: auto; }
  .school-flags { justify-content: center; }
  .age-counter { justify-content: center; }
}
