/* ===== Banka Hesapları Sayfası ===== */

.hsp-page { padding-bottom: 0 }

/* ── Breadcrumb ── */
.hsp-crumb-wrap {
  border-bottom: 1px solid var(--line-2);
  background: var(--surface);
}
.hsp-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 12.5px;
  color: var(--muted);
}
.hsp-crumb a { color: var(--muted); font-weight: 500 }
.hsp-crumb a:hover { color: var(--blue) }
.hsp-crumb span:last-child { color: var(--ink); font-weight: 600 }

/* ── Hero ── */
.hsp-hero {
  background: var(--ink);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.hsp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 28px,
    rgba(255,255,255,.025) 28px, rgba(255,255,255,.025) 29px
  );
  pointer-events: none;
}
.hsp-hero-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.hsp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.hsp-title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}
.hsp-desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

/* Hero note */
.hsp-hero-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,220,0,.08);
  border: 1px solid rgba(255,220,0,.2);
  border-radius: 14px;
  padding: 18px 20px;
  max-width: 380px;
  flex-shrink: 0;
}
.hsp-note-ico {
  width: 36px; height: 36px;
  background: rgba(255,220,0,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}
.hsp-hero-note p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  margin: 0;
}
.hsp-hero-note strong { color: var(--yellow) }
.hsp-hero-note em { font-style: normal; color: #fff; font-weight: 700 }

/* ── Banka Grid ── */
.hsp-section { padding: 56px 0 72px }

.hsp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hsp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.hsp-card:hover {
  box-shadow: 0 16px 48px -14px rgba(13,30,57,.12);
  transform: translateY(-2px);
}

/* Renkli alt şerit */
.hsp-accent-bar {
  height: 3px;
  width: 100%;
  margin-top: auto;
}

.hsp-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line-2);
}
.hsp-logo-wrap {
  width: 56px; height: 56px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.hsp-logo {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
}
.hsp-bank-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.018em;
}

/* Alanlar */
.hsp-fields {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.hsp-field { display: flex; flex-direction: column; gap: 4px }
.hsp-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hsp-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.hsp-unvan {
  font-size: 13px;
  color: var(--ink-2);
}

/* IBAN satırı */
.hsp-iban-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px 12px;
}
.hsp-iban {
  font-family: ui-monospace, 'SF Mono', 'Consolas', monospace;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
  flex: 1;
  min-width: 0;
  word-break: break-all;
}
.hsp-copy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .14s, color .14s, background .14s;
}
.hsp-copy:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.hsp-copy .ico-check { display: none }
.hsp-copy.copied {
  border-color: #16A34A;
  color: #16A34A;
  background: #F0FDF4;
}
.hsp-copy.copied .ico-copy { display: none }
.hsp-copy.copied .ico-check { display: block }

/* ── Bilgi kartları ── */
.hsp-info-section {
  background: var(--surface);
  border-top: 1px solid var(--line-2);
  padding: 56px 0 72px;
}
.hsp-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hsp-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
}
.hsp-info-ico {
  width: 44px; height: 44px;
  background: var(--blue-50, #EFF6FF);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.hsp-info-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
}
.hsp-info-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.hsp-info-card a {
  color: var(--blue);
  font-weight: 600;
}
.hsp-info-card a:hover { text-decoration: underline }

/* ── Responsive ── */
@media(max-width:960px) {
  .hsp-hero-note { max-width: 100% }
  .hsp-info-grid { grid-template-columns: 1fr 1fr }
}
@media(max-width:680px) {
  .hsp-grid { grid-template-columns: 1fr }
  .hsp-title { font-size: 30px }
  .hsp-info-grid { grid-template-columns: 1fr }
  .hsp-iban { font-size: 12px }
  .hsp-iban-row { flex-direction: column; align-items: flex-start; gap: 10px }
  .hsp-copy { width: 100%; justify-content: center }
}
