/*
===============================================================================
BIDGE YAYINLARI — GLOBAL DESIGN SYSTEM v4
===============================================================================
Production reference CSS for the Bidge Yayınları WordPress website.

PURPOSE
- One global visual system for the entire site.
- Standardize typography, cards, controls, files, pricing, process, people,
  announcements, FAQ, forms, tables, policy/legal blocks, metadata, states,
  CTA, compact footer strips and scroll-to-top.
- Include the approved "Icon Premium Node" component (Option #2).
- Preserve existing page compositions; do not use this file as a reason to
  rebuild layouts.

IMPORTANT
- All component classes are namespaced with .bidge-*.
- Avoid page-specific duplicated CSS.
- Existing approved Header and Footer remain separate global components.
===============================================================================
*/

/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */

:root {
  /* Brand */
  --bidge-orange: #ef7d00;
  --bidge-red: #e30613;
  --bidge-blue: #1f9dd8;
  --bidge-green: #109447;
  --bidge-yellow: #ffd60a;
  --bidge-purple: #7768ae;

  /* Neutral */
  --bidge-ink: #1d2730;
  --bidge-text: #394650;
  --bidge-muted: #6f7b84;
  --bidge-subtle: #8d979f;
  --bidge-line: #e5e9ec;
  --bidge-line-strong: #d8dee2;
  --bidge-soft: #f7f8f9;
  --bidge-soft-2: #fbfbfc;
  --bidge-white: #ffffff;

  /* Semantic */
  --bidge-success: #168354;
  --bidge-warning: #ad6900;
  --bidge-danger: #bd2832;
  --bidge-info: #277fa9;

  /* Typography */
  --bidge-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --bidge-body-size: 16px;
  --bidge-body-line: 1.65;
  --bidge-card-size: 14.5px;
  --bidge-card-line: 1.62;
  --bidge-small-size: 12.5px;
  --bidge-label-size: 10.5px;

  /* Radius */
  --bidge-radius-xs: 9px;
  --bidge-radius-sm: 12px;
  --bidge-radius-md: 16px;
  --bidge-radius-lg: 18px;
  --bidge-radius-xl: 24px;

  /* Shadow */
  --bidge-shadow-1: 0 8px 24px rgba(23, 32, 42, .045);
  --bidge-shadow-2: 0 16px 38px rgba(23, 32, 42, .075);
  --bidge-shadow-3: 0 24px 54px rgba(23, 32, 42, .115);

  /* Spacing */
  --bidge-card-pad: 26px;
  --bidge-section-gap: 72px;
  --bidge-max: 1200px;
}

/* ==========================================================================
   02. ACCESSIBLE BASE / TYPOGRAPHY
   ========================================================================== */

.bidge-scope {
  font-family: var(--bidge-font);
  color: var(--bidge-text);
  font-size: var(--bidge-body-size);
  line-height: var(--bidge-body-line);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.bidge-page-title,
.bidge-section-title,
.bidge-card-title,
.bidge-content-title {
  color: var(--bidge-ink);
}

.bidge-page-title {
  margin: 0 0 16px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
  font-weight: 670;
  letter-spacing: -.04em;
}

.bidge-section-title {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.09;
  font-weight: 650;
  letter-spacing: -.03em;
}

.bidge-card-title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.27;
  font-weight: 650;
  letter-spacing: -.015em;
}

.bidge-body {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--bidge-text);
}

.bidge-lead {
  font-size: 17.5px;
  line-height: 1.72;
  font-weight: 400;
  color: var(--bidge-muted);
}

.bidge-card-text {
  margin: 0;
  font-size: var(--bidge-card-size);
  line-height: var(--bidge-card-line);
  font-weight: 450;
  letter-spacing: 0;
  color: var(--bidge-muted);
}

.bidge-label {
  font-size: var(--bidge-label-size);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #9aa3aa;
}

.bidge-muted {
  color: var(--bidge-muted);
}

.bidge-link {
  color: var(--bidge-blue);
  font-weight: 650;
  text-decoration: none;
}

.bidge-link:hover {
  color: #167ba8;
}

.bidge-link:focus-visible,
.bidge-btn:focus-visible,
.bidge-chip:focus-visible,
.bidge-field:focus-visible,
.bidge-page:focus-visible,
.bidge-node:focus-visible,
.bidge-scrolltop:focus-visible {
  outline: 3px solid rgba(31, 157, 216, .22);
  outline-offset: 2px;
}

/* ==========================================================================
   03. LAYOUT UTILITIES
   ========================================================================== */

.bidge-wrap {
  width: min(var(--bidge-max), calc(100% - 42px));
  margin-inline: auto;
}

.bidge-section {
  padding-block: var(--bidge-section-gap);
}

.bidge-section--soft {
  background: var(--bidge-soft-2);
}

.bidge-grid-2,
.bidge-grid-3,
.bidge-grid-4,
.bidge-grid-6 {
  display: grid;
  gap: 18px;
}

.bidge-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bidge-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bidge-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bidge-grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.bidge-stack {
  display: grid;
  gap: 14px;
}

.bidge-row {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

/* ==========================================================================
   04. BUTTONS
   ========================================================================== */

.bidge-btn {
  min-height: 44px;
  padding: 0 15px;
  border-radius: 11px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12.5px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease;
}

.bidge-btn:hover {
  transform: translateY(-1px);
}

.bidge-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--bidge-orange), #f2982c);
  box-shadow: 0 8px 20px rgba(239, 125, 0, .18);
}

.bidge-btn--outline {
  background: #fff;
  border-color: var(--bidge-line-strong);
  color: #34414a;
}

.bidge-btn--soft {
  background: #f3f5f6;
  color: #34414a;
}

.bidge-btn--danger {
  background: #fff2f2;
  border-color: #f3cccc;
  color: var(--bidge-danger);
}

.bidge-btn[disabled],
.bidge-btn.is-disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   05. CHIPS / BADGES
   ========================================================================== */

.bidge-chip,
.bidge-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}

.bidge-chip {
  padding: 8px 10px;
  border: 1px solid var(--bidge-line);
  background: #fff;
  color: #53616a;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.bidge-chip:hover {
  border-color: #d3d9dd;
}

.bidge-chip.is-active {
  border-color: #f0c390;
  background: #fff8ef;
  color: #a85400;
}

.bidge-badge {
  padding: 6px 9px;
  background: #f2f4f5;
  color: #68747d;
  font-size: 11px;
  font-weight: 650;
}

.bidge-badge--success { background: #edf8f2; color: var(--bidge-success); }
.bidge-badge--info { background: #edf7fb; color: var(--bidge-info); }
.bidge-badge--warning { background: #fff6e8; color: var(--bidge-warning); }
.bidge-badge--danger { background: #fff0f1; color: var(--bidge-danger); }

/* ==========================================================================
   06. GLOBAL CARD FAMILY
   ========================================================================== */

.bidge-card,
.bidge-content-card,
.bidge-feature-card,
.bidge-policy-card {
  --bidge-accent: var(--bidge-blue);

  position: relative;
  border: 1px solid var(--bidge-line);
  border-radius: var(--bidge-radius-lg);
  background: #fff;
  padding: var(--bidge-card-pad);
  box-shadow: var(--bidge-shadow-1);
  overflow: hidden;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.bidge-card:hover,
.bidge-content-card:hover,
.bidge-feature-card:hover,
.bidge-policy-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bidge-shadow-2);
  border-color: #dbe0e4;
}

.bidge-card--accent::before,
.bidge-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--bidge-accent);
}

.bidge-feature-card {
  min-height: 215px;
  background:
    radial-gradient(
      circle at 90% 10%,
      color-mix(in srgb, var(--bidge-accent) 8%, transparent),
      transparent 27%
    ),
    #fff;
}

.bidge-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--bidge-accent) 9%, white);
  color: var(--bidge-accent);
  font-size: 16px;
  font-weight: 750;
  margin-bottom: 22px;
}

.bidge-card-link {
  display: inline-flex;
  margin-top: 15px;
  font-size: 12.5px;
  font-weight: 650;
  color: var(--bidge-accent);
  text-decoration: none;
}

.bidge-card--dark {
  background: #1c2730;
  color: #fff;
  border-color: #1c2730;
  box-shadow: var(--bidge-shadow-2);
}

.bidge-card--dark .bidge-card-title {
  color: #fff;
}

.bidge-card--dark .bidge-card-text {
  color: #c8d0d5;
}

.bidge-card--orange { --bidge-accent: var(--bidge-orange); }
.bidge-card--red { --bidge-accent: var(--bidge-red); }
.bidge-card--blue { --bidge-accent: var(--bidge-blue); }
.bidge-card--green { --bidge-accent: var(--bidge-green); }
.bidge-card--purple { --bidge-accent: var(--bidge-purple); }
.bidge-card--yellow { --bidge-accent: #b99600; }

.bidge-micro-code,
.bidge-policy-code,
.bidge-step-code {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: .06em;
  color: #a4acb2;
  text-transform: uppercase;
}

/* ==========================================================================
   07. ICON PREMIUM NODE — APPROVED OPTION #2
   ========================================================================== */

/*
Example:
<div class="bidge-node bidge-node--orange">
  <div class="bidge-node__icon">
    <svg ...></svg>
  </div>
  <div class="bidge-node__content">
    <strong class="bidge-node__title">Legal Entity</strong>
    <small class="bidge-node__meta">Registered publisher identity</small>
  </div>
</div>
*/

.bidge-node {
  --bidge-node-accent: var(--bidge-blue);

  min-width: 0;
  padding: 15px 17px;
  border: 1px solid var(--bidge-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--bidge-shadow-1);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.bidge-node:hover {
  transform: translateY(-3px);
  box-shadow: var(--bidge-shadow-2);
  border-color: color-mix(in srgb, var(--bidge-node-accent) 28%, var(--bidge-line));
}

.bidge-node__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: color-mix(in srgb, var(--bidge-node-accent) 10%, white);
  color: var(--bidge-node-accent);
}

.bidge-node__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.bidge-node__content {
  min-width: 0;
}

.bidge-node__title {
  display: block;
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 650;
  color: var(--bidge-ink);
  overflow-wrap: anywhere;
}

.bidge-node__meta {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  line-height: 1.3;
  color: var(--bidge-muted);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.bidge-node--orange { --bidge-node-accent: var(--bidge-orange); }
.bidge-node--red { --bidge-node-accent: var(--bidge-red); }
.bidge-node--blue { --bidge-node-accent: var(--bidge-blue); }
.bidge-node--green { --bidge-node-accent: var(--bidge-green); }
.bidge-node--yellow { --bidge-node-accent: #c09d00; }
.bidge-node--purple { --bidge-node-accent: var(--bidge-purple); }

/* Diagram / network container for node components */
.bidge-node-map {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--bidge-line);
  border-radius: var(--bidge-radius-xl);
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 157, 216, .035), transparent 34%),
    #fff;
  box-shadow: var(--bidge-shadow-1);
  overflow: hidden;
}

.bidge-node-map__center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: #fff;
  background: linear-gradient(145deg, #1b2832, #253743);
  box-shadow: 0 22px 48px rgba(23, 32, 42, .18);
  z-index: 3;
}

.bidge-node-map__center strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.025em;
}

.bidge-node-map__center small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.5;
  color: #c9d1d6;
}

/* ==========================================================================
   08. ALERT / STATUS MESSAGES
   ========================================================================== */

.bidge-alert {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--bidge-line);
  font-size: 13.5px;
  background: #fff;
}

.bidge-alert__icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 800;
}

.bidge-alert strong {
  display: block;
  color: var(--bidge-ink);
  font-size: 13.5px;
  margin-bottom: 2px;
}

.bidge-alert p {
  margin: 0;
  color: var(--bidge-muted);
  font-size: 13px;
  line-height: 1.55;
}

.bidge-alert--info {
  border-color: #cfe5ef;
  background: #f5fbfd;
}
.bidge-alert--info .bidge-alert__icon {
  background: #e3f4fa;
  color: var(--bidge-info);
}

.bidge-alert--success {
  border-color: #cfe8db;
  background: #f5fbf8;
}
.bidge-alert--success .bidge-alert__icon {
  background: #e6f5ed;
  color: var(--bidge-success);
}

.bidge-alert--warning {
  border-color: #f0dfbd;
  background: #fffaf1;
}
.bidge-alert--warning .bidge-alert__icon {
  background: #fff1d6;
  color: var(--bidge-warning);
}

.bidge-alert--danger {
  border-color: #f0cdd1;
  background: #fff7f7;
}
.bidge-alert--danger .bidge-alert__icon {
  background: #fde8ea;
  color: var(--bidge-danger);
}

/* ==========================================================================
   09. SEARCH / FILTER TOOLBAR
   ========================================================================== */

.bidge-searchbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid var(--bidge-line);
  border-radius: 14px;
  background: #fff;
}

.bidge-searchbar__input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--bidge-ink);
  font-size: 13.5px;
}

.bidge-searchbar__input::placeholder {
  color: #a7b0b6;
}

/* ==========================================================================
   10. FILE / DOWNLOAD CARDS
   ========================================================================== */

.bidge-file-card {
  border: 1px solid var(--bidge-line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  box-shadow: var(--bidge-shadow-1);
}

.bidge-file-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef5f8;
  color: var(--bidge-blue);
  font-size: 10px;
  font-weight: 800;
}

.bidge-file-card__title {
  display: block;
  color: var(--bidge-ink);
  font-size: 14.5px;
  line-height: 1.35;
  font-weight: 650;
}

.bidge-file-card__desc {
  display: block;
  margin-top: 3px;
  color: var(--bidge-muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.bidge-file-card__meta {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* ==========================================================================
   11. PRICING
   ========================================================================== */

.bidge-price-card {
  border: 1px solid var(--bidge-line);
  border-radius: 20px;
  background: #fff;
  padding: 27px;
  box-shadow: var(--bidge-shadow-1);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.bidge-price-card__price {
  font-size: 31px;
  line-height: 1;
  font-weight: 680;
  letter-spacing: -.035em;
  color: var(--bidge-ink);
  margin: 16px 0;
}

.bidge-price-card__suffix {
  font-size: 13px;
  font-weight: 500;
  color: var(--bidge-muted);
}

.bidge-price-card__list {
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bidge-price-card__list li {
  font-size: 13.5px;
  color: #5e6b74;
  padding-left: 18px;
  position: relative;
}

.bidge-price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bidge-green);
  font-weight: 800;
}

.bidge-price-card .bidge-btn {
  margin-top: auto;
}

/* ==========================================================================
   12. PROCESS / TIMELINE CARDS
   ========================================================================== */

.bidge-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 11px;
}

.bidge-process-card {
  --bidge-accent: var(--bidge-orange);

  border: 1px solid var(--bidge-line);
  border-radius: 16px;
  background: #fff;
  padding: 20px 17px;
  min-height: 155px;
  box-shadow: var(--bidge-shadow-1);
}

.bidge-process-card__number {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--bidge-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 750;
  margin-bottom: 16px;
}

.bidge-process-card__title {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.25;
  color: var(--bidge-ink);
  font-weight: 650;
}

.bidge-process-card__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bidge-muted);
  font-weight: 450;
}

/* ==========================================================================
   13. COMPACT EDITOR DIRECTORY
   ========================================================================== */

.bidge-editor-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.bidge-editor-search {
  flex: 1 1 360px;
  min-width: 260px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--bidge-line);
  border-radius: 12px;
  background: #fff;
}

.bidge-editor-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--bidge-ink);
  font-size: 13px;
}

.bidge-editor-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bidge-editor-card {
  --bidge-accent: var(--bidge-orange);

  position: relative;
  min-height: 186px;
  border: 1px solid var(--bidge-line);
  border-radius: 16px;
  background: #fff;
  padding: 18px 18px 16px;
  overflow: hidden;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.bidge-editor-card::before {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  width: 3px;
  background: var(--bidge-accent);
}

.bidge-editor-card:hover {
  transform: translateY(-2px);
  border-color: #dbe0e4;
  box-shadow: var(--bidge-shadow-2);
}

.bidge-editor-card__role {
  font-size: 9.5px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: .075em;
  text-transform: uppercase;
  color: var(--bidge-accent);
  margin-bottom: 10px;
}

.bidge-editor-card__name {
  margin: 0 0 3px;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 650;
  letter-spacing: -.012em;
  color: var(--bidge-ink);
}

.bidge-editor-card__title {
  font-size: 11px;
  font-weight: 600;
  color: #7b868e;
  margin-bottom: 12px;
}

.bidge-editor-meta {
  display: grid;
  gap: 6px;
  margin-top: 9px;
}

.bidge-editor-meta__row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  align-items: start;
  font-size: 11.5px;
  line-height: 1.36;
  color: #65717a;
}

.bidge-editor-meta__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #f3f5f6;
  color: #89949c;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
}

.bidge-editor-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid #f0f2f3;
}

.bidge-orcid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--bidge-green);
  text-decoration: none;
}

.bidge-orcid::before {
  content: "iD";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf7ef;
  font-size: 8px;
  font-weight: 850;
}

/* ==========================================================================
   14. ANNOUNCEMENT CARDS
   ========================================================================== */

.bidge-announcement-card {
  border: 1px solid var(--bidge-line);
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
}

.bidge-datebox {
  border-radius: 14px;
  background: #fff8ef;
  border: 1px solid #f1dcc4;
  text-align: center;
  padding: 11px;
}

.bidge-datebox strong {
  display: block;
  font-size: 23px;
  color: var(--bidge-ink);
  line-height: 1;
}

.bidge-datebox span {
  font-size: 10px;
  color: #9a6a3a;
  text-transform: uppercase;
  font-weight: 700;
}

.bidge-announcement-card__title {
  margin: 7px 0 4px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 650;
  color: var(--bidge-ink);
}

.bidge-announcement-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--bidge-muted);
}

/* ==========================================================================
   15. EMPTY / ERROR / LOADING STATES
   ========================================================================== */

.bidge-state {
  border: 1px dashed var(--bidge-line-strong);
  border-radius: 18px;
  background: #fbfcfc;
  padding: 34px;
  text-align: center;
}

.bidge-state__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #f0f3f4;
  display: grid;
  place-items: center;
  margin: 0 auto 13px;
  color: #7d8991;
  font-size: 20px;
}

.bidge-state__title {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 650;
  color: var(--bidge-ink);
}

.bidge-state__text {
  max-width: 540px;
  margin: 0 auto 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--bidge-muted);
}

.bidge-skeleton {
  display: grid;
  gap: 10px;
}

.bidge-skeleton__line {
  height: 13px;
  border-radius: 7px;
  background:
    linear-gradient(
      90deg,
      #f0f2f3 25%,
      #f7f8f9 38%,
      #f0f2f3 63%
    );
  background-size: 400% 100%;
  animation: bidge-shimmer 1.5s infinite;
}

.bidge-skeleton__line:nth-child(1) { width: 42%; height: 18px; }
.bidge-skeleton__line:nth-child(2) { width: 90%; }
.bidge-skeleton__line:nth-child(3) { width: 75%; }

@keyframes bidge-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

/* ==========================================================================
   16. FAQ ACCORDION
   ========================================================================== */

.bidge-faq {
  border: 1px solid var(--bidge-line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 9px;
  overflow: hidden;
}

.bidge-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 19px;
  font-size: 14px;
  font-weight: 650;
  color: var(--bidge-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.bidge-faq summary::-webkit-details-marker {
  display: none;
}

.bidge-faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: #8a959d;
}

.bidge-faq[open] summary::after {
  content: "−";
}

.bidge-faq__body {
  padding: 0 19px 18px;
  font-size: 13.5px;
  color: var(--bidge-muted);
  line-height: 1.65;
}

/* ==========================================================================
   17. FORMS
   ========================================================================== */

.bidge-form-card {
  border: 1px solid var(--bidge-line);
  border-radius: 20px;
  background: #fff;
  padding: 26px;
  box-shadow: var(--bidge-shadow-1);
}

.bidge-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.bidge-form-group {
  display: grid;
  gap: 6px;
}

.bidge-form-group--full {
  grid-column: 1 / -1;
}

.bidge-form-label {
  font-size: 12px;
  font-weight: 650;
  color: #43515b;
}

.bidge-field {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--bidge-line-strong);
  border-radius: 11px;
  padding: 0 12px;
  color: var(--bidge-ink);
  background: #fff;
  outline: 0;
  font-size: 13.5px;
}

textarea.bidge-field {
  min-height: 118px;
  padding: 11px 12px;
  resize: vertical;
}

.bidge-field::placeholder {
  color: #adb5ba;
}

.bidge-field.is-error {
  border-color: #e4a8ae;
  background: #fffafa;
}

.bidge-field.is-success {
  border-color: #9fd0b7;
  background: #fbfffd;
}

.bidge-form-help,
.bidge-form-error {
  font-size: 10.5px;
  line-height: 1.4;
}

.bidge-form-help { color: #929ca3; }
.bidge-form-error { color: var(--bidge-danger); }

.bidge-checkline {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
  color: #68747d;
}

.bidge-checkline input {
  margin-top: 3px;
}

/* ==========================================================================
   18. TABLES
   ========================================================================== */

.bidge-table-wrap {
  overflow: auto;
  border: 1px solid var(--bidge-line);
  border-radius: 16px;
  background: #fff;
}

.bidge-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 12.5px;
}

.bidge-table th {
  text-align: left;
  padding: 12px 14px;
  background: #f7f8f9;
  color: #56636c;
  font-size: 10.5px;
  letter-spacing: .055em;
  text-transform: uppercase;
  font-weight: 750;
  border-bottom: 1px solid var(--bidge-line);
}

.bidge-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #eef0f1;
  color: #58656e;
  vertical-align: top;
}

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

.bidge-table td strong {
  color: var(--bidge-ink);
}

/* ==========================================================================
   19. DEFINITION / PUBLISHER RECORD
   ========================================================================== */

.bidge-record {
  border: 1px solid var(--bidge-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.bidge-record__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef0f1;
  font-size: 13px;
}

.bidge-record__row:last-child {
  border-bottom: 0;
}

.bidge-record__key {
  color: #89949b;
  font-weight: 600;
}

.bidge-record__value {
  color: #3c4953;
  font-weight: 500;
}

/* ==========================================================================
   20. LEGAL / POLICY COMPARISON
   ========================================================================== */

.bidge-compare {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: stretch;
  gap: 14px;
}

.bidge-legal-box {
  border: 1px solid var(--bidge-line);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
}

.bidge-legal-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--bidge-muted);
  font-size: 13px;
}

.bidge-compare__symbol {
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #a8b0b6;
  font-weight: 300;
}

/* ==========================================================================
   21. DOI / ISBN / METADATA PASSPORT
   ========================================================================== */

.bidge-passport {
  border: 1px solid var(--bidge-line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--bidge-shadow-1);
  background: #fff;
}

.bidge-passport__head {
  padding: 22px 24px;
  background: linear-gradient(135deg, #172630, #243743);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.bidge-passport__head .bidge-card-title {
  color: #fff;
  margin: 0;
}

.bidge-passport__head small {
  font-size: 11px;
  color: #cbd3d8;
}

.bidge-passport__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.bidge-passport__item {
  padding: 19px 20px;
  border-right: 1px solid var(--bidge-line);
  border-bottom: 1px solid var(--bidge-line);
}

.bidge-passport__item:nth-child(3n) {
  border-right: 0;
}

.bidge-passport__key {
  font-size: 10px;
  color: #929ca3;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .06em;
}

.bidge-passport__value {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: var(--bidge-ink);
  font-weight: 650;
}

/* ==========================================================================
   22. PAGINATION
   ========================================================================== */

.bidge-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.bidge-page {
  width: 38px;
  height: 38px;
  border: 1px solid var(--bidge-line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 650;
  color: #65717a;
  background: #fff;
  text-decoration: none;
}

.bidge-page:hover {
  border-color: #cfd6da;
  color: var(--bidge-orange);
}

.bidge-page.is-active {
  background: var(--bidge-ink);
  color: #fff;
  border-color: var(--bidge-ink);
}

/* ==========================================================================
   23. PAGE / PRE-FOOTER CTA
   ========================================================================== */

.bidge-cta {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #1c2730, #273842);
  color: #fff;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.bidge-cta::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 45px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  right: -55px;
  top: -100px;
}

.bidge-cta__content,
.bidge-cta__actions {
  position: relative;
  z-index: 1;
}

.bidge-cta__title {
  margin: 0 0 7px;
  color: #fff;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: -.025em;
}

.bidge-cta__text {
  margin: 0;
  max-width: 650px;
  color: #cad2d7;
  font-size: 14px;
  line-height: 1.6;
}

.bidge-cta__actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

/* ==========================================================================
   24. COMPACT FOOTER STRIPS
   ========================================================================== */
/*
  Footer design itself remains the approved separate global footer.
  These classes only standardize the thin lower strips.
*/

.bidge-footer-contact-strip {
  min-height: 36px;
  background: #fff;
  border-top: 1px solid var(--bidge-line);
  display: flex;
  align-items: center;
}

.bidge-footer-legal-strip {
  min-height: 32px;
  background: #fff;
  display: flex;
  align-items: center;
}

.bidge-footer-color-rail {
  height: 3px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.bidge-footer-color-rail span:nth-child(1) { background: var(--bidge-orange); }
.bidge-footer-color-rail span:nth-child(2) { background: var(--bidge-red); }
.bidge-footer-color-rail span:nth-child(3) { background: var(--bidge-blue); }
.bidge-footer-color-rail span:nth-child(4) { background: var(--bidge-green); }
.bidge-footer-color-rail span:nth-child(5) { background: var(--bidge-yellow); }
.bidge-footer-color-rail span:nth-child(6) { background: var(--bidge-purple); }

/* ==========================================================================
   25. ICON-ONLY SCROLL TO TOP
   ========================================================================== */

.bidge-scrolltop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--bidge-line);
  background: #fff;
  box-shadow: var(--bidge-shadow-2);
  display: grid;
  place-items: center;
  color: var(--bidge-orange);
  z-index: 80;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity .18s ease,
    visibility .18s ease,
    transform .18s ease,
    color .18s ease,
    border-color .18s ease;
}

.bidge-scrolltop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bidge-scrolltop:hover {
  color: #d96e00;
  border-color: #efc69c;
}

/* ==========================================================================
   26. RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .bidge-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bidge-grid-6,
  .bidge-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bidge-editor-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bidge-passport__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bidge-passport__item:nth-child(3n) {
    border-right: 1px solid var(--bidge-line);
  }

  .bidge-passport__item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .bidge-editor-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bidge-node-map {
    min-height: auto;
    padding: 24px;
  }

  .bidge-node-map__center {
    position: static;
    transform: none;
    width: 160px;
    height: 160px;
    margin: 0 auto 18px;
  }
}

@media (max-width: 760px) {
  .bidge-wrap {
    width: min(var(--bidge-max), calc(100% - 28px));
  }

  .bidge-section {
    padding-block: 54px;
  }

  .bidge-grid-2,
  .bidge-grid-3,
  .bidge-grid-4,
  .bidge-grid-6,
  .bidge-process,
  .bidge-form-grid,
  .bidge-compare {
    grid-template-columns: 1fr;
  }

  .bidge-form-group--full {
    grid-column: auto;
  }

  .bidge-compare__symbol {
    min-height: 35px;
  }

  .bidge-file-card {
    grid-template-columns: 44px 1fr;
  }

  .bidge-file-card > .bidge-btn {
    grid-column: 1 / -1;
  }

  .bidge-announcement-card {
    grid-template-columns: 76px 1fr;
  }

  .bidge-announcement-card > .bidge-btn {
    grid-column: 1 / -1;
  }

  .bidge-passport__grid {
    grid-template-columns: 1fr;
  }

  .bidge-passport__item,
  .bidge-passport__item:nth-child(2n),
  .bidge-passport__item:nth-child(3n) {
    border-right: 0;
  }

  .bidge-record__row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .bidge-cta {
    display: block;
    padding: 28px;
  }

  .bidge-cta__actions {
    margin-top: 16px;
  }

  .bidge-footer-contact-strip,
  .bidge-footer-legal-strip {
    min-height: auto;
    padding-block: 8px;
  }
}

@media (max-width: 540px) {
  .bidge-editor-directory {
    grid-template-columns: 1fr;
  }

  .bidge-editor-card {
    min-height: auto;
  }

  .bidge-node {
    padding: 14px 15px;
  }

  .bidge-node__icon {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================================================
   27. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .bidge-card,
  .bidge-content-card,
  .bidge-feature-card,
  .bidge-policy-card,
  .bidge-node,
  .bidge-btn,
  .bidge-editor-card,
  .bidge-scrolltop {
    transition: none;
  }

  .bidge-skeleton__line {
    animation: none;
  }
}

/* ==========================================================================
   28. WORDPRESS THEME INTEGRATION
   Keeps approved page compositions while the shared v4 components take over.
   ========================================================================== */

html {
  overflow-x: hidden;
}

body .member-grid.bidge-editor-directory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
}

main.bidge-scope {
  overflow-x: hidden;
  contain: paint;
}

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

body .member.bidge-editor-card .bidge-editor-meta__icon svg {
  width: 12px;
  height: 12px;
}

body .member.bidge-editor-card[hidden] {
  display: none;
}

body .directory-shell .bidge-editor-tools {
  padding: 15px 20px 0;
}

body .bidge-file-card .bidge-btn {
  justify-self: end;
}

body .bidge-alert.bidge-state {
  align-items: center;
}

body .bidge-chip.active {
  border-color: #f0c390;
  background: #fff8ef;
  color: #a85400;
}

/* Real v4 component migration: outrank the locked legacy page selectors. */
body:is(.page, .home) main.bidge-scope :is(
  .bidge-card,
  .bidge-content-card,
  .bidge-feature-card,
  .bidge-policy-card
) {
  border: 1px solid var(--bidge-line);
  border-radius: var(--bidge-radius-lg);
  background-color: #fff;
  padding: var(--bidge-card-pad);
  box-shadow: var(--bidge-shadow-1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body:is(.page, .home) main.bidge-scope :is(
  .bidge-card,
  .bidge-content-card,
  .bidge-feature-card,
  .bidge-policy-card
):hover {
  transform: translateY(-2px);
  border-color: #dbe0e4;
  box-shadow: var(--bidge-shadow-2);
}

body:is(.page, .home) main.bidge-scope .bidge-card--dark {
  border-color: #293741;
  background: #1c2730;
  color: #fff;
}

body:is(.page, .home) main.bidge-scope :is(
  .bidge-card,
  .bidge-content-card,
  .bidge-feature-card,
  .bidge-policy-card,
  .bidge-price-card,
  .bidge-process-card
) h3,
body:is(.page, .home) main.bidge-scope .bidge-card-title {
  margin-top: 0;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: -.015em;
}

body:is(.page, .home) main.bidge-scope :is(
  .bidge-card,
  .bidge-content-card,
  .bidge-feature-card,
  .bidge-policy-card,
  .bidge-price-card,
  .bidge-process-card
) p,
body:is(.page, .home) main.bidge-scope .bidge-card-text {
  font-size: 14px;
  line-height: 1.62;
  font-weight: 450;
}

body:is(.page, .home) main.bidge-scope :is(
  .bidge-card,
  .bidge-content-card,
  .bidge-feature-card,
  .bidge-policy-card,
  .bidge-price-card
) li {
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 450;
}

body:is(.page, .home) main.bidge-scope :is(.section-head, .center-head) h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

body:is(.page, .home) main.bidge-scope .bidge-lead {
  font-size: 16px;
  line-height: 1.72;
  font-weight: 400;
}

body:is(.page, .home) main.bidge-scope .node.bidge-node {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  padding: 15px 17px;
  border: 1px solid var(--bidge-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--bidge-shadow-1);
  text-align: left;
  font-size: inherit;
  font-weight: inherit;
}

body:is(.page, .home) main.bidge-scope .node.bidge-node:hover {
  transform: translateY(-3px);
  box-shadow: var(--bidge-shadow-2);
  border-color: color-mix(in srgb, var(--bidge-node-accent) 28%, var(--bidge-line));
}

body:is(.page, .home) main.bidge-scope .node.bidge-node .bidge-node__icon {
  width: 38px;
  height: 38px;
  display: grid;
  margin: 0;
  border-radius: 11px;
  background: color-mix(in srgb, var(--bidge-node-accent) 10%, white);
  color: var(--bidge-node-accent);
}

body:is(.page, .home) main.bidge-scope .node.bidge-node .bidge-node__icon svg {
  width: 18px;
  height: 18px;
}

body:is(.page, .home) main.bidge-scope .node.bidge-node .bidge-node__content {
  display: block;
  min-width: 0;
  margin: 0;
}

body:is(.page, .home) main.bidge-scope .node.bidge-node .bidge-node__title {
  display: block;
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 650;
  color: var(--bidge-ink);
}

body:is(.page, .home) main.bidge-scope .node.bidge-node .bidge-node__meta {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--bidge-muted);
}

.bidge-node--teal { --bidge-node-accent: #178c8c; }

body.page-25-indeksleme-kesfedilebilirlik main.bidge-scope .node.bidge-node {
  width: 160px;
}

body:is(.page, .home) main.bidge-scope .price-card.bidge-price-card {
  padding: 27px;
  border: 1px solid var(--bidge-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--bidge-shadow-1);
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

body:is(.page, .home) main.bidge-scope .price-card.bidge-price-card .bidge-price-card__price {
  margin: 16px 0;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.035em;
}

body:is(.page, .home) main.bidge-scope .price-card.bidge-price-card .bidge-price-card__list {
  margin: 0 0 18px;
  padding: 0;
}

body:is(.page, .home) main.bidge-scope .price-card.bidge-price-card > .bidge-btn {
  position: static;
  margin-top: auto;
  align-self: flex-start;
}

body:is(.page, .home) main.bidge-scope .stage-card.bidge-process-card {
  padding: 23px 25px;
  border: 1px solid var(--bidge-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--bidge-shadow-1);
}

body:is(.page, .home) main.bidge-scope .stage-card.bidge-process-card p {
  margin-bottom: 0;
  font-size: 13.5px;
  line-height: 1.55;
}

body:is(.page, .home) main.bidge-scope details.bidge-faq {
  border: 1px solid var(--bidge-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

body:is(.page, .home) main.bidge-scope details.bidge-faq summary {
  padding: 17px 19px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

body:is(.page, .home) main.bidge-scope .fact-grid.bidge-record {
  display: block;
  padding: 0;
  border: 1px solid var(--bidge-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--bidge-shadow-1);
  overflow: hidden;
}

body:is(.page, .home) main.bidge-scope .fact.bidge-record__row {
  display: grid;
  grid-template-columns: minmax(150px, .65fr) minmax(180px, 1fr) minmax(220px, 1.35fr);
  gap: 20px;
  align-items: center;
  padding: 15px 20px;
  border: 0;
  border-bottom: 1px solid var(--bidge-line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

body:is(.page, .home) main.bidge-scope .fact.bidge-record__row:last-child {
  border-bottom: 0;
}

body:is(.page, .home) main.bidge-scope .bidge-table-wrap {
  border: 1px solid var(--bidge-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--bidge-shadow-1);
  overflow-x: auto;
}

body:is(.page, .home) main.bidge-scope .bidge-table__head,
body:is(.page, .home) main.bidge-scope .bidge-table__row {
  min-width: 720px;
}

body:is(.page, .home) main.bidge-scope .bidge-passport .bidge-passport__head {
  padding: 22px 24px;
  background: linear-gradient(135deg, #172630, #243743);
}

body:is(.page, .home) main.bidge-scope .bidge-passport .bidge-passport__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:is(.page, .home) main.bidge-scope .bidge-passport .bidge-passport__item {
  padding: 19px 20px;
  border-right: 1px solid var(--bidge-line);
  border-bottom: 1px solid var(--bidge-line);
}

@media (max-width: 760px) {
  body.page-25-indeksleme-kesfedilebilirlik main.bidge-scope .node.bidge-node {
    width: 42%;
    min-width: 0;
    padding: 12px;
    gap: 9px;
  }

  body:is(.page, .home) main.bidge-scope .fact.bidge-record__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 1100px) {
  body .member-grid.bidge-editor-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body .member-grid.bidge-editor-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 540px) {
  body .member-grid.bidge-editor-directory {
    grid-template-columns: 1fr;
  }
}
