:root {
  /* Turuncu ile uyumlu ana renk: derin lacivert-mavi */
  --primary: #1e3a5f;
  --primary-mid: #2d5080;
  --primary-light: #3d6699;
  --primary-dark: #142841;
  /* Vurgu: canlı turuncu */
  --accent: #f97316;
  --accent-deep: #ea580c;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --bg-soft: #faf6f3;
  --white: #fff;
  --border: #e8e3de;
  --primary-rgb: 30, 58, 95;
  --accent-rgb: 249, 115, 22;
}

* {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  /* Akışta kalır; sticky/fixed eski önbelleği !important ile geçersiz kılınır */
  position: static !important;
  top: auto !important;
  z-index: 1200;
  /* Sabit opak bar (şeffaf / cam yok) */
  background: var(--primary-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 36px rgba(10, 16, 28, 0.25);
  isolation: isolate;
  /* transform kullanma: fixed çekmece + translateX taşması yatay scroll üretir */
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

/* Eski sınıf: panel / giriş sayfalarıyla aynı görünüm (artık varsayılanla özdeş) */
body.header-bar--opaque .site-header {
  background: var(--primary-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 36px rgba(10, 16, 28, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }

  .header-actions {
    transition: none !important;
  }
}

#kurye-cagir,
#isyeri-olustur,
#about,
#download,
#referanslar {
  scroll-margin-top: 16px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  position: relative;
  z-index: 2;
}

.site-header .header-backdrop {
  display: none;
}

.header-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin: -4px -6px -4px 8px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}

.header-menu-toggle {
  display: none;
}

.header-menu-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header-menu-btn__bar {
  display: block;
  height: 2px;
  width: 22px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

@media (prefers-reduced-motion: reduce) {
  .header-menu-btn__bar {
    transition: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  text-transform: none;
}

.brand-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: none;
}

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
  box-sizing: border-box;
  padding: 3px;
}

.brand-logo--footer {
  width: 34px;
  height: 34px;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.35);
}

/* Ana sayfa vb.: yalnızca logo dosyası — yuvarlak / rozet yok */
.brand-logo--plain {
  width: auto;
  height: auto;
  max-height: 44px;
  max-width: min(200px, 46vw);
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.site-header .brand-logo--plain {
  max-height: 42px;
  max-width: min(200px, 50vw);
  background: transparent;
  box-shadow: none;
}

.site-header .brand--logo-only {
  padding: 0;
}

.footer-brand-logo--plain .brand-logo--plain {
  max-height: clamp(40px, 7vw, 56px);
  max-width: min(220px, 70vw);
  background: transparent;
  box-shadow: none;
}

.footer-brand-logo--plain .brand-name {
  display: none;
}

.brand-name {
  letter-spacing: -0.02em;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  max-width: min(100%, 720px);
}

.header-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 8px;
  padding: 6px 10px;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.header-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.header-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.brand--link {
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.site-header .brand,
.site-header .brand--link:link,
.site-header .brand--link:visited,
.site-header .brand--link:hover,
.site-header .brand--link:active,
.site-header .brand-name {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.site-header .brand-logo:not(.brand-logo--plain) {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.site-header .brand--link {
  text-decoration: none !important;
  border-radius: 8px;
  padding: 4px 8px;
  transition: background 0.18s ease;
}

.site-header .brand--link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-header .brand.brand--link.brand--logo-only {
  padding: 0;
  border-radius: 0;
}

.site-header .brand.brand--link.brand--logo-only:hover {
  background: transparent;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 12px;
}

.btn-header-login {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  background: var(--accent);
  color: #0c1929;
  border: 2px solid var(--accent);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-header-login:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #0c1929;
}

.btn-header-login--active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-header-login--active:link,
.btn-header-login--active:visited {
  color: #fff;
}

.btn-header-login--active:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-header-login--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-header-login--ghost:link,
.btn-header-login--ghost:visited {
  color: #fff;
}

.btn-header-login--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

/* Üst çubukta turuncu düğme: :visited rengi lacivert bar üzerinde okunmuyor (--active/--ghost hariç) */
.site-header .header-actions > a.btn-header-login:not(.btn-header-login--active):not(.btn-header-login--ghost):link,
.site-header .header-actions > a.btn-header-login:not(.btn-header-login--active):not(.btn-header-login--ghost):visited,
.site-header .header-actions > a.btn-header-login:not(.btn-header-login--active):not(.btn-header-login--ghost):hover {
  color: #0c1929;
}

.site-header .header-actions > a.btn-header-login.btn-header-login--active:link,
.site-header .header-actions > a.btn-header-login.btn-header-login--active:visited,
.site-header .header-actions > a.btn-header-login.btn-header-login--ghost:link,
.site-header .header-actions > a.btn-header-login.btn-header-login--ghost:visited {
  color: #fff;
}

.form-layout--narrow {
  width: min(520px, 100%);
  min-width: 0;
}

.form-card-sub {
  margin: -8px 0 16px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-card-sub a {
  color: var(--primary-mid);
  font-weight: 600;
  text-decoration: none;
}

.form-card-sub a:hover {
  text-decoration: underline;
}

.form-card-sub--tight {
  margin: -6px 0 14px;
  font-size: 0.86rem;
}

/* İşyeri kayıt: logo açıklaması etiket içinde, dosya seçicinin hemen üstünde */
label.register-form__field--full .form-card-sub--under-input-label {
  display: block;
  margin: 6px 0 10px;
}

.form-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-alert--ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #166534;
}

.form-alert--err {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.28);
  color: #991b1b;
}

.form-alert--warn {
  background: rgba(234, 179, 8, 0.14);
  border: 1px solid rgba(202, 138, 4, 0.35);
  color: #854d0e;
}

.panel-status-banner {
  margin-bottom: 18px;
  text-align: left;
}

.login-error {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #991b1b;
  font-size: 0.9rem;
}

.login-type-fieldset {
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  min-width: 0;
}

.login-type-legend {
  padding: 0;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.55);
}

.login-type-legend--visible {
  margin: 0 0 10px;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.55);
}

.login-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 0;
}

.login-type-option {
  cursor: pointer;
  margin: 0;
  min-width: 0;
}

.login-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.login-type-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid #e6edf5;
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.login-type-option input:focus-visible + .login-type-box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.login-type-option input:checked + .login-type-box {
  border-color: rgba(var(--primary-rgb), 0.45);
  background: rgba(var(--primary-rgb), 0.06);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.login-type-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
}

.login-type-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.login-register-hints {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--primary-rgb), 0.1);
  text-align: left;
  align-self: stretch;
  width: 100%;
}

.login-register-hints__title {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.45);
}

.login-register-hint {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  text-align: left;
}

.login-register-hint:last-child {
  margin-bottom: 0;
}

.login-register-hint__mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-dark);
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.35) 0%, rgba(var(--accent-rgb), 0.12) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.15);
}

.login-register-hint__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.login-register-hint__question {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.login-register-hint__action {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.login-register-hint__action::after {
  content: "→";
  font-size: 0.85em;
  opacity: 0.85;
}

.login-register-hint__action:hover {
  color: var(--accent-deep);
  gap: 8px;
}

/* Giriş sayfası — hero + iki sütun (yasal sayfalarla uyumlu dil) */
.login-page-body {
  background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 38%, #ffffff 100%);
}

.login-page {
  overflow-x: clip;
}

.login-page-hero {
  position: relative;
  padding: clamp(40px, 6vw, 52px) 0 clamp(44px, 6vw, 64px);
  color: #fff;
  overflow: hidden;
}

.login-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    145deg,
    var(--primary-dark) 0%,
    var(--primary) 42%,
    var(--primary-mid) 100%
  );
}

.login-page-hero__accent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%);
  width: min(420px, 85vw);
  height: min(420px, 85vw);
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.28) 0%,
    rgba(var(--accent-rgb), 0.06) 50%,
    transparent 72%
  );
  pointer-events: none;
}

.login-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(640px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.login-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
}

.login-breadcrumb__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.login-breadcrumb__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.login-breadcrumb__sep {
  opacity: 0.45;
  user-select: none;
}

.login-breadcrumb__here {
  color: rgba(255, 255, 255, 0.78);
}

.login-page-hero__kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.login-page-hero__title {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.login-page-hero__lead {
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
   max-width: min(58ch, 100%);
}

.login-page-main {
  padding: 0 0 clamp(48px, 7vw, 80px);
  margin-top: clamp(-24px, -3vw, -16px);
  position: relative;
  z-index: 2;
}

.login-page-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(340px, 38%);
  gap: clamp(22px, 4vw, 32px);
  align-items: start;
}

.login-page-form-col {
  min-width: 0;
}

.login-page-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-aside-card {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(var(--primary-rgb), 0.1);
}

.login-aside-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}

.login-aside-card__lead {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.login-aside-card__actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-aside-card__action {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #0c1929;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.3);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.login-aside-card__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(var(--accent-rgb), 0.38);
}

.login-aside-card__action--secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid rgba(var(--primary-rgb), 0.18);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.08);
}

.login-aside-card__action--secondary:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 8px 22px rgba(var(--primary-rgb), 0.12);
}

.login-aside-card__action-label {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.login-aside-card__action-desc {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.88;
}

.login-aside-card__action--secondary .login-aside-card__action-desc {
  color: var(--muted);
  opacity: 1;
}

.login-aside-note {
  margin: 0;
  padding: 14px 16px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 14px;
}

.login-aside-note strong {
  color: var(--primary-dark);
}

@media (max-width: 900px) {
  .login-page-main__grid {
    grid-template-columns: 1fr;
  }

  .login-page-main {
    margin-top: 0;
    padding-top: 28px;
  }

  .login-page-aside {
    order: 2;
  }

  .login-page-form-col {
    order: 1;
  }
}

@media (max-width: 720px) {
  .login-page-body {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }

  .login-page-hero {
    padding: clamp(26px, 7vw, 40px) 0 clamp(30px, 7vw, 44px);
  }

  .login-page-hero__accent {
    width: min(300px, 130vw);
    height: min(300px, 130vw);
    transform: translate(-50%, -48%);
    opacity: 0.88;
  }

  .login-page-hero__title {
    font-size: clamp(1.32rem, 5.8vw, 1.88rem);
  }

  .login-page-hero__lead {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 36ch;
  }

  .login-page-main {
    padding-bottom: clamp(40px, 10vw, 64px);
  }

  .login-page-main__grid {
    gap: 18px;
  }

  .form-card.login-card {
    padding: 22px 18px 22px;
    border-radius: 18px;
  }

  .login-aside-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .login-aside-note {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .login-page-main .container {
    width: min(1120px, 94%);
  }

  .login-breadcrumb {
    font-size: 0.72rem;
    margin-bottom: 12px;
    gap: 4px 6px;
  }

  .login-page-hero__kicker {
    font-size: 0.68rem;
  }

  .login-card__head {
    margin-bottom: 14px;
  }

  .login-card__title {
    font-size: clamp(1.05rem, 5vw, 1.28rem);
  }

  .login-card__lead {
    font-size: 0.82rem;
  }

  .login-type-legend--visible {
    font-size: 0.72rem;
  }

  .login-type-box {
    min-height: 70px;
    padding: 11px 12px;
    border-radius: 12px;
  }

  .login-type-title {
    font-size: 0.88rem;
  }

  .login-type-desc {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .login-form .login-field .login-field__label {
    font-size: 0.76rem;
  }

  .login-form .login-field input {
    min-height: 48px;
    padding: 12px 12px;
    font-size: 16px;
  }

  .login-submit.btn-primary {
    min-height: 50px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .login-demo-note,
  .login-admin-link {
    font-size: 0.76rem;
  }

  .login-aside-card__title {
    font-size: 0.98rem;
  }

  .login-aside-card__lead {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .login-aside-card__action {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .login-aside-card__action-label {
    font-size: 0.86rem;
  }

  .login-aside-card__action-desc {
    font-size: 0.74rem;
  }

  .login-test-hint {
    padding: 12px 12px 10px;
  }

  .login-test-hint__list {
    font-size: 0.76rem;
    padding-left: 1rem;
  }
}

.form-card.login-card {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 22px;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow:
    0 4px 6px rgba(var(--primary-rgb), 0.04),
    0 22px 48px rgba(var(--primary-rgb), 0.1);
  overflow: hidden;
}

.form-card.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-mid) 45%, var(--accent) 100%);
}

.login-card__head {
  margin-bottom: 18px;
}

.login-card__title {
  margin: 0 0 6px;
  font-size: clamp(1.22rem, 2.2vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}

.login-card__lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.login-form {
  gap: 14px !important;
}

.login-form .login-field .login-field__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #203854;
}

.login-form .login-field input {
  min-height: 46px;
  border-radius: 11px;
  border-color: #c9d4e4;
}

.login-form .login-field input::placeholder {
  color: #94a3b8;
}

.login-form .login-field:focus-within input {
  border-color: rgba(var(--primary-rgb), 0.45);
}

.login-type-box {
  padding: 14px 16px;
  border-radius: 14px;
  border-width: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  min-height: 76px;
  justify-content: center;
}

.login-type-option input:checked + .login-type-box {
  border-color: var(--accent);
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.1) 0%,
    rgba(var(--primary-rgb), 0.06) 100%
  );
  box-shadow:
    0 0 0 3px rgba(var(--accent-rgb), 0.18),
    0 8px 20px rgba(var(--primary-rgb), 0.08);
}

.login-type-option input:checked + .login-type-box .login-type-title {
  color: var(--primary-dark);
}

.login-type-title {
  font-size: 1rem;
}

.login-type-desc {
  font-size: 0.8rem;
  line-height: 1.4;
}

.login-submit.btn-primary {
  width: 100%;
  margin-top: 4px;
  min-height: 48px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}

.login-submit.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.42);
}

.login-demo-note {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.login-demo-note code {
  word-break: break-all;
}

.login-admin-link {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.login-admin-link a {
  font-weight: 700;
  color: var(--primary-mid);
}

.login-test-hint {
  margin-top: 16px;
  padding: 14px 14px 12px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  text-align: left;
}

.login-test-hint__title {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-mid);
}

.login-test-hint__lead {
  margin: 0 0 10px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.login-test-hint__code {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.72rem;
  color: #334155;
}

.login-test-hint__list {
  margin: 0 0 10px;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text);
}

.login-test-hint__list li + li {
  margin-top: 6px;
}

.login-test-hint__cred {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--primary-dark);
  word-break: break-all;
}

.login-test-hint__warn {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(var(--primary-rgb), 0.55);
}

.login-test-hint__warn code {
  font-size: 0.68rem;
}

.panel-page {
  min-height: calc(100vh - 58px);
  padding: 40px 0 64px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 45%);
}

.panel-inner {
  max-width: 720px;
}

.panel-head {
  margin-bottom: 28px;
}

.panel-eyebrow {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-mid);
}

.panel-head h1 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
}

.panel-email {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.panel-meta {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: rgba(var(--primary-rgb), 0.55);
  font-weight: 600;
}

.panel-meta code {
  font-size: 0.78em;
  font-weight: 700;
}

.panel-quick-actions {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.panel-quick-actions__hint {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.admin-dashboard .panel-inner {
  max-width: min(960px, 96vw);
}

.admin-section {
  margin-bottom: 40px;
}

.admin-section__title {
  margin: 0 0 14px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.admin-section__empty {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.btn--small {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.panel-placeholder {
  background: var(--white);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.06);
}

.panel-placeholder p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer--simple .footer-main {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: 36px 0 40px;
  border-bottom: none;
}

.site-footer--simple .footer-heading {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer.site-footer--simple .footer-main > .footer-links-group {
  border-left: none;
  padding-left: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0 96px;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroBgCycle 40s ease-in-out infinite;
  will-change: opacity;
}

.hero-bg-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-bg-slide:nth-child(2) {
  animation-delay: 5s;
}

.hero-bg-slide:nth-child(3) {
  animation-delay: 10s;
}

.hero-bg-slide:nth-child(4) {
  animation-delay: 15s;
}

.hero-bg-slide:nth-child(5) {
  animation-delay: 20s;
}

.hero-bg-slide:nth-child(6) {
  animation-delay: 25s;
}

.hero-bg-slide:nth-child(7) {
  animation-delay: 30s;
}

.hero-bg-slide:nth-child(8) {
  animation-delay: 35s;
}

/* 8 görsel × 5 sn; her biri zaman çizelgesinin %12,5’inde görünür */
@keyframes heroBgCycle {
  0% {
    opacity: 0;
  }

  2% {
    opacity: 1;
  }

  10.5% {
    opacity: 1;
  }

  12.5% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 95, 0.72) 0%,
    rgba(45, 80, 128, 0.68) 55%,
    rgba(61, 102, 153, 0.64) 100%
  );
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 40px;
}

.hero-grid > * {
  min-width: 0;
}

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.15;
}

.hero-text {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
}

.store-buttons {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  background: #111;
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  padding: 10px 14px;
  min-width: 165px;
  display: flex;
  flex-direction: column;
  border: 1px solid #333;
}

.store-top {
  font-size: 11px;
  color: #d9d9d9;
}

.store-bottom {
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-visual {
  display: grid;
  place-items: center;
}

/* Hero telefon: gerçek cihaza yakın en-boy (~9:19.5), vitrin için hafif geniş / biraz daha uzun */
.hero-phone-wrap {
  width: min(296px, 100%);
  max-width: 100%;
}

.phone {
  width: 100%;
  background: #1f1f29;
  border: 2px solid #0f0f14;
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
}

.phone--iphone.hero-phone {
  position: relative;
  border-radius: 42px;
  padding: 11px 11px 12px;
  background: linear-gradient(165deg, #45454f 0%, #1a1a22 38%, #0c0c10 100%);
  border: 2px solid #1f1f26;
  box-shadow:
    0 32px 56px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.phone-dynamic-island {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 24px;
  border-radius: 14px;
  background: #000;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 55%, #eef2f7 100%);
  border-radius: 32px;
  padding: 0 10px 10px;
  padding-top: 14px;
  color: #1e293b;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Ana sayfa hero: tipik akıllı telefon gövde oranı */
.phone--iphone.hero-phone .phone-screen {
  height: auto;
  min-height: 0;
  max-height: min(458px, 58vh);
  aspect-ratio: 9 / 19.5;
  /* Üst padding + 24px status satırı, Dynamic Island (72×24, top 13px) ile aynı hizada */
  padding-top: 2px;
}

.phone-statusbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

/* Status satırı: kamera ile aynı yükseklik (24px), dikey ortalı */
.phone--iphone.hero-phone .phone-statusbar {
  min-height: 24px;
  height: 24px;
  padding: 0 10px 2px;
  box-sizing: border-box;
  align-items: center;
}

.phone-time {
  padding-left: 4px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.phone--iphone.hero-phone .phone-time {
  min-height: 24px;
  height: 24px;
  padding-left: 2px;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 2px;
}

.phone--iphone.hero-phone .phone-status-icons {
  min-height: 24px;
  height: 24px;
  padding-right: 2px;
}

.phone-signal {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 11px;
  flex-shrink: 0;
}

.phone--iphone.hero-phone .phone-signal {
  align-self: center;
}

.phone--iphone.hero-phone .phone-battery {
  align-self: center;
  flex-shrink: 0;
}

.phone-signal i {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: #000;
}

.phone-signal i:nth-child(1) {
  height: 4px;
}

.phone-signal i:nth-child(2) {
  height: 6px;
}

.phone-signal i:nth-child(3) {
  height: 8px;
}

.phone-signal i:nth-child(4) {
  height: 10px;
}

.phone-battery {
  width: 24px;
  height: 11px;
  border: 1.5px solid #000;
  border-radius: 3px;
  position: relative;
  box-sizing: border-box;
}

.phone-battery::before {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 5px;
  background: #000;
  border-radius: 0 2px 2px 0;
}

.phone-battery::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 65%;
  border-radius: 1px;
  background: #000;
}

.phone-app-scroll {
  flex: 1 1 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2px 4px 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.phone--iphone.hero-phone .phone-app-scroll {
  overscroll-behavior: contain;
}

.phone-app-eyebrow {
  margin: 0 0 6px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.phone-app-title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0f172a;
}

.phone-app-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.phone-app-row {
  display: grid;
  grid-template-columns: minmax(70px, 34%) 1fr;
  gap: 6px 10px;
  align-items: start;
  padding: 6px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 0.74rem;
  line-height: 1.4;
}

.phone-app-row:last-child {
  border-bottom: none;
}

.phone-app-row-k {
  font-weight: 600;
  color: #64748b;
}

.phone-app-row-v {
  font-weight: 600;
  color: #0f172a;
  text-align: right;
  word-break: break-word;
}

.phone-app-row-v--ok {
  color: #15803d;
}

.phone-eta {
  margin: 10px 0 0;
  padding: 0 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  color: #64748b;
  line-height: 1.35;
}

.phone-eta-time {
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.phone-app-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 2px 0;
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0) 0%,
    rgba(248, 250, 252, 0.92) 10px,
    rgba(248, 250, 252, 1) 100%
  );
}

.phone-inlay-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 10px 12px;
  border-radius: 11px;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.phone-inlay-btn:active {
  transform: scale(0.98);
}

.phone-inlay-btn--primary {
  background: var(--accent);
  color: #0c1929;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.phone-inlay-btn--primary:hover {
  background: var(--accent-deep);
  color: #0c1929;
}

.phone-inlay-btn--secondary {
  background: #fff;
  color: #0f172a;
  border: 1.5px solid rgba(15, 23, 42, 0.16);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.phone-inlay-btn--secondary:hover {
  border-color: rgba(15, 23, 42, 0.32);
  background: #f8fafc;
}

.features,
.about,
.cta {
  padding: 74px 0;
}

.features {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #f2f0ed 0%,
    var(--bg-soft) 40%,
    #faf9f8 100%
  );
}

.features-deco {
  position: absolute;
  left: -100px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--primary-rgb), 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.features-inner {
  position: relative;
  z-index: 1;
}

.features-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.features-eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.features-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  color: var(--text);
}

.features-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about h2,
.cta h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.features-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* Yapışkan not: dört kart aynı görünüm */
.feature-card {
  position: relative;
  background: linear-gradient(
    165deg,
    #fffef6 0%,
    #fff6d5 38%,
    #ffecb8 72%,
    #ffe8a8 100%
  );
  border: 1px solid rgba(55, 48, 35, 0.12);
  border-radius: 3px 4px 5px 3px;
  padding: 44px 22px 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 10px 22px rgba(45, 40, 30, 0.1),
    0 3px 6px rgba(45, 40, 30, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}

/* Üst bant (bant / yapışkan şerit) */
.feature-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(42%, 140px);
  height: 24px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(220, 218, 210, 0.92) 45%,
    rgba(200, 198, 190, 0.88) 100%
  );
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  opacity: 0.98;
  z-index: 1;
}

/* Hafif çizgili kağıt */
.feature-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 46px;
  bottom: 20px;
  border-radius: 1px;
  background-image: repeating-linear-gradient(
    transparent 0,
    transparent 26px,
    rgba(120, 100, 70, 0.11) 26px,
    rgba(120, 100, 70, 0.11) 27px
  );
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-5px) rotate(0.25deg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 18px 36px rgba(45, 40, 30, 0.14),
    0 6px 12px rgba(45, 40, 30, 0.08);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.32;
  color: #2c2419;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: #4a4338;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
  position: relative;
  z-index: 2;
}

.about {
  background: linear-gradient(
    165deg,
    var(--bg-soft) 0%,
    #e8edf4 48%,
    var(--white) 100%
  );
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--primary-rgb), 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-how-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.how-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.how-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

.how-head-sub {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.how-head-accent {
  width: 72px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* İşletmeler için — Nasıl çalışır başlığı + adisyon / termal fiş kartları */
.biz-benefits.about {
  background: linear-gradient(
    165deg,
    #faf4ec 0%,
    #f2ebe1 22%,
    #e8ecf2 58%,
    var(--white) 100%
  );
}

.biz-benefits-eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.biz-receipts-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 18px;
  align-items: start;
}

.biz-receipt {
  min-width: 0;
}

.biz-receipt__shell {
  position: relative;
  margin: 0 auto;
  max-width: 280px;
}

.biz-receipt__paper {
  position: relative;
  margin-top: 0;
  padding: 18px 16px 16px;
  border-radius: 6px;
  border: 1px dashed rgba(62, 48, 32, 0.38);
  background: linear-gradient(180deg, #fffdf9 0%, #f7f0e4 55%, #f3eadc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 36px rgba(45, 36, 24, 0.1),
    0 4px 10px rgba(45, 36, 24, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.biz-receipt__paper::before {
  content: "";
  display: block;
  height: 3px;
  margin: -18px -17px 14px -17px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-mid) 55%, var(--accent) 100%);
}

.biz-receipt__hdr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.biz-receipt__hdr-brandline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 10px;
}

.biz-receipt__brand {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: #2a2218;
  min-width: 0;
}

.biz-receipt__meta {
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(55, 44, 30, 0.65);
  letter-spacing: 0.02em;
}

.biz-receipt__rule {
  height: 1px;
  margin: 0 0 12px;
  background: repeating-linear-gradient(
    90deg,
    rgba(80, 60, 40, 0.35),
    rgba(80, 60, 40, 0.35) 4px,
    transparent 4px,
    transparent 8px
  );
}

.biz-receipt__title {
  margin: 0 0 10px;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.32;
  color: #2c2419;
}

.biz-receipt__hdr-brandline .biz-receipt__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.28);
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.biz-receipt__body {
  margin: 0;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.78rem;
  line-height: 1.58;
  color: #3d3428;
}

.biz-receipt__totals {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed rgba(80, 60, 40, 0.35);
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2a2218;
}

.biz-receipt__totals-v {
  color: var(--accent-deep);
}

.biz-receipt__shell:hover .biz-receipt__paper {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 20px 44px rgba(45, 36, 24, 0.14),
    0 8px 16px rgba(45, 36, 24, 0.08);
}

@media (max-width: 1099px) {
  .biz-receipts-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .biz-receipts-track {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin: 0 -10px;
    padding: 4px 10px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .biz-receipt {
    flex: 0 0 min(272px, 84vw);
    scroll-snap-align: start;
  }

  .biz-receipt__shell {
    max-width: none;
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .biz-receipt__shell:hover .biz-receipt__paper {
    transform: none;
  }

  .biz-receipt__paper {
    transition: none;
  }
}

/* Yatay üç adım */
.hire-horizontal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  gap: 0 8px;
  align-items: stretch;
}

.hire-hoz-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  padding: 22px 20px 24px;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 14px 40px rgba(var(--primary-rgb), 0.07);
  overflow: hidden;
}

.hire-hoz-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-mid) 50%,
    var(--accent) 100%
  );
}

.hire-hoz-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    var(--primary-mid) 100%
  );
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.26);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hire-hoz-tag {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.5);
}

.hire-hoz-title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 1.04rem;
  line-height: 1.38;
  color: var(--text);
}

.hire-hoz-lead {
  margin: 0 0 16px;
  font-size: 0.88rem;
  line-height: 1.62;
  color: var(--muted);
}

.hire-hoz-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  align-self: center;
}

.hire-hoz-chevron {
  display: block;
  width: 11px;
  height: 11px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
  margin-left: -5px;
  opacity: 0.95;
}

.hire-hoz-card .hire-mock {
  margin-top: auto;
  flex-shrink: 0;
}

/* Ortak önizleme kutusu (kayıt / liste / anlaşma) */
.hire-mock {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08);
}

.hire-mock-head {
  padding: 10px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(
    180deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.hire-mock-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f4f6f9;
}

.hire-mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
  background: var(--white);
}

.hire-mock-row:last-child {
  border-bottom: none;
}

.hire-mock-row-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hire-mock-row-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}

.hire-mock-row-sub {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
}

.hire-mock-step-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 10px;
  box-sizing: border-box;
}

.hire-mock-step-ico--done {
  background: rgba(34, 197, 94, 0.14);
  border: 2px solid rgba(34, 197, 94, 0.4);
  position: relative;
}

.hire-mock-step-ico--done::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #15803d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hire-mock-step-ico--pending {
  background: rgba(234, 179, 8, 0.12);
  border: 2px dashed rgba(234, 179, 8, 0.55);
  position: relative;
}

.hire-mock-step-ico--pending::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -6px;
  border-radius: 50%;
  background: #ca8a04;
  box-shadow:
    6px 0 0 #ca8a04,
    12px 0 0 #ca8a04;
}

.hire-mock-step-ico--deal {
  background: rgba(var(--primary-rgb), 0.1);
  border: 2px solid rgba(var(--primary-rgb), 0.22);
  position: relative;
}

.hire-mock-step-ico--deal::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 12px;
  height: 15px;
  border-radius: 2px;
  border: 2px solid var(--primary-mid);
  border-top-width: 4px;
  box-sizing: border-box;
}

.hire-mock-pill {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}

.hire-mock-pill--ok {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.hire-mock-pill--wait {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
  border: 1px solid rgba(100, 116, 139, 0.28);
}

.hire-mock-pill--accent {
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent-deep);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
}

.hire-pool-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.2) 0%,
    rgba(var(--accent-rgb), 0.25) 100%
  );
  border: 2px solid rgba(var(--primary-rgb), 0.12);
}

.hire-pool-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hire-pool-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.hire-pool-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

.hire-pool-status {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.hire-pool-status--busy {
  background: rgba(234, 179, 8, 0.15);
  color: #a16207;
  border-color: rgba(234, 179, 8, 0.4);
}

.cta {
  background: linear-gradient(
    165deg,
    var(--primary) 0%,
    var(--primary-dark) 55%,
    #0f1f33 100%
  );
  color: var(--white);
}

/* Mobil indirme — teşvik odaklı düzen */
.cta-download {
  position: relative;
  overflow: hidden;
}

.cta-download-glow {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.22) 0%,
    rgba(var(--accent-rgb), 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-download-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, min(40vw, 380px));
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-download-copy {
  text-align: left;
}

.cta-download .cta-soon {
  margin: 0 0 12px;
}

.cta-download h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: min(40ch, 100%);
}

.cta-download-lead {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.6;
  max-width: 48ch;
}

.cta-download-perks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-download-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.cta-download-perk-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #0c1929;
  background: var(--accent);
  margin-top: 1px;
}

.cta-download-store-block {
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-download-store-eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cta-download-stores {
  margin-top: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn--cta {
  min-width: 178px;
  padding: 12px 16px;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-btn--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(var(--accent-rgb), 0.5);
}

.cta-download-foot {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 42ch;
}

.cta-download-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  justify-self: end;
  width: 100%;
  max-width: 326px;
}

.cta-download-phone {
  width: min(296px, 100%);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(165deg, #45454f 0%, #1a1a22 38%, #0c0c10 100%);
  border: 2px solid #1f1f26;
  border-radius: 40px;
  padding: 10px 10px 12px;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
}

.cta-download-phone-island {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 24px;
  border-radius: 14px;
  background: #000;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.cta-download-phone-screen {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 9 / 19.5;
  max-height: min(458px, 58vh);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 55%, #e8edf4 100%);
  border-radius: 30px;
  padding: 0 12px 12px;
  /* Gövde üst padding 10px (hero’da 11px); status satırı kameralı aynı merkez */
  padding-top: 3px;
  text-align: left;
  color: var(--primary-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
}

/* Status satırı — kamera (72×24, top 13px) ile aynı hiza */
.cta-download-phone-screen .cta-download-phone-statusbar {
  flex-shrink: 0;
  margin: 0 0 4px;
  padding: 0 10px 2px;
  min-height: 24px;
  height: 24px;
  box-sizing: border-box;
  align-items: center;
}

.cta-download-phone-screen .cta-download-phone-statusbar .phone-time {
  min-height: 24px;
  height: 24px;
  padding-left: 2px;
}

.cta-download-phone-screen .cta-download-phone-statusbar .phone-status-icons {
  min-height: 24px;
  height: 24px;
}

.cta-download-phone-screen .cta-download-phone-statusbar .phone-signal {
  align-self: center;
}

.cta-download-phone-screen .cta-download-phone-statusbar .phone-battery {
  align-self: center;
}

/* İndirme bölümü telefonu: mağaza vitrini; kaydırma yok — hero ile aynı gövde ölçüsü */
.cta-download-app-promo {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4px 8px 8px;
  position: relative;
  gap: 3px;
  overflow: hidden;
}

.cta-download-app-promo__glow {
  position: absolute;
  inset: 8% 6% auto;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.2) 0%,
    rgba(var(--primary-rgb), 0.08) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.cta-download-app-promo > :not(.cta-download-app-promo__glow) {
  position: relative;
  z-index: 1;
}

.cta-download-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 8px 20px rgba(var(--accent-rgb), 0.22),
    inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.cta-download-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cta-download-app-promo__eyebrow {
  margin: 0;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-mid);
}

.cta-download-app-promo__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
  line-height: 1.12;
}

.cta-download-app-promo__tagline {
  margin: 0 0 2px;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--muted);
  max-width: 26ch;
}

.cta-download-app-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3px 5px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #0f172a;
}

.cta-download-app-rating__stars {
  letter-spacing: 0.02em;
  color: #f59e0b;
  font-size: 0.62rem;
  line-height: 1;
}

.cta-download-app-rating__sep {
  color: #94a3b8;
  font-weight: 600;
}

.cta-download-app-rating__free {
  color: #15803d;
}

.cta-download-app-stores-mini {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 2px 0 0;
}

.cta-download-app-store-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  border-radius: 7px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #0f172a;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.06);
}

.cta-download-app-store-pill--apple .cta-download-app-store-pill__ico {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background: linear-gradient(180deg, #555 0%, #222 100%);
  flex-shrink: 0;
}

.cta-download-app-store-pill__play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #0f172a;
  flex-shrink: 0;
  margin-left: 1px;
}

.cta-download-app-cta-fake {
  width: 100%;
  max-width: 100%;
  margin-top: 2px;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0c1929;
  background: linear-gradient(180deg, #fbbf24 0%, var(--accent) 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 12px rgba(var(--accent-rgb), 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-download-app-perks-mini {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 6px;
  max-width: 100%;
}

.cta-download-app-perks-mini li {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--primary-mid);
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.cta-download-app-soon {
  margin: 3px 0 0;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.55);
}

.cta-download-visual-caption {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  max-width: min(320px, 100%);
  line-height: 1.45;
}

/* Footer öncesi: onaylı işletme logoları — 10×10 görünür alan, fazlası dikey kaydırma */
.ref-clients {
  padding: clamp(40px, 6vw, 56px) 0 clamp(36px, 5vw, 48px);
  background: linear-gradient(180deg, #f1f5f9 0%, #e8edf4 45%, #f8fafc 100%);
  border-top: 1px solid rgba(var(--primary-rgb), 0.08);
}

.ref-clients__intro {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.ref-clients__title {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}

.ref-clients__sub {
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
}

.ref-clients__count {
  display: inline-block;
  margin-left: 6px;
  font-weight: 700;
  color: rgba(var(--primary-rgb), 0.65);
  font-size: 0.88em;
}

.ref-clients__grid-outer {
  max-width: 1120px;
  margin: 0 auto;
}

.ref-clients__empty {
  margin: 0;
  padding: 28px 20px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  background: #fff;
  border: 1px dashed rgba(var(--primary-rgb), 0.2);
  border-radius: 16px;
}

.ref-clients__empty a {
  color: var(--primary-mid);
  font-weight: 700;
}

.ref-clients__viewport {
  outline: none;
}

.ref-clients__viewport--grid {
  --ref-gap: clamp(8px, 1.2vw, 12px);
  --ref-cols: 10;
  width: 100%;
  /* Yaklaşık 10 satır; fazlası dikey kaydırma */
  max-height: min(680px, 72vh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ref-clients__viewport--grid:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 3px rgba(var(--accent-rgb), 0.35);
}

.ref-clients__viewport--grid::-webkit-scrollbar {
  width: 8px;
}

.ref-clients__viewport--grid::-webkit-scrollbar-track {
  background: rgba(var(--primary-rgb), 0.06);
  border-radius: 999px;
}

.ref-clients__viewport--grid::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-rgb), 0.22);
  border-radius: 999px;
}

.ref-clients__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(var(--ref-cols), minmax(0, 1fr));
  gap: var(--ref-gap);
}

.ref-clients__cell {
  min-width: 0;
}

.ref-clients__logo-card {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.07);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.ref-clients__logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.12);
}

.ref-clients__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ref-clients__logo-fallback {
  font-size: clamp(0.75rem, 2.4vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary-mid);
  line-height: 1;
  text-align: center;
  padding: 4px;
}

.ref-clients__hint {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: rgba(var(--primary-rgb), 0.55);
  text-align: center;
}

@media (max-width: 900px) {
  .ref-clients__viewport--grid {
    --ref-cols: 8;
  }
}

@media (max-width: 720px) {
  .ref-clients__viewport--grid {
    --ref-cols: 5;
    max-height: min(560px, 65vh);
  }
}

@media (max-width: 420px) {
  .ref-clients__viewport--grid {
    --ref-cols: 4;
  }
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-soon {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #0c1929;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.cta-text {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.55;
}

.cta-tagline {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.5;
}

.cta .store-buttons {
  margin-top: 22px;
  justify-content: center;
}

.site-footer {
  position: relative;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(
    180deg,
    var(--primary-dark) 0%,
    #0f1828 52%,
    #0a121c 100%
  );
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand-col {
  padding-right: clamp(0px, 3vw, 28px);
}

.footer-brand-top .brand {
  color: #fff;
}

.footer-brand-top .brand--link {
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s ease;
}

.footer-brand-top .brand--link:hover {
  opacity: 0.92;
}

.footer-brand-logo:not(.footer-brand-logo--plain) .brand-logo--footer {
  background: rgba(255, 255, 255, 0.12);
}

.footer-brand-logo .brand-name {
  font-size: 1rem;
}

.footer-tagline {
  margin: 16px 0 22px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 36ch;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--accent);
}

.footer-social-link:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding-right: 14px;
  margin-right: 14px;
}

@media (min-width: 951px) {
  .footer-main > .footer-links-group {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: clamp(18px, 2.5vw, 30px);
  }
}

.footer-heading {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

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

.footer-list a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer-contact-value,
.footer-contact-list a.footer-contact-value {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-list a.footer-contact-value:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 18px 0 26px;
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.01em;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: #1a1d24;
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1 1 240px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.92);
}

.cookie-banner__text a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__text a:hover {
  color: #fdba74;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.cookie-actions--banner {
  flex: 1 1 220px;
}

.btn--cookie-text {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  font-size: 0.84rem;
}

.btn--cookie-text:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #0c1929;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-secondary {
  background: #3d3d45;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 28, 0.52);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal-card {
  width: min(560px, 100%);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.cookie-modal__title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.cookie-modal__intro {
  margin: 0 0 20px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.cookie-modal__intro a {
  color: var(--primary-mid);
  font-weight: 700;
}

.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.cookie-pref-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-pref-row--locked {
  grid-template-columns: 1fr auto;
}

.cookie-pref-text {
  min-width: 0;
}

.cookie-pref-heading {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.cookie-pref-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

.cookie-switch-state {
  flex-shrink: 0;
  align-self: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #166534;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  align-self: center;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 48px;
  height: 28px;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.cookie-switch-ui {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #cbd5e1;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  pointer-events: none;
}

.cookie-switch-ui::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2);
}

.cookie-switch input:checked + .cookie-switch-ui {
  background: var(--accent);
}

.cookie-switch input:checked + .cookie-switch-ui::after {
  transform: translateX(20px);
}

.cookie-switch input:focus-visible + .cookie-switch-ui {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.cookie-actions--modal {
  margin-top: 18px;
  padding-top: 4px;
  justify-content: stretch;
}

.cookie-actions--modal .btn-primary {
  width: 100%;
  padding: 12px 16px;
  font-weight: 800;
}

@media (max-width: 520px) {
  .cookie-pref-row {
    grid-template-columns: 1fr;
  }

  .cookie-switch,
  .cookie-switch-state {
    justify-self: start;
  }
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Klavye: üst çubuktan önce ana içeriğe atlama */
.skip-link {
  position: absolute;
  left: 12px;
  top: 0;
  z-index: 2000;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  font-weight: 800;
  font-size: 0.88rem;
  color: #0c1929;
  background: var(--accent);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #fff;
  outline-offset: 2px;
}

#main-content:focus {
  outline: none;
}

#main-content:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.45);
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
}

.form-page {
  background: linear-gradient(180deg, #f8f5f1 0%, #ffffff 35%);
  overflow-x: clip;
  max-width: 100%;
}

.form-hero {
  padding: 64px 0 48px;
}

/* Kayıt / form sayfaları: tek sütun hero metni ortada */
.form-page .hero.form-hero {
  text-align: center;
}

.form-page .hero.form-hero > .container {
  text-align: center;
  max-width: min(720px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.form-hero h1 {
  margin: 0 0 10px;
}

.form-hero p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
}

.form-page .hero.form-hero p {
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
  text-wrap: balance;
}

/* ——— Yasal belge sayfaları (sözleşme / KVKK / çerez) ——— */
.legal-doc-page {
  background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 38%, #ffffff 100%);
}

.legal-page {
  overflow-x: clip;
}

.legal-page-hero {
  position: relative;
  padding: clamp(40px, 6vw, 56px) 0 clamp(48px, 7vw, 72px);
  color: #fff;
  overflow: hidden;
}

.legal-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    145deg,
    var(--primary-dark) 0%,
    var(--primary) 42%,
    var(--primary-mid) 100%
  );
}

.legal-page-hero__accent {
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.35) 0%,
    rgba(var(--accent-rgb), 0.08) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.legal-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(720px, 100%);
}

.legal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
}

.legal-breadcrumb__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.15s ease;
}

.legal-breadcrumb__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-breadcrumb__sep {
  opacity: 0.45;
  user-select: none;
}

.legal-breadcrumb__here {
  color: rgba(255, 255, 255, 0.78);
}

.legal-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.legal-page-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  text-wrap: balance;
}

.legal-hero-lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
}

.legal-hero-lead a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}

.legal-hero-lead a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.85);
}

.legal-page-body {
  padding: 0 0 clamp(48px, 7vw, 80px);
  margin-top: clamp(-28px, -4vw, -20px);
  position: relative;
  z-index: 2;
}

.legal-page-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(300px, 34%);
  gap: clamp(24px, 4vw, 36px);
  align-items: start;
}

.legal-paper {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 22px 50px rgba(var(--primary-rgb), 0.1);
  padding: clamp(22px, 4vw, 40px) clamp(20px, 4vw, 36px);
  min-width: 0;
}

.legal-prose {
  max-width: 68ch;
}

.legal-prose h2 {
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.legal-prose h2:first-of-type {
  margin-top: 0;
}

.legal-prose h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.legal-prose p,
.legal-prose li {
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--muted);
}

.legal-prose p {
  margin: 0 0 14px;
}

.legal-table-wrap {
  margin: 0 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  background: rgba(var(--primary-rgb), 0.02);
}

.legal-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.82rem;
  line-height: 1.45;
}

.legal-table th,
.legal-table td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  color: var(--muted);
}

.legal-table th {
  font-weight: 800;
  color: var(--primary-dark);
  background: rgba(var(--primary-rgb), 0.06);
  white-space: nowrap;
}

.legal-table tbody tr:last-child th,
.legal-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-prose ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.legal-prose ul > li {
  position: relative;
  padding-left: 1.15rem;
  margin: 0 0 10px;
}

.legal-prose ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.2);
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.12) 0%,
    rgba(var(--primary-rgb), 0.08) 100%
  );
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 999px;
}

.legal-notice-cap {
  margin: 0 0 22px;
  padding: 14px 16px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--primary-dark);
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  border-radius: 12px;
}

.legal-notice-cap strong {
  font-weight: 800;
}

.legal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-sidebar__card {
  position: sticky;
  top: 16px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.08);
}

.legal-sidebar__title {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.5);
}

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

.legal-sidebar__link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-mid);
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.legal-sidebar__link:hover {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--accent-deep);
}

.legal-sidebar__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  border-radius: 12px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.legal-sidebar__back:hover {
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary-mid);
}

.legal-sidebar__back-icon {
  font-size: 1rem;
  line-height: 1;
}

.legal-page-footer-inner {
  padding: 24px 0;
}

.legal-page-footer-copy {
  margin: 0;
}

@media (max-width: 900px) {
  .legal-page-body__grid {
    grid-template-columns: 1fr;
  }

  .legal-sidebar__card {
    position: static;
  }

  .legal-page-body {
    margin-top: 0;
    padding-top: 24px;
  }

  .legal-sidebar {
    order:2;
  }

  .legal-paper {
    order: 1;
  }
}

@media print {
  .site-header,
  .legal-sidebar,
  .legal-breadcrumb,
  .legal-page-hero__accent {
    display: none !important;
  }

  .legal-doc-page {
    background: #fff;
  }

  .legal-page-hero {
    padding: 24px 0;
    color: #000;
    break-after: avoid;
  }

  .legal-page-hero__bg {
    display: none;
  }

  .legal-page-hero__inner {
    max-width: none;
  }

  .legal-kicker,
  .legal-breadcrumb__here,
  .legal-breadcrumb {
    color: #444 !important;
  }

  .legal-page-hero__title {
    color: #000;
  }

  .legal-hero-lead {
    color: #333 !important;
  }

  .legal-hero-lead a {
    color: #000 !important;
  }

  .legal-paper {
    box-shadow: none;
    border: none;
    padding: 0;
  }
}

.dispatch-hero {
  padding: 38px 0 28px;
  text-align: center;
}

.dispatch-hero h1 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin: 0 0 8px;
}

.dispatch-hero p {
  font-size: 0.96rem;
  max-width: 56ch;
  margin: 0 auto;
}

.dispatch-hero-login-hint {
  margin: 14px auto 0;
  max-width: 52ch;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.dispatch-hero-login-hint a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-section {
  padding: 40px 0 72px;
  position: relative;
}

.form-section .container {
  display: flex;
  justify-content: center;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  width: min(760px, 100%);
  min-width: 0;
  margin: 0 auto;
}

.form-info-card {
  background: linear-gradient(
    180deg,
    rgba(var(--primary-rgb), 0.96) 0%,
    var(--primary-dark) 100%
  );
  color: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(var(--primary-rgb), 0.22);
}

.form-info-card h3 {
  margin: 0 0 10px;
}

.form-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.form-info-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  gap: 8px;
}

.form-card {
  background: #fff;
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(var(--primary-rgb), 0.12);
  width: 100%;
  min-width: 0;
}

.form-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.register-form {
  display: grid;
  gap: 12px;
}

/* Kurye / işyeri kayıt formları: iki sütun (yüksek özgüllük, üstüne yazılmasın) */
.form-card .register-form.register-form--2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  align-content: start;
}

.form-card .register-form.register-form--2col .register-form__field--full {
  grid-column: 1 / -1;
}

.form-card .register-form.register-form--2col > .btn,
.form-card .register-form.register-form--2col > button.btn {
  grid-column: 1 / -1;
}

/* Yalnızca çok dar ekranda tek sütun (çoğu telefon yatay / tablet 2 sütun kalır) */
@media (max-width: 380px) {
  .form-card .register-form.register-form--2col {
    grid-template-columns: 1fr;
  }
}

/* İşyeri / kurye kayıt: üç sütun + kompakt tipografi */
.form-layout:has(.register-form--3col) {
  width: min(1080px, 100%);
}

.form-card:has(.register-form--3col) {
  padding: 22px 22px 24px;
}

.form-card:has(.register-form--3col) h2 {
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  margin-bottom: 12px;
}

.form-card:has(.register-form--3col) .form-card-sub {
  font-size: 0.84rem;
  margin-bottom: 14px;
}

.form-card:has(.register-form--3col) .form-alert {
  font-size: 0.86rem;
  padding: 10px 12px;
}

.form-card .register-form.register-form--3col {
  display: grid;
  gap: 10px 12px;
  align-content: start;
  grid-template-columns: 1fr;
}

.form-card .register-form.register-form--3col .register-form__field--full {
  grid-column: 1 / -1;
}

.form-card .register-form.register-form--3col > .btn,
.form-card .register-form.register-form--3col > button.btn {
  grid-column: 1 / -1;
}

@media (min-width: 560px) {
  .form-card .register-form.register-form--3col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .form-card .register-form.register-form--3col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.form-card .register-form.register-form--3col label {
  font-size: 0.8rem;
  padding: 8px 10px;
  gap: 5px;
}

.form-card .register-form.register-form--3col input,
.form-card .register-form.register-form--3col textarea,
.form-card .register-form.register-form--3col select {
  padding: 8px 10px;
  font-size: 0.86rem;
}

.form-card .register-form.register-form--3col textarea {
  min-height: 72px;
}

.form-card .register-form.register-form--3col input[type="file"] {
  padding: 8px 10px;
  font-size: 0.82rem;
}

.form-card .register-form.register-form--3col input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 6px 11px;
  font-size: 0.8rem;
}

.form-card .register-form.register-form--3col > .btn,
.form-card .register-form.register-form--3col > button.btn {
  margin-top: 2px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.register-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #203854;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e6edf5;
  border-radius: 12px;
  padding: 10px 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.register-form label:focus-within {
  border-color: rgba(var(--accent-rgb), 0.65);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.16);
  transform: translateY(-1px);
}

.register-form input,
.register-form textarea,
.register-form select {
  width: 100%;
  border: 1px solid #cfd9e6;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  color: #223347;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.register-form input::placeholder,
.register-form textarea::placeholder {
  color: #95a3b4;
}

.register-form input:focus,
.register-form textarea:focus,
.register-form select:focus {
  outline: none;
  border-color: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.register-form textarea {
  resize: vertical;
  min-height: 88px;
}

.register-form input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
}

.register-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  background: #f8fafc;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.register-form input[type="file"]::file-selector-button:hover {
  background: #eef2f7;
}

.register-form button {
  width: 100%;
  margin-top: 4px;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.dispatch-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: start;
}

.dispatch-list-panel,
.dispatch-map-panel {
  background: #fff;
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(var(--primary-rgb), 0.08);
  overflow: hidden;
}

.panel-head {
  padding: 16px 16px 12px;
  border-bottom: 1px solid #ebeff5;
}

.panel-head h2 {
  margin: 0;
  font-size: 1.12rem;
}

.panel-head p {
  margin: 6px 0 0;
  color: #5e6d7f;
  font-size: 0.92rem;
}

.courier-list {
  max-height: 560px;
  overflow-y: auto;
  padding: 8px;
}

.courier-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 8px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.courier-item:hover,
.courier-item.is-active {
  border-color: rgba(var(--accent-rgb), 0.65);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.1);
}

.courier-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.18);
}

.courier-avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #334155;
}

.courier-tooltip-letter {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  background: #fed7aa;
  color: #9a3412;
}

.courier-modal-profile .courier-avatar--initials {
  width: 62px;
  height: 62px;
  font-size: 1.1rem;
}

.courier-modal-phone {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.dispatch-request-card {
  margin-top: 28px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e6edf5;
  background: #fafbfc;
  max-width: 720px;
}

.dispatch-request-card h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.dispatch-request-card > p {
  margin: 0 0 16px;
  color: #6a7888;
  font-size: 0.9rem;
}

.dispatch-request-form .field {
  margin-bottom: 14px;
}

.dispatch-request-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.dispatch-request-form textarea,
.dispatch-request-form input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dbe4ee;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.dispatch-request-form textarea {
  min-height: 88px;
  resize: vertical;
}

.dispatch-request-hint {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.dispatch-request-hint--ok {
  color: #15803d;
}

.dispatch-request-hint--err {
  color: #b91c1c;
}

.courier-main {
  min-width: 0;
}

.courier-name {
  display: block;
  font-weight: 700;
  color: #223347;
}

.courier-meta {
  display: block;
  color: #6a7888;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.courier-distance {
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 0.86rem;
}

.courier-map {
  width: 100%;
  height: 560px;
  position: relative;
  z-index: 1;
}

.courier-map .leaflet-pane,
.courier-map .leaflet-control,
.courier-map .leaflet-top,
.courier-map .leaflet-bottom {
  z-index: 10 !important;
}

.leaflet-tooltip.courier-tooltip {
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.18);
}

.courier-tooltip-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.courier-tooltip-content img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.courier-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(14, 20, 30, 0.55);
  display: grid;
  place-items: center;
  padding: 16px;
}

.courier-modal-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  position: relative;
}

.courier-modal-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: #607184;
}

.courier-modal-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.courier-modal-profile img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.courier-modal-profile h3 {
  margin: 0;
}

.courier-modal-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.courier-modal-field {
  border: 1px solid #e6edf5;
  border-radius: 10px;
  padding: 8px 10px;
}

.courier-modal-field b {
  display: block;
  font-size: 0.75rem;
  color: #6a7888;
  margin-bottom: 4px;
}

.courier-modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

@media (min-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card {
    transition: none;
  }

  .feature-card:hover {
    transform: none;
  }

  .hero-bg-slide {
    animation: none;
    opacity: 0;
  }

  .hero-bg-slide:first-child {
    opacity: 1;
  }

  .store-btn--cta:hover {
    transform: none;
  }
}

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

  .hire-horizontal {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hire-hoz-ribbon {
    min-height: 36px;
    padding: 6px 0;
  }

  .hire-hoz-chevron {
    transform: rotate(45deg);
    margin-left: 0;
    margin-top: -4px;
  }

  .cta-download-grid {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: min(640px, 100%);
  }

  .cta-download-visual {
    justify-self: center;
    max-width: none;
  }

  .cta-download-copy {
    text-align: center;
  }

  .cta-download h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }

  .cta-download-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-download-perks {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-download-stores {
    justify-content: center;
  }

  .cta-download-foot {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-download-glow {
    left: 50%;
    top: 35%;
  }

  .dispatch-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
    max-width: 40ch;
  }
}

@media (max-width: 768px) {
  body.header-nav-open {
    overflow: hidden;
  }

  .header-menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .header-menu-toggle:checked + .header-menu-btn,
  body.header-nav-open .header-menu-btn {
    position: relative;
    z-index: 10;
  }

  .header-menu-btn {
    display: inline-flex;
  }

  .header-menu-toggle:checked + .header-menu-btn .header-menu-btn__bar:nth-child(1),
  body.header-nav-open .header-menu-btn .header-menu-btn__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header-menu-toggle:checked + .header-menu-btn .header-menu-btn__bar:nth-child(2),
  body.header-nav-open .header-menu-btn .header-menu-btn__bar:nth-child(2) {
    opacity: 0;
  }

  .header-menu-toggle:checked + .header-menu-btn .header-menu-btn__bar:nth-child(3),
  body.header-nav-open .header-menu-btn .header-menu-btn__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header .header-backdrop {
    display: none;
  }

  .header-menu-toggle:checked ~ .header-backdrop,
  .site-header .header-backdrop:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }

  .header-actions {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 100%);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: calc(58px + 20px) 20px 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    background: var(--primary-dark);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.28);
    z-index: 3;
    transform: translateX(100%);
    transition: transform 0.26s ease;
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: nowrap;
    color: #fff;
    visibility: visible;
    opacity: 1;
  }

  .header-menu-toggle:checked ~ .header-actions,
  body.header-nav-open .header-actions {
    display: flex !important;
    transform: translateX(0);
  }

  .header-actions,
  .header-actions * {
    visibility: visible;
  }

  .header-nav {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    gap: 0;
  }

  .header-nav a {
    display: block;
    color: rgba(255, 255, 255, 0.94);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.94);
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    border-radius: 0;
  }

  .header-nav a:hover {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.07);
  }

  .header-actions .btn-header-login {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .login-type-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .dispatch-hero {
    padding: 30px 0 22px;
  }

  .features,
  .about,
  .cta {
    padding: 54px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .form-layout {
    grid-template-columns: 1fr;
    width: min(640px, 100%);
    gap: 16px;
  }

  .form-layout:has(.register-form--3col) {
    width: min(640px, 100%);
  }

  .dispatch-layout {
    grid-template-columns: 1fr;
  }

  .courier-map {
    height: 420px;
  }

  .courier-modal-grid {
    grid-template-columns: 1fr;
  }

  .hire-hoz-card {
    padding: 18px 16px 20px;
  }

  .hire-hoz-title {
    font-size: 1rem;
  }

  .hire-mock-row--pool {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hire-pool-status {
    margin-left: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 40px 0 32px;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}

/* =====================================================================
   Ana sayfa (index.php) — mobil / dar ekran (sayfa paletiyle uyumlu)
   ===================================================================== */

@media (max-width: 950px) {
  .hero-content {
    max-width: 38rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
    max-width: 42ch;
  }

  .store-buttons {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero-grid {
    gap: 22px 16px;
  }

  /* Önce vitrin telefonu: dar ekranda görsel çekici, metin hemen altında */
  .hero-visual {
    order: -1;
  }

  .hero-phone-wrap {
    width: min(272px, 86vw);
  }

  .phone--iphone.hero-phone {
    border-radius: 36px;
  }

  .features,
  .about,
  .cta {
    padding: 48px 0;
  }

  .how-head {
    margin-bottom: clamp(22px, 5vw, 36px);
  }

  .how-head h2 {
    font-size: clamp(1.32rem, 5.2vw, 1.82rem);
  }

  .how-head-sub {
    font-size: 0.93rem;
    line-height: 1.55;
  }
}

@media (max-width: 768px) {
  body {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }

  .site-header .header-inner {
    min-height: 54px;
  }

  #kurye-cagir,
  #isyeri-olustur,
  #about,
  #download,
  #referanslar {
    scroll-margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 94%);
  }

  .cta-download .cta-soon {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .cta-download h2 {
    font-size: clamp(1.28rem, 5.2vw, 1.72rem);
  }

  .cta-download-lead {
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .cta-download-perks {
    max-width: none;
    width: 100%;
  }

  .cta-download-perks li {
    font-size: 0.9rem;
    gap: 10px;
  }

  .cta-download-perk-icon {
    width: 26px;
    height: 26px;
  }

  .cta-download-store-block {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .cta-download-foot {
    font-size: 0.9rem;
    max-width: none;
    line-height: 1.55;
  }

  .cta-download-visual-caption {
    font-size: 0.78rem;
    line-height: 1.5;
    max-width: min(100%, 340px);
  }

  .cta-download-phone {
    border-radius: 34px;
  }

  .ref-clients__sub {
    font-size: 0.86rem;
    max-width: 46ch;
  }

  .ref-clients {
    padding: 36px 0 32px;
  }
}

@media (max-width: 400px) {
  .hero {
    padding: 42px 0 52px;
  }

  .hero-label {
    font-size: 10px;
    padding: 5px 9px;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .hero-text {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-phone-wrap {
    width: min(252px, 84vw);
  }

  .phone--iphone.hero-phone .phone-inlay-btn {
    font-size: 0.7rem;
    padding: 9px 8px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  .store-btn {
    width: 100%;
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .store-btn--cta {
    width: 100%;
    min-width: 0;
  }

  .cta-download-stores {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .brand-name {
    font-size: 0.84rem;
  }
}

@media (max-width: 380px) {
  .ref-clients__viewport--grid {
    --ref-cols: 3;
    --ref-gap: 6px;
    padding: 6px;
    max-height: min(520px, 62vh);
  }
}

/* İşyeri oluştur / kurye olun — kayıt formları mobil */
@media (max-width: 640px) {
  .isyeri-public-body .form-page .form-hero,
  .kurye-public-body .form-page .form-hero {
    padding: 40px 0 32px;
  }

  .isyeri-public-body .form-section,
  .kurye-public-body .form-section {
    padding: 24px 0 48px;
  }

  .isyeri-public-body .form-card:has(.register-form--3col),
  .kurye-public-body .form-card:has(.register-form--3col) {
    padding: 16px 14px 20px;
  }

  .isyeri-public-body .form-layout:has(.register-form--3col),
  .kurye-public-body .form-layout:has(.register-form--3col) {
    gap: 14px;
  }

  .isyeri-public-body .form-page .hero.form-hero h1,
  .kurye-public-body .form-page .hero.form-hero h1 {
    font-size: clamp(1.32rem, 5.5vw, 1.82rem);
  }

  .isyeri-public-body .form-page .hero.form-hero p,
  .kurye-public-body .form-page .hero.form-hero p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .isyeri-public-body .form-card:has(.register-form--3col) h2,
  .kurye-public-body .form-card:has(.register-form--3col) h2 {
    font-size: clamp(1.02rem, 4.5vw, 1.16rem);
  }

  .isyeri-public-body .form-card .register-form.register-form--3col label,
  .kurye-public-body .form-card .register-form.register-form--3col label {
    font-size: 0.76rem;
    padding: 7px 9px;
    gap: 4px;
  }

  .isyeri-public-body .form-card .register-form.register-form--3col input,
  .isyeri-public-body .form-card .register-form.register-form--3col textarea,
  .isyeri-public-body .form-card .register-form.register-form--3col select,
  .kurye-public-body .form-card .register-form.register-form--3col input,
  .kurye-public-body .form-card .register-form.register-form--3col textarea,
  .kurye-public-body .form-card .register-form.register-form--3col select {
    font-size: 0.84rem;
    padding: 10px 10px;
    min-height: 44px;
  }

  .isyeri-public-body .form-card .register-form.register-form--3col textarea,
  .kurye-public-body .form-card .register-form.register-form--3col textarea {
    min-height: 80px;
  }

  .isyeri-public-body .form-card .register-form.register-form--3col > .btn,
  .isyeri-public-body .form-card .register-form.register-form--3col > button.btn,
  .kurye-public-body .form-card .register-form.register-form--3col > .btn,
  .kurye-public-body .form-card .register-form.register-form--3col > button.btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.88rem;
  }
}

/* Yönetici girişi — admin/login.php (ortak login stillerine ek) */
@media (max-width: 900px) {
  .admin-login-page .login-page-main__grid {
    max-width: min(440px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .admin-login-page .login-page-hero__lead {
    max-width: min(36ch, 100%);
  }
}

@media (max-width: 480px) {
  .admin-login-page .login-page-main__grid {
    max-width: none;
  }

  .admin-login-page .form-card.login-card .form-alert--warn {
    font-size: 0.78rem;
    line-height: 1.52;
    padding: 10px 11px;
    overflow-wrap: anywhere;
  }

  .admin-login-page .login-aside-card__lead {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .admin-login-page .login-aside-card__lead a {
    font-weight: 700;
    overflow-wrap: anywhere;
  }
}

/* Header hamburger rebuilt: single source of truth */
@media (max-width: 900px) {
  .site-header {
    position: relative !important;
    z-index: 4000;
    isolation: auto;
  }

  #headerMenuBtn {
    display: inline-flex !important;
    position: relative;
    z-index: 4300;
  }

  body.header-nav-open #headerMenuBtn .header-menu-btn__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.header-nav-open #headerMenuBtn .header-menu-btn__bar:nth-child(2) {
    opacity: 0;
  }

  body.header-nav-open #headerMenuBtn .header-menu-btn__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #headerBackdrop {
    display: none;
  }

  #headerBackdrop:not([hidden]) {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: min(320px, 100%);
    z-index: 4100;
    background: rgba(0, 0, 0, 0.12);
    pointer-events: auto;
  }

  #headerDrawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 100%);
    max-width: 100%;
    height: 100dvh;
    margin: 0;
    padding: calc(58px + 20px) 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    background: var(--primary-dark);
    box-shadow: none;
    z-index: 4200;
    transform: translateX(100%);
    transition: transform 0.26s ease;
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: auto;
    isolation: isolate;
  }

  body.header-nav-open #headerDrawer {
    transform: translateX(0);
  }

  #headerDrawer .header-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: none;
  }

  #headerDrawer .header-nav a {
    display: block;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.94);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.94);
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    border-radius: 0;
  }

  #headerDrawer .btn-header-login {
    display: inline-flex;
    position: relative;
    z-index: 1;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

/* Site duyurusu (işyeri / kurye panelleri) */
.kg-announcement-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.kg-announcement-overlay[hidden] {
  display: none !important;
}

.kg-announcement-dialog {
  width: min(520px, 100%);
  max-height: min(80vh, 560px);
  overflow: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  padding: 18px 20px 16px;
}

.kg-announcement-dialog__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 12px;
  min-height: 0;
}

.kg-announcement-dialog__logo {
  display: block;
  max-height: 40px;
  width: auto;
  max-width: min(200px, 88%);
  height: auto;
  object-fit: contain;
}

.kg-announcement-dialog__title {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
}

.kg-announcement-dialog__body {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
  white-space: pre-wrap;
  word-break: break-word;
}

.kg-announcement-dialog__actions {
  display: flex;
  justify-content: flex-end;
}

.kg-announcement-dialog__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
}

.kg-announcement-dialog__btn:hover {
  filter: brightness(1.05);
}

.kg-announcement-dialog__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

html.kg-announcement-open {
  overflow: hidden;
}
