/* Karakaya26 — koyu tema (ChatGPT’ye yakın nötr gri tonlar) */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap");

:root {
  color-scheme: dark;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --bg: #212121;
  --bg-raised: #2f2f2f;
  --bg-input: #2f2f2f;
  --bg-muted: #323232;
  --text: #ececec;
  --text-soft: #c4c4c4;
  --muted: #9b9b9b;
  --surface: #2f2f2f;
  --surface-solid: #2f2f2f;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 12px;
  --radius-sm: 10px;
  /* Açık düğme / vurgu (ChatGPT gönder benzeri) */
  --accent: #ececec;
  --accent-deep: #ffffff;
  --accent-on: #0d0d0d;
  --accent-soft: rgba(255, 255, 255, 0.08);
  --indigo: #a8a8a8;
  --violet: #d4d4d4;
  --cyan: #5eead4;
  --fuchsia: #737373;
  --emerald: #34d399;
  --amber: #fbbf24;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.35), 0 8px 28px rgba(0, 0, 0, 0.3);
  --glow: 0 0 20px rgba(255, 255, 255, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.app {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  min-height: 100vh;
  background-color: var(--bg);
  background-image: none;
  -webkit-font-smoothing: antialiased;
}

body.app-auth {
  background-color: var(--bg);
  background-image: none;
}

body.app-auth .auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
}

body.app-auth .page-title {
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

body.app-auth .sub {
  color: var(--muted);
}

body.app-auth .footer-auth {
  color: rgba(255, 255, 255, 0.55);
}

a {
  color: #d4d4d4;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--accent-deep);
}

/* Üst bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(33, 33, 33, 0.96);
  border-bottom: 1px solid var(--border);
  --topbar-offset: 56px;
}

.topbar.is-nav-open {
  z-index: 9000;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1002;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: transform 0.2s ease;
  min-width: 0;
  flex: 1;
}
.logo:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.logo__img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  box-shadow: none;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--text);
}

.logo-icon::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.95;
}

/* Masaüstü: menü satırı */
.topbar-menu-btn {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-raised);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.topbar-menu-btn:hover {
  background: var(--bg-muted);
  border-color: var(--border-strong);
}

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

.topbar-menu-btn__bars {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  position: relative;
  transition: background 0.2s ease;
}

.topbar-menu-btn__bars::before,
.topbar-menu-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}

.topbar-menu-btn__bars::before {
  top: -7px;
}

.topbar-menu-btn__bars::after {
  top: 7px;
}

.topbar.is-nav-open .topbar-menu-btn__bars {
  background: transparent;
}

.topbar.is-nav-open .topbar-menu-btn__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.topbar.is-nav-open .topbar-menu-btn__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.topbar-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--topbar-offset);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  -webkit-tap-highlight-color: transparent;
}

.topbar-backdrop[hidden] {
  display: none !important;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
}

.topbar-nav.nav {
  flex: 0 1 auto;
  margin-left: auto;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.nav-out {
  color: var(--text-soft) !important;
  background: var(--bg-raised) !important;
  border: 1px solid var(--border-strong) !important;
}
.nav-out:hover {
  background: var(--bg-muted) !important;
  color: var(--text) !important;
}

@media (max-width: 900px) {
  .topbar-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo {
    flex: 1;
  }

  .topbar-menu-btn {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .topbar-nav.nav {
    order: 3;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--topbar-offset);
    bottom: 0;
    max-height: calc(100dvh - var(--topbar-offset));
    margin: 0;
    margin-left: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 4px;
    padding: 10px 16px max(20px, env(safe-area-inset-bottom));
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 1001;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, visibility 0.24s;
  }

  .topbar.is-nav-open .topbar-nav.nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .topbar-nav.nav a {
    text-align: left;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .topbar-nav.nav a:last-child {
    border-bottom: none;
  }

  .topbar-nav.nav .nav-out {
    margin-top: 8px;
    text-align: center;
    border: 1px solid var(--border-strong) !important;
  }
}

@media (min-width: 901px) {
  .topbar-backdrop {
    display: none !important;
  }

  .topbar-nav.nav {
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    max-height: none !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    box-shadow: none !important;
    overflow: visible !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }
}

.main {
  min-height: calc(100vh - 140px);
  padding: 40px 24px 72px;
}

.main .container {
  color: var(--text);
}

.container {
  max-width: min(920px, 94vw);
  margin: 0 auto;
  width: 100%;
}

/* Araç sayfaları: tablolar ve formlar için geniş sütun */
.container.container--blog {
  max-width: min(1180px, 96vw);
}

@media (min-width: 1200px) {
  .container.container--blog {
    max-width: min(1280px, 96vw);
  }
}

@media (min-width: 1440px) {
  .container.container--blog {
    max-width: min(1360px, 97vw);
  }
}

.container.container--blog .sub {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

/* Özet (dashboard): geniş alanda içerik yarım görünmesin */
.container.dashboard > .page-title {
  text-align: center;
}

.container.dashboard .sub {
  text-align: center;
  max-width: min(36rem, 100%);
}

.arac-seo {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.arac-seo__title {
  font-size: 1.28rem;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

.arac-seo__body {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.arac-seo__body p {
  margin: 0 0 16px;
}

.arac-seo__body p:last-child {
  margin-bottom: 0;
}

.arac-seo__body strong {
  color: var(--text);
  font-weight: 600;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
  line-height: 1.15;
  color: var(--text);
}

.sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 auto 36px;
  max-width: min(40rem, 100%);
  line-height: 1.5;
}

/* Kartlar */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-strong);
  border-radius: var(--radius) var(--radius) 0 0;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.gtrends-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.gtrends-card__hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.55;
  max-width: 46rem;
}

.gtrends-card__hint code {
  font-size: 0.85em;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--bg-elevated, rgba(0, 0, 0, 0.06));
  border: 1px solid var(--border);
}

.gtrends-form {
  margin-top: 4px;
}

.gtrends-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.gtrends-out {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.gtrends-uyari {
  font-size: 0.84rem;
  margin: 0 0 14px;
  line-height: 1.5;
}

.gtrends-kw {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.gtrends-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .gtrends-grid {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}

.gtrends-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.gt-bar-row {
  display: grid;
  grid-template-columns: minmax(72px, 100px) 1fr 36px;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
}

.gt-bar-label {
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gt-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gt-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: #9ca3af;
  min-width: 2px;
  transition: width 0.35s ease;
}

.gt-bar-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--text-soft);
}

.gtrends-side__h {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 8px;
}

.gtrends-ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.gtrends-side__blk + .gtrends-side__blk {
  margin-top: 16px;
}

label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  margin-bottom: 20px;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: var(--accent-on);
  background: var(--accent);
  box-shadow: none;
  transition: transform 0.15s ease, background 0.2s ease, opacity 0.2s ease;
}
.btn:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.btn-secondary {
  background: var(--bg-raised);
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.btn-secondary:hover {
  background: var(--bg-muted);
  color: var(--text);
}

.flash {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text-soft);
}

.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(244, 63, 94, 0.08));
  border-color: rgba(239, 68, 68, 0.35);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.stat {
  background: var(--surface);
  padding: 20px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.stat:nth-child(4n + 1)::after {
  background: var(--accent);
}
.stat:nth-child(4n + 2)::after {
  background: var(--cyan);
}
.stat:nth-child(4n + 3)::after {
  background: #475569;
}
.stat:nth-child(4n)::after {
  background: #94a3b8;
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th,
td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
}
th {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

.badge {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-bekliyor {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}
.badge-isleniyor {
  background: linear-gradient(135deg, #dbeafe, #93c5fd);
  color: #1e40af;
}
.badge-tamamlandi {
  background: linear-gradient(135deg, #d1fae5, #6ee7b7);
  color: #065f46;
}
.badge-hatali {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
}

.auth-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 20px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
}

.footer {
  text-align: center;
  padding: 28px 24px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.footer strong {
  color: var(--text);
  font-weight: 700;
}

.output-box {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.9rem;
  line-height: 1.55;
  max-height: 480px;
  overflow-y: auto;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

.output-box--tool {
  padding-top: 12px;
}

.output-box--tool .output-body {
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 420px;
  overflow-y: auto;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.output-body--html {
  white-space: normal;
}

.site-analiz-wrap .output-toolbar {
  margin-bottom: 0;
}

.site-analiz-wrap .output-body--html {
  max-height: none;
  overflow: visible;
  border-top: 1px solid var(--border);
  margin-top: 10px;
  padding-top: 14px;
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
}

.tool-loading {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
  border: 1px solid var(--border);
}

.tool-loading[hidden] {
  display: none !important;
}

.tool-loading__title {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.tool-loading__track {
  height: 5px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  overflow: hidden;
}

.tool-loading__bar {
  height: 100%;
  width: 38%;
  border-radius: 999px;
  background: #9ca3af;
  animation: tool-loading-slide 1.15s ease-in-out infinite;
}

@keyframes tool-loading-slide {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

.tool-loading__hint {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Marka domain bulucu */
.domain-filter-bar {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.domain-check--filter {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.domain-empty-filter {
  margin: 16px 0 0;
  padding: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.domain-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}

.domain-uyari {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.domain-card {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.domain-card--musait {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12);
}

.domain-card--dolu {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.08);
}

.domain-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.domain-card__name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  word-break: break-all;
}

.domain-card__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

/* Üzerine gelince / odakta açıklama kutusu (data-hint) */
.domain-card__hint {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  outline-offset: 3px;
}

.domain-card__hint--rozet {
  padding: 2px 3px;
  border-radius: 4px;
  line-height: 1;
}

.domain-card__hint--rozet:hover,
.domain-card__hint--rozet:focus-visible {
  background: rgba(15, 23, 42, 0.06);
}

.domain-card__hint::after {
  content: attr(data-hint);
  position: absolute;
  z-index: 80;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  white-space: normal;
  width: max-content;
  max-width: min(288px, 78vw);
  text-align: left;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.domain-card__hint:hover::after,
.domain-card__hint:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Kartın soluna yakınsa ortalamayı hafif düzelt */
@media (max-width: 420px) {
  .domain-card__hint::after {
    left: 0;
    transform: translateX(0) translateY(6px);
    max-width: min(260px, 88vw);
  }

  .domain-card__hint:hover::after,
  .domain-card__hint:focus-visible::after {
    transform: translateX(0) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .domain-card__hint::after {
    transition: none;
  }
}

.domain-card__yz {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  flex-shrink: 0;
}

.domain-card__grup {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-muted, #64748b);
  flex-shrink: 0;
}

.domain-card__grup.domain-card__hint::after {
  font-weight: 500;
}

.domain-card__rozetler {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.domain-card__ai-aciklama {
  margin: 0 0 10px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted, #64748b);
}

.domain-card__durum {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.domain-card--musait .domain-card__durum {
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
}

.domain-card--dolu .domain-card__durum {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.domain-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.domain-card__skor {
  font-weight: 600;
  cursor: help;
}

.domain-card__cache {
  font-size: 0.75rem;
}

.domain-card__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  overflow: hidden;
}

.domain-card__bar-fill {
  height: 100%;
  border-radius: 999px;
  background: #a3a3a3;
  transition: width 0.35s ease;
}

.domain-card--musait .domain-card__bar-fill {
  background: var(--emerald);
}

.domain-card__actions {
  margin-top: 4px;
}

.domain-card__fav.is-fav {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(251, 191, 36, 0.2));
  border: 1px solid rgba(245, 158, 11, 0.4);
}

#f-domain label[for="domain-konu"] {
  margin-top: 14px;
}

.domain-konu-input {
  display: block;
  width: 100%;
  min-height: 5.5rem;
  margin-top: 0;
  margin-bottom: 2px;
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  resize: vertical;
}

.domain-konu-input::placeholder {
  color: var(--muted, #94a3b8);
}

.rakip-sure-notu {
  margin: 14px 0 0;
  font-size: 0.84rem;
}

.rakip-report-wrap {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.rakip-report__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.rakip-report__exec {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 14px;
  color: var(--text-soft);
}

.rakip-report__callout {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-soft);
}

.rakip-report__callout--warn {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.35);
}

.rakip-cse-etiket {
  margin: -8px 0 16px;
  font-size: 0.85rem;
}

.rakip-cse-uyari {
  margin-top: -6px;
  margin-bottom: 14px;
}

.rakip-cse-basliklar-etiket {
  font-size: 0.82rem;
  margin: 8px 0 4px;
  font-weight: 600;
}

.rakip-cse-baslik-list {
  margin: 0 0 12px 1rem;
  padding: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-soft);
  list-style: disc;
}

.rakip-details {
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.rakip-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 8px;
}

.rakip-tarama-blok {
  margin: 10px 0 14px;
  padding: 10px 12px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.rakip-tarama-host {
  margin: 0 0 6px;
  font-size: 0.86rem;
}

.rakip-url-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.78rem;
  line-height: 1.45;
  word-break: break-all;
}

.rakip-section {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.rakip-section:last-child {
  border-bottom: none;
}

.rakip-section--accent {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(6, 182, 212, 0.05));
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.rakip-section--warn {
  background: rgba(245, 158, 11, 0.06);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.rakip-section--tables {
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.rakip-table-section__title {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 18px 0 8px;
  color: var(--text);
}

.rakip-section--tables .rakip-table-section__title:first-of-type {
  margin-top: 4px;
}

.rakip-table-wrap {
  overflow-x: auto;
  margin-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.rakip-data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.rakip-data-table th,
.rakip-data-table td {
  border: 1px solid var(--border);
  padding: 9px 11px;
  text-align: left;
  vertical-align: top;
}

.rakip-data-table th {
  background: var(--surface);
  font-weight: 600;
  color: var(--text);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.rakip-data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.rakip-ul--compact {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.82rem;
}

.rakip-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--surface);
  border: 1px solid var(--border);
}

.rakip-tag--risk {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.35);
  color: #b91c1c;
}

.rakip-tag--firsat {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.35);
  color: #047857;
}

.rakip-section__h {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.rakip-section__sub {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 12px 0 6px;
}

.rakip-ul,
.rakip-ol {
  margin: 0 0 8px;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.rakip-brief__one {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 14px;
  color: var(--text);
}

.rakip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

.rakip-card {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.rakip-card__t {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 6px;
}

.rakip-card__m {
  font-size: 0.78rem;
  color: var(--muted);
}

.domain-fieldset {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
}

.domain-fieldset legend {
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0 6px;
}

.domain-check,
.domain-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
}

.domain-check input,
.domain-radio input {
  margin-top: 4px;
  flex-shrink: 0;
}

.domain-card__pick {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
  margin-top: 4px;
}

.domain-card__pick input {
  cursor: pointer;
}

.tool-grid {
  display: grid;
  gap: 14px;
}

.container.container--blog .tool-grid {
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
}

.tool-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.tool-link::before {
  content: "";
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #334155;
  box-shadow: none;
}

.tool-link:nth-child(3n + 2)::before {
  background: var(--accent);
}
.tool-link:nth-child(3n)::before {
  background: #0f766e;
}

.tool-link:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: var(--text);
}

details summary {
  font-weight: 600;
}

/* Misafir: üyelik çağrısı */
.guest-cta {
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}

.guest-cta--soft {
  background: var(--bg-muted);
}

.guest-cta-inner {
  max-width: 640px;
}

.guest-cta-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.guest-cta-text {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.guest-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

fieldset.guest-frozen {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

fieldset.guest-frozen:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

fieldset.guest-frozen:disabled .btn {
  pointer-events: none;
  filter: grayscale(0.2);
}

.guest-feature-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.guest-feature-list li {
  margin-bottom: 6px;
}

/* —— Site analizi (görsel rapor) —— */
.site-analiz-wrap {
  margin-top: 22px;
  padding: 0;
  max-height: none;
  overflow: visible;
  background: transparent;
  border: none;
}

.sa-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.sa-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.sa-url {
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: var(--muted);
  word-break: break-all;
}

.sa-lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.sa-genel-wrap {
  flex-shrink: 0;
}

.sa-genel-ring {
  --p: 0;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: conic-gradient(
    from -90deg,
    var(--accent) 0deg,
    var(--accent) calc(var(--p) * 3.6deg),
    rgba(255, 255, 255, 0.12) calc(var(--p) * 3.6deg)
  );
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.sa-genel-ring::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--surface-solid);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.sa-genel-num {
  position: relative;
  z-index: 1;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.sa-genel-sub {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

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

.sa-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.sa-panel--full {
  grid-column: 1 / -1;
}

.sa-panel--half {
  min-width: 0;
}

.sa-h3 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.sa-donut-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.sa-donut {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 12px var(--surface-solid), 0 4px 20px rgba(15, 23, 42, 0.08);
}

.sa-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 180px;
}

.sa-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}

.sa-legend li:last-child {
  border-bottom: 0;
}

.sa-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sa-leg-label {
  flex: 1;
  color: var(--text-soft);
}

.sa-leg-val {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.sa-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sa-bar-row {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) 4fr 40px;
  gap: 10px;
  align-items: center;
  font-size: 0.85rem;
}

.sa-bar-name {
  color: var(--text-soft);
  font-weight: 500;
}

.sa-bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.sa-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.35s ease;
}

.sa-bar-num {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.sa-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.sa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.sa-table th,
.sa-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.sa-table th {
  background: var(--bg-muted);
  font-weight: 600;
  color: var(--text);
}

.sa-table tr:last-child td {
  border-bottom: 0;
}

.sa-badge {
  display: inline-block;
  min-width: 2.5rem;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
}

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

.sa-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.9rem;
}

.sa-panel--pos .sa-h3 {
  color: var(--emerald);
}

.sa-panel--warn .sa-h3 {
  color: #ea580c;
}

.sa-panel--action .sa-h3 {
  color: var(--indigo);
}

.sa-limit {
  margin: 16px 0 0;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(100, 116, 139, 0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--muted);
}

.sa-panel--facts {
  background: var(--bg-raised);
  border-color: rgba(94, 234, 212, 0.2);
}

.sa-panel--seo {
  border-color: rgba(255, 255, 255, 0.12);
}

.sa-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 12px;
}

.sa-fact {
  padding: 12px 14px;
  background: var(--surface-solid);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.sa-fact-k {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 6px;
}

.sa-fact strong {
  font-size: 1.15rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.sa-facts-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.sa-table--facts th {
  width: 38%;
  max-width: 200px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-soft);
  vertical-align: top;
}

.sa-table--facts td {
  font-size: 0.86rem;
  color: var(--text);
}

.sa-muted {
  color: var(--muted);
  font-size: 0.82rem;
}

.sa-panel--shot {
  border-color: rgba(100, 116, 139, 0.25);
}

/* Küçük önizleme: sabit dikdörtgen, üst kısım odaklı kırpma */
.sa-shot-wrap {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.sa-shot-frame {
  width: 300px;
  max-width: min(100%, 320px);
  height: 168px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f172a;
  line-height: 0;
  box-shadow: var(--shadow);
}

.sa-shot-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.sa-panel--sec .sa-table th {
  width: 42%;
}

.sa-mini {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.sa-pre {
  margin: 10px 0 0;
  padding: 12px 14px;
  font-size: 0.72rem;
  line-height: 1.45;
  background: var(--bg);
  border-radius: 8px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 160px;
  overflow-y: auto;
}

.sa-list--tight {
  margin-top: 8px;
  font-size: 0.82rem;
}

.sa-list--tight li {
  margin-bottom: 4px;
}

/* Ana sayfa: assets/css/home-landing.css + panel.css (.idx2) */

@media (max-width: 768px) {
  .sa-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sa-genel-wrap {
    justify-self: center;
  }

  .sa-grid-visual,
  .sa-grid-lists {
    grid-template-columns: 1fr;
  }

  .sa-bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sa-bar-num {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Google organik sıra (harici SERP API) */
.serp-rank-out .serp-rank-highlight {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.serp-rank-out .serp-rank-miss {
  color: var(--text-soft, #64748b);
  margin-bottom: 0.75rem;
}

.serp-rank-table-title {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.serp-rank-out .table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-top: 0.5rem;
}

.serp-rank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.serp-rank-table th,
.serp-rank-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.serp-rank-table th {
  background: var(--bg-muted);
  font-weight: 600;
}

.serp-rank-url {
  word-break: break-word;
  max-width: min(22rem, 50vw);
}

.zorluk-ozet {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: var(--bg-muted);
  border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.zorluk-ozet__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.zorluk-ozet__line {
  margin: 0.35rem 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.zorluk-ozet__stats {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.zorluk-bl {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.zorluk-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.zorluk-badge--zor {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

.zorluk-badge--orta {
  background: rgba(217, 119, 6, 0.15);
  color: #c2410c;
}

.zorluk-badge--kolay {
  background: rgba(5, 150, 105, 0.14);
  color: #047857;
}

.zorluk-uyari {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 0.9rem;
}

.zorluk-uyari ul {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
}

.zorluk-ai-h {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
}

.zorluk-ai {
  font-size: 0.95rem;
  line-height: 1.65;
  white-space: pre-wrap;
}

.zorluk-table td {
  font-size: 0.88rem;
  vertical-align: top;
}

form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
  font-size: 0.92rem;
  color: var(--text-soft, #64748b);
}

form .checkbox-row input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.sv-table .sv-months {
  font-size: 0.8rem;
  line-height: 1.5;
}

.sv-month-pill {
  display: inline-block;
  margin: 2px 4px 2px 0;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-muted);
  color: var(--text-soft, #64748b);
}

.sv-null {
  color: var(--text-soft, #94a3b8);
  font-style: italic;
}

.sv-cache-note {
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 0.9rem;
  color: var(--text);
}

.maps-filtre-fs {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 1rem 0;
}

.maps-filtre-fs legend {
  padding: 0 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.maps-inline-num {
  max-width: 6rem;
  margin: 0.35rem 0 0.75rem 1.5rem;
  display: block;
}

.maps-export-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 1.25rem;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.maps-export-hint {
  flex: 1 1 200px;
  font-size: 0.82rem;
  margin: 0;
}

.maps-leads-banner {
  margin: 0 0 0.75rem;
}

.maps-leads-stale {
  margin: 0 0 0.75rem;
}

.maps-leads-meta {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.maps-leads-h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.maps-leads-table .maps-td-tel {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.maps-leads-table .maps-td-adr {
  max-width: 14rem;
  font-size: 0.82rem;
  word-break: break-word;
}

/* Google sıra: kelime alanı altı kısa not */
form .sa-muted.maps-hint {
  margin-top: -0.35rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
