/* ── Üyelik sayfaları ortak CSS ───────────────────────────── */
.uy-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.uy-main { flex: 1; padding: 60px 20px 100px; }
.uy-content-shell { width: min(1180px, 100%); margin: 0 auto; }

/* ── Auth kutusu (giriş / kayıt) ───────────────────────── */
.auth-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e0dcd5;
  border-top: 4px solid var(--navy-900);
  padding: 44px 48px;
}
.auth-card h1 { font: 700 1.7rem/1.25 var(--serif); color: var(--navy-950); margin: 0 0 6px; }
.auth-card .sub { color: var(--muted); font-size: .83rem; margin: 0 0 34px; }

.auth-field { margin-bottom: 20px; }
.auth-field label { display: block; font-size: .72rem; font-weight: 700; color: var(--navy-800); letter-spacing: .04em; margin-bottom: 6px; }
.auth-field input, .auth-field select {
  width: 100%; min-height: 46px; padding: 11px 14px;
  box-sizing: border-box;
  border: 1px solid #c6c1ba;
  border-radius: 4px;
  font-size: .88rem;
  background: #faf8f4;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.auth-field input:focus, .auth-field select:focus { border-color: var(--navy-800); background: #fff; }
.auth-field .hint { font-size: .7rem; color: var(--muted); margin-top: 5px; }

.auth-btn {
  width: 100%; padding: 13px;
  background: var(--navy-900); color: #fff;
  border: 0; border-radius: 4px;
  font-size: .82rem; font-weight: 700; cursor: pointer;
  margin-top: 6px;
  transition: background .18s;
}
.auth-btn:hover { background: #1a3d6b; }
.auth-btn:disabled { opacity: .55; cursor: not-allowed; }

.auth-divider { text-align: center; color: var(--muted); font-size: .73rem; margin: 22px 0; position: relative; }
.auth-divider::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #e0dcd5; }
.auth-divider span { position: relative; background: #fff; padding: 0 12px; }

.auth-alt { text-align: center; font-size: .77rem; color: var(--muted); }
.auth-alt a { color: var(--navy-900); font-weight: 700; }
.auth-small-link { margin: -8px 0 14px; text-align: right; font-size: .74rem; }
.auth-small-link a { color: var(--navy-900); font-weight: 700; }
.auth-reset-panel {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #e0dcd5;
}
.auth-reset-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}
.auth-link-btn {
  display: block;
  margin: 12px auto 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 700 .74rem var(--sans);
  cursor: pointer;
}
.auth-link-btn:hover { color: var(--navy-900); }

.auth-err {
  background: #fef2f2; border: 1px solid #fca5a5;
  color: #b91c1c; padding: 10px 14px;
  border-radius: 4px; font-size: .77rem; margin-bottom: 18px;
}
.auth-ok {
  background: #f0fdf4; border: 1px solid #86efac;
  color: #166534; padding: 10px 14px;
  border-radius: 4px; font-size: .77rem; margin-bottom: 18px;
}

/* ── Basit site girişi ─────────────────────────────────── */
.site-login-page { background: var(--cream-100); }
.site-login-main { min-height: 100vh; display: grid; place-items: center; padding: 34px 18px; }
.site-login-card { width: min(430px, 100%); padding: 42px 44px 46px; border: 1px solid #e0dcd5; border-top: 4px solid var(--navy-900); background: var(--white); }
.site-login-logo { display: flex; align-items: center; gap: 13px; margin: 0 0 32px; color: var(--navy-950); }
.site-login-logo .brand-symbol { width: 66px; height: 48px; background: transparent; }
.site-login-logo .brand-symbol img { width: 180px; }
.site-login-logo .brand-type strong { color: var(--navy-950); }
.site-login-logo .brand-type small { color: var(--muted); }
.site-login-card h1 { margin: 0 0 24px; color: var(--navy-950); font: 1.55rem/1.2 var(--serif); }

/* ── Kayıt sihirbazı ────────────────────────────────────── */
.wizard-steps {
  display: flex; gap: 0;
  margin-bottom: 36px;
  border: 1px solid #e0dcd5;
}
.wizard-step-tab {
  flex: 1; padding: 14px 10px; text-align: center;
  font-size: .7rem; font-weight: 700; color: var(--muted);
  border-right: 1px solid #e0dcd5; background: #f7f5f1;
  transition: background .15s, color .15s;
}
.wizard-step-tab:last-child { border-right: 0; }
.wizard-step-tab.aktif { background: var(--navy-900); color: #fff; }
.wizard-step-tab.tamamlandi { background: #f0fdf4; color: #166534; }

.wizard-panel { display: none; }
.wizard-panel.goster { display: block; }

/* ── Hesabım ────────────────────────────────────────────── */
.hesabim-wrap { max-width: 820px; margin: 0 auto; }
.hesabim-grid { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }

.profil-card {
  background: #fff; border: 1px solid #e0dcd5;
  border-top: 4px solid var(--navy-900);
  padding: 28px 24px;
}
.profil-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  font: 700 1.8rem/72px var(--serif);
  text-align: center; margin: 0 auto 16px;
}
.profil-ad { font: 700 1rem/1.25 var(--serif); color: var(--navy-950); text-align: center; }
.profil-email { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 4px; }
.profil-uyelik {
  margin-top: 18px; padding: 12px 14px;
  border-radius: 4px; text-align: center;
  font-size: .72rem; font-weight: 700;
}
.profil-uyelik.aktif { background: #f0fdf4; color: #166534; }
.profil-uyelik.beklemede { background: #fffbeb; color: #92400e; }
.profil-uyelik.pasif { background: #f7f5f1; color: var(--muted); }
.profil-bitis { font-size: .67rem; font-weight: 400; display: block; margin-top: 3px; }

.profil-nav { margin-top: 20px; border-top: 1px solid #e0dcd5; padding-top: 14px; }
.profil-nav a {
  display: block; padding: 9px 10px;
  font-size: .76rem; color: var(--navy-800);
  border-radius: 4px;
  transition: background .15s;
}
.profil-nav a:hover, .profil-nav a.aktif { background: #f0f4f8; color: var(--navy-950); font-weight: 700; }

.hesabim-content-card {
  background: #fff; border: 1px solid #e0dcd5;
  padding: 28px 30px;
}
.hesabim-content-card h2 {
  font: 700 1.1rem/1.3 var(--serif); color: var(--navy-950);
  margin: 0 0 24px; padding-bottom: 14px;
  border-bottom: 1px solid #e0dcd5;
}

.profil-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ── Üyelik planı ────────────────────────────────────────── */
.plan-card {
  display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 54px; align-items: center;
  background: #fff; border: 1px solid #e0dcd5;
  border-top: 4px solid var(--gold-500);
  padding: 42px 48px;
}
.plan-card .plan-icon { font-size: 2.3rem; margin-bottom: 14px; }
.plan-card h2 { font: 700 1.55rem/1.25 var(--serif); color: var(--navy-950); margin: 0 0 8px; }
.plan-lead { color: var(--muted); font-size: .83rem; margin: 0 0 4px; }
.plan-apply { padding: 28px; border-left: 1px solid #e0dcd5; background: #faf8f4; }
.plan-apply > p:first-child { margin: 0 0 18px; color: var(--navy-950); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.plan-card .plan-fiyat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 7px;
  font: 700 2.2rem/1 var(--serif); color: var(--navy-900);
  margin: 0 0 22px;
}
.plan-card .plan-fiyat small { font: 600 .9rem/1.2 var(--sans); color: var(--muted); }
.plan-ozellikler {
  list-style: none; margin: 28px 0; padding: 0;
  text-align: left;
}
.plan-ozellikler li {
  padding: 9px 0; border-bottom: 1px solid #f0ece5;
  font-size: .83rem; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.plan-ozellikler li::before { content: "✓"; color: #15803d; font-weight: 700; }
.plan-ozellikler li:last-child { border-bottom: 0; }

.plan-btn {
  display: block; width: 100%; padding: 15px;
  background: var(--navy-900); color: #fff;
  border: 0; border-radius: 4px;
  font-size: .85rem; font-weight: 700; cursor: pointer;
  transition: background .18s;
  text-decoration: none;
}
.plan-btn:hover { background: #1a3d6b; }
.plan-btn.yakin { background: #94a3b8; cursor: default; }

.plan-note { font-size: .72rem; color: var(--muted); margin-top: 18px; }

.uy-pricing { margin: 58px 0 0; }
.uy-pricing-head { max-width: 720px; margin: 0 0 24px; }
.uy-pricing-head h2 { margin: 5px 0 9px; color: var(--navy-950); font: 700 1.45rem/1.25 var(--serif); }
.uy-pricing-head p:last-child { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }
.uy-pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.uy-pricing-grid article { display: flex; flex-direction: column; min-height: 145px; padding: 19px 16px; border: 1px solid #e0dcd5; border-top: 3px solid var(--navy-900); background: #fff; }
.uy-pricing-grid article.is-featured { border-top-color: var(--gold-500); background: #fffaf0; }
.uy-pricing-grid span { color: var(--muted); font-size: .69rem; font-weight: 700; }
.uy-pricing-grid strong { margin: 15px 0 7px; color: var(--navy-950); font: 700 1.2rem/1.15 var(--serif); }
.uy-pricing-grid small,.uy-pricing-grid del { color: var(--muted); font-size: .65rem; line-height: 1.45; }
.uy-pricing-grid del { margin-top: auto; padding-top: 8px; text-decoration: none; }
.uy-pricing-note { margin: 13px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.55; }
.uy-faq { max-width: 760px; margin: 58px 0 0; }
.uy-faq h2 { margin: 0 0 26px; color: var(--navy-950); font: 700 1.3rem/1.3 var(--serif); }

.hak-ozet-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:18px; }
.hak-ozet-grid>div { padding:16px 12px;background:#f7f5f1;border:1px solid #e0dcd5;text-align:center; }
.hak-ozet-grid strong { display:block;color:var(--navy-900);font:700 1.45rem/1.1 var(--serif); }
.hak-ozet-grid span { display:block;margin-top:6px;font-size:.68rem;color:var(--muted); }
.hak-donem { padding-bottom:18px;border-bottom:1px solid #e0dcd5; }
.paket-talep-kutusu { margin-top:22px;padding:20px;background:#f8fafc;border-left:4px solid var(--gold-500); }
.paket-talep-kutusu h3,.paket-gecmis-baslik { margin:0 0 8px;color:var(--navy-950);font:700 1rem/1.3 var(--serif); }
.paket-talep-kutusu p { line-height:1.6; }
.paket-talep-satir { display:grid;grid-template-columns:90px 1fr 170px;gap:12px;align-items:end;margin-top:16px; }
.paket-talep-satir label { font-size:.7rem;font-weight:700;color:var(--navy-800); }
.paket-talep-satir input { display:block;width:100%;margin-top:5px;padding:10px;border:1px solid #c6c1ba;background:#fff; }
.paket-talep-satir>strong { align-self:center;color:var(--navy-900); }
.paket-talep-satir .auth-btn { margin:0; }
.paket-gecmis-baslik { margin-top:26px; }
.paket-gecmis>div { display:flex;justify-content:space-between;gap:16px;padding:12px 0;border-bottom:1px solid #f0ece5; }
.paket-gecmis strong { color:var(--navy-900);text-align:right; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .plan-card { grid-template-columns: 1fr; gap: 24px; }
  .plan-apply { border-top: 1px solid #e0dcd5; border-left: 0; }
  .uy-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .auth-card { padding: 30px 22px; }
  .site-login-card { padding: 34px 24px 38px; }
  .hesabim-grid { grid-template-columns: 1fr; }
  .profil-row { grid-template-columns: 1fr; }
  .uy-main { padding-inline: 16px; }
  .plan-card { grid-template-columns: 1fr; gap: 22px; padding: 28px 20px; }
  .plan-apply { padding: 24px 20px; border-top: 1px solid #e0dcd5; border-left: 0; }
  .plan-card .plan-fiyat { gap: 7px; font-size: 1.9rem; }
  .plan-card .plan-fiyat small { font-size: .82rem; }
  .uy-pricing-grid { grid-template-columns: 1fr 1fr; }
  .uy-pricing-grid article { min-height: 125px; }
  .hak-ozet-grid { grid-template-columns:1fr; }
  .paket-talep-satir { grid-template-columns:1fr;align-items:stretch; }
  .paket-gecmis>div { flex-direction:column;gap:4px; }
  .paket-gecmis strong { text-align:left; }
}
