/**
 * MCSepeti Yardım Merkezi CSS — v2.9.50
 */

/* ─── Makale genel ────────────────────────────────────────── */
.help-article {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── Hero başlık ─────────────────────────────────────────── */
.help-article__hero {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--hc,#3DD68C) 12%, transparent), transparent);
  border: 1px solid color-mix(in srgb, var(--hc,#3DD68C) 30%, transparent);
  border-radius: 16px;
  margin-bottom: 24px;
}

.help-article__hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--hc,#3DD68C) 18%, transparent);
  color: var(--hc,#3DD68C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.help-article__hero h1 {
  font-size: clamp(20px,2.5vw,28px);
  font-weight: 800;
  margin: 0 0 5px;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--text,#e6ecf3);
  font-family: var(--font-display,inherit);
}

.help-article__hero p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted,#94a3b8);
  line-height: 1.5;
}

/* ─── Adımlar ─────────────────────────────────────────────── */
.help-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 48px;
  margin-bottom: 24px;
}

.help-steps::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--border,rgba(255,255,255,.1)), transparent);
}

.help-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
}

.help-step__num {
  position: absolute;
  left: -48px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sc,#3DD68C) 18%, transparent);
  border: 2px solid color-mix(in srgb, var(--sc,#3DD68C) 50%, transparent);
  color: var(--sc,#3DD68C);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  top: 18px;
  z-index: 1;
}

.help-step__body { flex: 1; min-width: 0; }

.help-step__body h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 7px;
  color: var(--text,#e6ecf3);
  line-height: 1.3;
}

.help-step__body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted,#94a3b8);
  line-height: 1.65;
}

.help-step__body ul {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text-muted,#94a3b8);
  line-height: 1.8;
}

.help-step__body a {
  color: var(--color-accent,#3DD68C);
  text-decoration: none;
  font-weight: 500;
}
.help-step__body a:hover { text-decoration: underline; }

/* ─── Bilgi kutusu ────────────────────────────────────────── */
.help-info-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--bc,#5B9FFF) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--bc,#5B9FFF) 30%, transparent);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text,#e6ecf3);
  line-height: 1.55;
  margin-bottom: 16px;
}

.help-info-box i {
  font-size: 18px;
  color: var(--bc,#5B9FFF);
  flex-shrink: 0;
  margin-top: 1px;
}

.help-info-box a { color: var(--bc,#5B9FFF); font-weight: 600; }

/* ─── Grid (pros/cons) ────────────────────────────────────── */
.help-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.help-grid__card {
  padding: 18px 20px;
  background: var(--bg-card,#1a1f2e);
  border: 1px solid color-mix(in srgb, var(--cc,#3DD68C) 25%, transparent);
  border-radius: 12px;
}

.help-grid__card i { font-size: 22px; color: var(--cc,#3DD68C); display: block; margin-bottom: 10px; }
.help-grid__card strong { display: block; font-size: 14px; font-weight: 700; color: var(--text,#e6ecf3); margin-bottom: 10px; }
.help-grid__card ul { margin: 0; padding-left: 16px; font-size: 13px; color: var(--text-muted,#94a3b8); line-height: 1.8; }

/* ─── Güvence kartları ────────────────────────────────────── */
.help-shield-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.help-shield-card {
  padding: 18px 20px;
  background: var(--bg-card,#1a1f2e);
  border: 1px solid var(--border,rgba(255,255,255,.08));
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.help-shield-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.help-shield-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text,#e6ecf3);
  margin-bottom: 7px;
}

.help-shield-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted,#94a3b8);
  line-height: 1.6;
}

/* ─── Gereksinim kartları ─────────────────────────────────── */
.help-req-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.help-req-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-card,#1a1f2e);
  border: 1px solid var(--border,rgba(255,255,255,.08));
  border-radius: 12px;
}

.help-req-card > i { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.help-req-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--text,#e6ecf3); margin-bottom: 6px; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.help-faq {
  margin: 24px 0;
}

.help-faq h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--text,#e6ecf3);
}

.help-faq h2 i { font-size: 20px; color: var(--color-accent,#3DD68C); }

.help-faq__item {
  background: var(--bg-card,#1a1f2e);
  border: 1px solid var(--border,rgba(255,255,255,.08));
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .15s ease;
}

.help-faq__item:hover { border-color: rgba(61,214,140,.25); }

.help-faq__item[open] { border-color: rgba(61,214,140,.35); }

.help-faq__item summary {
  padding: 14px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text,#e6ecf3);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.help-faq__item summary::-webkit-details-marker { display: none; }
.help-faq__item summary::after { content: '+'; font-size: 18px; color: var(--text-muted,#94a3b8); font-weight: 300; }
.help-faq__item[open] summary::after { content: '−'; color: var(--color-accent,#3DD68C); }

.help-faq__item p {
  padding: 0 18px 14px;
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted,#94a3b8);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 12px;
}

.help-faq__item a { color: var(--color-accent,#3DD68C); }

/* ─── CTA kutusu ──────────────────────────────────────────── */
.help-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(61,214,140,.1), rgba(61,214,140,.04));
  border: 1px solid rgba(61,214,140,.25);
  border-radius: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.help-cta > i { font-size: 34px; color: #3DD68C; flex-shrink: 0; }

.help-cta > div { flex: 1; min-width: 160px; }

.help-cta strong { display: block; font-size: 15px; font-weight: 700; color: var(--text,#e6ecf3); margin-bottom: 3px; }
.help-cta p { margin: 0; font-size: 13px; color: var(--text-muted,#94a3b8); }

.help-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  background: linear-gradient(135deg,#3DD68C,#2EBD78);
  color: #0a0e13 !important;
  border-radius: 9px;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all .2s ease;
  box-shadow: 0 6px 16px rgba(61,214,140,.3);
  flex-shrink: 0;
}
.help-cta__btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(61,214,140,.4); }

/* ─── Liste ───────────────────────────────────────────────── */
.help-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text-muted,#94a3b8);
  line-height: 1.9;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .help-grid,
  .help-shield-grid,
  .help-req-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  /* Kenar çubuğu + içerik tek sütun */
  .help-article__hero { flex-direction: column; text-align: center; }
  .help-steps { padding-left: 36px; }
  .help-step__num { left: -36px; width: 26px; height: 26px; font-size: 11px; }
}
