:root {
  --navy: #052D52;
  --navy-deep: #031C34;
  --blue: #2681D4;
  --blue-soft: #4A94DC;
  --sky: #5FB1EB;
  --gold: #F0C060;
  --ink: #10233A;
  --muted: #5B6B80;
  --line: #E1E7EE;
  --card: #FFFFFF;
  --paper: #F3F6FA;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
}

button, input, select {
  font-family: inherit;
}

body {
  background:
    radial-gradient(1100px 620px at 12% -10%, rgba(95, 177, 235, 0.35), transparent 55%),
    radial-gradient(900px 700px at 92% 8%, rgba(38, 129, 212, 0.28), transparent 55%),
    radial-gradient(1000px 800px at 50% 115%, rgba(5, 45, 82, 0.55), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 55%, #0A3F6E 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* İnce doku — düzlüğü kırmak için */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(rgba(255,255,255,0.9) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

/* Logonun ilmek/kurdele biçiminden türetilmiş dekoratif çizgiler */
.ribbon {
  position: fixed;
  width: 620px;
  height: 620px;
  fill: none;
  stroke-linecap: round;
  z-index: 0;
  pointer-events: none;
  filter: blur(0.4px);
}

.ribbon path {
  stroke-width: 34;
  opacity: 0.5;
}

.ribbon-a {
  top: -140px;
  left: -220px;
  animation: driftA 22s ease-in-out infinite;
}
.ribbon-a path { stroke: url(#none); stroke: var(--sky); opacity: 0.16; }

.ribbon-b {
  bottom: -200px;
  right: -240px;
  width: 560px;
  height: 560px;
  animation: driftB 26s ease-in-out infinite;
}
.ribbon-b path { stroke: var(--blue-soft); opacity: 0.14; }

.screen {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 20px 56px;
}

/* ============ MARKA ŞERİDİ ============ */

.topbar {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}
.brand-link:hover { opacity: 0.85; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-link:hover { color: #fff; }
.nav-link.active {
  color: #fff;
  border-bottom-color: var(--sky);
}

.nav-premium {
  color: var(--gold);
}
.nav-premium:hover { color: #FFD98A; }

.nav-premium-active {
  color: #3B2A06;
  background: linear-gradient(135deg, var(--gold), #FFD98A);
  padding: 4px 10px;
  border-radius: 999px;
  border-bottom-color: transparent !important;
}
.nav-premium-active:hover { color: #3B2A06; }

/* ---- Topbar giriş/çıkış ikonu ---- */

.auth-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.auth-icon-btn svg { width: 16px; height: 16px; }
.auth-icon-btn:hover {
  border-color: var(--sky);
  color: #fff;
  background: rgba(95,177,235,0.14);
}
.auth-icon-btn.is-logout:hover {
  border-color: #E0665A;
  color: #E0665A;
  background: rgba(224,102,90,0.14);
}

.logo-mark {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.wordmark-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}

.wordmark-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--sky);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============ ANA DÜZEN ============ */

.layout {
  width: 100%;
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

/* ---- Sol: değer anlatımı ---- */

.pitch {
  color: #fff;
  padding-right: 12px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 16px;
}

.pitch h1 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}

.pitch h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--sky), #A9D6F5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pitch-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 400px;
  margin: 0 0 28px;
}

.pitch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pitch-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.pitch-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(95,177,235,0.18);
  flex-shrink: 0;
}

/* ---- Sağ: kart ---- */

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes driftA {
  0%, 100% { transform: rotate(-8deg) translate(0, 0); }
  50% { transform: rotate(-6deg) translate(12px, -16px); }
}

@keyframes driftB {
  0%, 100% { transform: rotate(14deg) translate(0, 0); }
  50% { transform: rotate(16deg) translate(-14px, 12px); }
}

.card {
  width: 100%;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  padding: 30px 30px 26px;
  box-shadow:
    0 30px 70px -20px rgba(3, 20, 40, 0.55),
    0 0 0 1px rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  animation: fadeSlideUp 0.5s ease;
}

.mode-toggle {
  display: flex;
  background: var(--paper);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}

.mode-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.mode-btn.active {
  background: var(--navy);
  color: #fff;
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.auth-form.active { display: flex; animation: fadeSlideUp 0.35s ease; }

.form-head { margin-bottom: 2px; }

.auth-form h2 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.auth-form .sub {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
}

.field input,
.field select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(38, 129, 212, 0.14);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
}

.forgot {
  align-self: flex-end;
  font-size: 12.5px;
  color: var(--blue);
  text-decoration: none;
  margin-top: -6px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.forgot:hover { text-decoration: underline; }

.submit-btn {
  border: none;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 0;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.submit-btn:hover { background: #042042; }
.submit-btn:active { transform: scale(0.98); }

.ghost-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 18px;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.ghost-btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.ghost-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.step-nav {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.step-nav .submit-btn { flex: 1; }

.form-error {
  font-size: 12.5px;
  font-weight: 600;
  color: #C0392B;
  margin: -6px 0 0;
  min-height: 1px;
}
.form-error:empty { display: none; }

.switch-line {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
}

.link-btn {
  border: none;
  background: none;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
  text-decoration: underline;
}

/* ---- Rol kapısı (Giriş/Kayıt seçiminden hemen sonra) ---- */

.role-gate {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 10px 0 4px;
}
.role-gate.active { display: flex; animation: fadeSlideUp 0.35s ease; }

.gate-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.gate-options {
  display: flex;
  gap: 12px;
}

.gate-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  padding: 26px 10px 20px;
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}
.gate-btn:hover {
  border-color: var(--blue);
  background: linear-gradient(160deg, rgba(38,129,212,0.08), rgba(95,177,235,0.04));
  transform: translateY(-2px);
}

.gate-icon { color: var(--blue); display: flex; }
.gate-icon svg { width: 30px; height: 30px; }
.gate-btn-biz .gate-icon { color: var(--navy); }
.gate-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}
.gate-desc { font-size: 11.5px; color: var(--muted); font-weight: 500; }

/* ---- Forma dönüş linki ---- */

.back-link {
  align-self: flex-start;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 2px;
}
.back-link:hover { color: var(--blue); }

/* ---- Onay ekranı ---- */

.success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 14px 6px 4px;
}
.success-screen.active { display: flex; animation: fadeSlideUp 0.35s ease; }

.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue), var(--sky));
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  box-shadow: 0 10px 22px -8px rgba(38,129,212,0.55);
}

.success-screen h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.success-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 300px;
  margin: 0 0 8px;
}

.success-screen .submit-btn { width: 100%; }

.pending-icon {
  background: linear-gradient(160deg, #E0A030, #F0C060);
  box-shadow: 0 10px 22px -8px rgba(224,160,48,0.55);
}

.fstep {
  display: none;
  flex-direction: column;
  gap: 15px;
}
.fstep.active { display: flex; animation: fadeSlideUp 0.3s ease; }



/* ---- Adım göstergesi (stepper) ---- */

.stepper { margin: 2px 0 6px; }

.stepper-track {
  width: 100%;
  height: 6px;
  overflow: visible;
}

.stepper-bg {
  stroke: var(--line);
  stroke-width: 3;
  fill: none;
}

.stepper-fill {
  stroke: var(--blue);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 0.35s ease;
}

.stepper-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.step-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.step-label.active,
.step-label.done { color: var(--navy); }

.step { display: none; flex-direction: column; gap: 15px; }
.step.active { display: flex; animation: fadeSlideUp 0.3s ease; }

.step-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step-fields.hidden { display: none; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 2px;
}
.checkbox-field input { margin-top: 2px; }

.inline-link {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 600;
}
.inline-link:hover { color: var(--navy); }

.inline-link-sky {
  color: var(--sky);
  text-decoration: underline;
  font-weight: 600;
}
.inline-link-sky:hover { color: #fff; }

/* ---- Rol rozeti + işletme seçiliyken devreye giren kurumsal ton ---- */

.role-badge {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(38,129,212,0.1);
  color: var(--blue);
}
.role-badge.badge-biz {
  background: rgba(7,63,112,0.08);
  color: var(--navy);
}
.role-badge:empty { display: none; }

body.theme-business .submit-btn {
  background: linear-gradient(135deg, var(--navy) 0%, #16283A 100%);
}
body.theme-business .submit-btn:hover {
  background: linear-gradient(135deg, #031C34 0%, #0D1B28 100%);
}
body.theme-business .mode-btn.active {
  background: linear-gradient(135deg, var(--navy) 0%, #16283A 100%);
}
body.theme-business .stepper-fill { stroke: var(--navy); }
body.theme-business .gate-btn.active {
  border-color: var(--navy);
  background: linear-gradient(160deg, rgba(7,63,112,0.08), rgba(7,63,112,0.02));
}

/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 30px;
  }
  .pitch { text-align: center; padding-right: 0; }
  .pitch-text { margin-left: auto; margin-right: auto; }
  .pitch-list { align-items: center; }
  .eyebrow { text-align: center; }
  .pitch h1 { font-size: 30px; }
  .topbar { justify-content: center; text-align: center; }
  .site-nav { justify-content: center; gap: 16px 18px; }
}

@media (max-width: 460px) {
  .screen { padding: 32px 16px 40px; }
  .card { padding: 24px 20px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .ribbon { width: 380px; height: 380px; }
  .gate-options { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .submit-btn, .role-btn, .stepper-fill { transition: none; }
  .card, .role-gate.active, .auth-form.active, .success-screen.active,
  .step.active, .fstep.active, .ribbon-a, .ribbon-b {
    animation: none;
  }
}

/* ============ ODAK (FOCUS) ERİŞİLEBİLİRLİĞİ ============ */

.nav-link:focus-visible,
.footer-links a:focus-visible,
.inline-link:focus-visible,
.inline-link-sky:focus-visible,
.back-link:focus-visible,
.link-btn:focus-visible,
.forgot:focus-visible,
.brand-link:focus-visible,
.mode-btn:focus-visible,
.role-btn:focus-visible,
.gate-btn:focus-visible,
.ghost-btn:focus-visible,
.auth-icon-btn:focus-visible,
.avatar-edit-btn:focus-visible,
.account-field-edit:focus-visible,
.account-status-approve-demo:focus-visible,
.pending-cancel:focus-visible,
.pending-approve-demo:focus-visible,
.account-field-save:focus-visible,
.account-field-discard:focus-visible,
.danger-btn:focus-visible,
.danger-confirm-btn:focus-visible,
.danger-cancel-btn:focus-visible,
.premium-buy-btn:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============ ÖZELLİK KARTLARI & SSS ============ */

.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.features-section,
.faq-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 26px 22px;
  backdrop-filter: blur(4px);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(95,177,235,0.35);
}

.feature-icon {
  color: var(--sky);
  margin-bottom: 12px;
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 4px 20px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.faq-item:hover { border-color: rgba(95,177,235,0.3); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 24px 16px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 18px;
  font-weight: 400;
  color: var(--sky);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: "+";
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  margin: 0 0 18px;
  animation: fadeSlideUp 0.25s ease;
}

@media (max-width: 860px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ============ HAKKIMIZDA SAYFASI ============ */

.about-page {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0 10px;
}

.about-hero {
  text-align: center;
  margin-bottom: 44px;
}

.about-hero .eyebrow {
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.22;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}

.about-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--sky), #A9D6F5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-lead {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  margin: 0 auto;
}

.about-lead strong { color: #fff; }

.about-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 26px 28px;
  margin-bottom: 18px;
}

.about-block h2 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.about-block p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.about-block p strong { color: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.about-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.about-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(95,177,235,0.35);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.about-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  margin: 0;
}

.about-credit {
  text-align: center;
}
.about-credit h2 { text-align: center; }
.about-credit p { text-align: center; }

@media (max-width: 640px) {
  .about-hero h1 { font-size: 27px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-block { padding: 22px 20px; }
}

/* ---- Yasal sayfalar (KVKK vb.) ---- */

.legal-page .about-page { max-width: 760px; }

.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-sublist {
  margin: 10px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-sublist li {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
}

.legal-note {
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  margin: 28px auto 0;
  font-style: italic;
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-sep { color: rgba(255,255,255,0.28); font-size: 11px; }

.footer-meta {
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.4);
}

/* ============ HESABIM SAYFASI ============ */

.account-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 32px;
}

.account-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 10px;
}

.account-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue), var(--sky));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  overflow: hidden;
  box-shadow: 0 14px 30px -10px rgba(38,129,212,0.5);
  border: 3px solid rgba(255,255,255,0.15);
  transition: border-radius 0.2s ease;
}
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }

body.theme-business .account-avatar {
  border-radius: 22px;
  background: linear-gradient(160deg, var(--navy), #16283A);
  box-shadow: 0 14px 30px -10px rgba(7,63,112,0.55);
}

.avatar-edit-btn {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--navy-deep);
  background: var(--sky);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}
.avatar-edit-btn svg { width: 14px; height: 14px; }
.avatar-edit-btn:hover { background: #fff; transform: scale(1.06); }

.account-identity h1 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.account-role-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 6px 0 0;
}
body.theme-business .account-role-badge { color: rgba(255,255,255,0.6); }

.account-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 12px 0 0;
}
.account-status.is-approved {
  color: #7FD9A8;
  background: rgba(127,217,168,0.12);
}
.account-status.is-pending {
  color: var(--gold);
  background: rgba(240,192,96,0.12);
}

.account-status-approve-demo {
  border: none;
  background: none;
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  margin-left: 2px;
}

.account-field-list {
  display: flex;
  flex-direction: column;
}

.account-field {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.account-field:last-child { border-bottom: none; }

.account-field-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 200px;
}

.account-field-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.account-field-value {
  font-size: 14.5px;
  color: #fff;
  font-weight: 500;
}
.account-field-value:empty::before {
  content: "—";
  color: rgba(255,255,255,0.35);
}

.account-field-lock,
.account-field-edit {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-field-lock {
  color: rgba(255,255,255,0.32);
  cursor: help;
}
.account-field-lock svg { width: 14px; height: 14px; }

.account-field-edit {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.account-field-edit svg { width: 13px; height: 13px; }
.account-field-edit:hover:not(:disabled) {
  border-color: var(--sky);
  color: #fff;
  background: rgba(95,177,235,0.14);
}
.account-field-edit:disabled { opacity: 0.3; cursor: not-allowed; }

.account-field-pending {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gold);
  margin-top: 2px;
}

.account-field-pending button {
  border: none;
  background: none;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.pending-cancel { color: rgba(255,255,255,0.55); }
.pending-cancel:hover { color: #fff; }
.pending-approve-demo { color: var(--sky); }
.pending-approve-demo:hover { color: #fff; }

.account-field-edit-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  width: 100%;
}
.account-field-edit-form input,
.account-field-edit-form select {
  flex: 1;
  min-width: 140px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 13.5px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.account-field-edit-form input:focus,
.account-field-edit-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(38, 129, 212, 0.14);
}
.account-field-edit-form-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.account-field-save,
.account-field-discard {
  border: none;
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}
.account-field-save { background: var(--navy); color: #fff; }
.account-field-save:hover { background: #042042; }
.account-field-discard { background: var(--paper); color: var(--muted); }
.account-field-discard:hover { color: var(--ink); }

@media (max-width: 640px) {
  .account-field-main { min-width: 0; width: 100%; }
}

/* ============ AYARLAR SAYFASI ============ */

/* .field bileşeni auth.html'de beyaz kart içinde kullanılmak üzere
   tasarlanmıştı; burada koyu zeminli .about-block içinde kullanıldığı için
   etiket rengini ve buton/uyarı renklerini bu bağlama uyarlıyoruz. */
.about-block .field { color: rgba(255,255,255,0.72); margin-bottom: 14px; }
.about-block .field:last-of-type { margin-bottom: 0; }

.about-block .submit-btn {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #04203A;
}
.about-block .submit-btn:hover {
  background: linear-gradient(135deg, var(--sky), #8fd0ff);
}

.about-block .form-error { color: #F2A79C; }
.about-block .form-success {
  font-size: 12.5px;
  font-weight: 600;
  color: #7FD9A8;
  margin: -6px 0 0;
}
.about-block .form-success:empty { display: none; }
.about-block .form-error:empty { display: none; }

.settings-form { display: flex; flex-direction: column; gap: 4px; max-width: 360px; }

/* ---- Aç/kapa (toggle) ---- */

.switch-field {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.switch-field-text { flex: 1; }

.switch-label {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.switch-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.switch-track {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  transition: background 0.2s ease;
  pointer-events: none;
}
.switch-track::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.switch input:checked + .switch-track { background: var(--sky); }
.switch input:checked + .switch-track::before { transform: translateX(20px); }
.switch input:focus-visible + .switch-track {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

/* ---- Tehlikeli bölge (hesap silme) ---- */

.danger-zone {
  border-color: rgba(224,102,90,0.3);
  background: rgba(224,102,90,0.05);
}
.danger-zone h2 { color: #F2A79C; }
.danger-zone > p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0 0 16px;
}

.danger-btn {
  border: 1px solid rgba(224,102,90,0.5);
  background: rgba(224,102,90,0.12);
  color: #F2A79C;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 18px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.danger-btn:hover:not(:disabled) { background: rgba(224,102,90,0.22); border-color: #E0665A; }
.danger-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.danger-confirm-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(224,102,90,0.08);
  border: 1px solid rgba(224,102,90,0.25);
}
.danger-confirm-panel.active { display: flex; animation: fadeSlideUp 0.25s ease; }
.danger-confirm-panel p { margin: 0; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.8); }

.danger-confirm-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.danger-confirm-btn {
  background: #C0392B;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.danger-confirm-btn:hover { background: #A5301F; }

.danger-cancel-btn {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.danger-cancel-btn:hover { background: rgba(255,255,255,0.14); }

/* ============ PREMIUM SAYFASI ============ */

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
  align-items: stretch;
}

.premium-card {
  display: flex;
  flex-direction: column;
}

.premium-card.is-other-role { opacity: 0.55; }

.premium-card-head { margin-bottom: 4px; }

.premium-card-head h2 { margin: 0 0 8px; }

.premium-price {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 14px;
}
.premium-price span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}

.premium-feature-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.premium-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

.premium-feature-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--gold);
}

.premium-action { margin-top: auto; }

.premium-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin: 0;
}

.premium-owned {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #7FD9A8;
  background: rgba(127,217,168,0.12);
  padding: 11px 14px;
  border-radius: 9px;
}
.premium-owned svg { width: 16px; height: 16px; flex-shrink: 0; }

.premium-buy-btn {
  background: linear-gradient(135deg, var(--gold), #E0A030);
  color: #3B2A06;
  border: none;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 0;
  width: 100%;
  border-radius: 9px;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.1s ease;
}
.premium-buy-btn:hover { filter: brightness(1.08); }
.premium-buy-btn:active { transform: scale(0.98); }

.premium-card-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.premium-card-form .field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.premium-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.premium-form-actions .submit-btn { flex: 1; }
.premium-form-actions .ghost-btn { flex-shrink: 0; }

.premium-legal-note {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  margin: 4px auto 0;
  text-align: center;
  font-style: italic;
}

@media (max-width: 640px) {
  .premium-grid { grid-template-columns: 1fr; }
  .premium-card-form .field-row-2 { grid-template-columns: 1fr; }
}

/* ---- Hesabım sayfasındaki Premium rozeti ---- */

.account-premium-badge {
  display: none;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3B2A06;
  background: linear-gradient(135deg, var(--gold), #FFD98A);
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 8px;
}
.account-premium-badge.active { display: inline-flex; }
.account-premium-badge svg { width: 11px; height: 11px; }