/* ═══════════════════════════════════════════════════════
       BANKA HESAP BİLGİLERİ — PAGE STYLES
    ═══════════════════════════════════════════════════════ */

    /* ── HERO ─────────────────────────────────────────────── */
    .bank-hero {
      background: #0f172a;
      background-image:
        linear-gradient(135deg, #0f172a 0%, #1a2e5c 55%, #1e3a8a 100%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.025) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.025) 40px);
      background-blend-mode: normal, overlay, overlay;
      padding: 56px 0 100px;
      position: relative;
      overflow: hidden;
    }
    .bank-hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -60px;
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(99,102,241,.22) 0%, transparent 65%);
      pointer-events: none;
    }
    .bank-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(99,102,241,.18);
      border: 1px solid rgba(99,102,241,.4);
      border-radius: 30px;
      padding: 5px 14px;
      font-size: .72rem;
      font-weight: 700;
      color: #a5b4fc;
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .bank-hero h1 {
      font-size: clamp(1.7rem, 3vw, 2.5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .bank-hero-lead {
      font-size: .95rem;
      color: rgba(255,255,255,.65);
      line-height: 1.85;
      margin-bottom: 28px;
    }
    .bank-hero-checks {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .bank-hero-checks li {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: .86rem;
      color: rgba(255,255,255,.78);
    }
    .bank-hero-checks li i {
      color: #6ee7b7;
      font-size: .8rem;
      flex-shrink: 0;
    }
    /* Mesai durum pill */
    .bank-mesai-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 10px;
      padding: 10px 16px;
      font-size: .8rem;
      font-weight: 600;
      border: 1.5px solid transparent;
      transition: all .3s;
    }
    .bank-mesai-pill .mp-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── HERO FORM CARD (right column) ───────────────────── */
    .hero-form-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 4px 16px rgba(0,0,0,.2);
      overflow: hidden;
      position: relative;
      z-index: 2;
      margin-bottom: -64px; /* float below hero */
    }
    .hero-form-card-head {
      padding: 22px 28px 18px;
      background: linear-gradient(135deg, #1e3a8a, #2563eb);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-form-card-head-icon {
      width: 42px; height: 42px;
      background: rgba(255,255,255,.15);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      color: #fff;
      flex-shrink: 0;
    }
    .hero-form-card-head h2 {
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
      margin: 0 0 2px;
    }
    .hero-form-card-head p {
      font-size: .74rem;
      color: rgba(255,255,255,.75);
      margin: 0;
      line-height: 1.4;
    }
    .hero-form-card-body { padding: 24px 28px 28px; }
    .hf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .hf-row-1 { margin-top: 14px; }
    .hf-lbl {
      display: block;
      font-size: .68rem;
      font-weight: 700;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-bottom: 5px;
    }
    .hf-ctrl {
      width: 100%;
      padding: 10px 13px;
      background: #f8fafc;
      border: 1.5px solid #e2e8f0;
      border-radius: 9px;
      font-size: .85rem;
      color: #0f172a;
      outline: none;
      transition: border-color .18s, box-shadow .18s;
      font-family: inherit;
    }
    .hf-ctrl:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59,130,246,.12);
      background: #fff;
    }
    .hf-ctrl.hf-error {
      border-color: #ef4444;
      box-shadow: 0 0 0 3px rgba(239,68,68,.12);
      background: #fff5f5;
    }
    .hf-error-msg {
      display: none;
      font-size: .76rem;
      color: #ef4444;
      margin-top: 4px;
    }
    .hf-ctrl.hf-error + .hf-error-msg,
    .hf-ctrl.hf-error ~ .hf-error-msg { display: block; }
    .hf-ctrl::placeholder { color: #cbd5e1; }
    .btn-hf-send {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 0;
      background: linear-gradient(135deg, #1746c8, #2563eb);
      color: #fff;
      border: none;
      border-radius: 11px;
      font-size: .92rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .2s;
      margin-top: 18px;
      font-family: inherit;
    }
    .btn-hf-send:hover { background: linear-gradient(135deg, #1338a0, #1d4ed8); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(23,70,200,.35); }
    .btn-hf-send:disabled { opacity: .65; cursor: not-allowed; transform: none; }
    .hf-form-msg {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 10px;
      font-size: .86rem;
      line-height: 1.45;
    }
    .hf-form-msg--ok {
      background: #ecfdf5;
      border: 1px solid #a7f3d0;
      color: #047857;
    }
    .hf-form-msg--err {
      background: #fef2f2;
      border: 1px solid #fecaca;
      color: #b91c1c;
    }

    /* ── INFO SECTION ─────────────────────────────────────── */
    .bank-info-section {
      padding: 96px 0 88px;  /* extra top for overflowing hero form card */
      background: #f8fafc;
    }

    /* ── STEPS ───────────────────────────────────────────── */
    .bank-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 56px;
    }
    .bank-step-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 28px 24px;
      position: relative;
    }
    .bank-step-num {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #1746c8, #4f46e5);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: .9rem;
      color: #fff;
      margin-bottom: 14px;
    }
    .bank-step-title {
      font-size: .92rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px;
    }
    .bank-step-desc {
      font-size: .8rem;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
    }
    .bank-step-arrow {
      position: absolute;
      top: 36px;
      right: -16px;
      color: #cbd5e1;
      font-size: 1rem;
      z-index: 1;
    }

    /* ── SECTION TITLES ──────────────────────────────────── */
    .section-eyebrow {
      font-size: .72rem;
      font-weight: 700;
      color: #1746c8;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 6px;
    }
    .section-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 8px;
    }
    .section-sub {
      color: #64748b;
      font-size: .9rem;
      max-width: 540px;
      line-height: 1.7;
    }

    /* ── BANK CARDS ──────────────────────────────────────── */
    .bank-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
    }
    .bk-card {
      background: #fff;
      border: 1.5px solid #e2e8f0;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.05);
      transition: box-shadow .25s, transform .25s;
    }
    .bk-card:hover {
      box-shadow: 0 12px 40px rgba(23,70,200,.12);
      transform: translateY(-3px);
    }
    .bk-card-header {
      padding: 28px 28px 22px;
      border-bottom: 1px solid #f1f5f9;
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .bk-logo {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: .02em;
      flex-shrink: 0;
    }
    .bk-logo.isbank  { background: linear-gradient(135deg,#003087,#00509e); }
    .bk-logo.halkbank{ background: linear-gradient(135deg,#005a9e,#0085ca); }
    .bk-name {
      font-size: 1.15rem;
      font-weight: 800;
      color: #0f172a;
    }
    .bk-sub {
      font-size: .77rem;
      color: #64748b;
      margin-top: 3px;
    }
    .bk-card-body { padding: 24px 28px; }
    .bk-field {
      margin-bottom: 18px;
    }
    .bk-field:last-child { margin-bottom: 0; }
    .bk-field-label {
      font-size: .67rem;
      font-weight: 700;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: 5px;
    }
    .bk-field-val {
      font-size: .95rem;
      font-weight: 700;
      color: #0f172a;
    }
    .bk-iban-row {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f0f5ff;
      border: 1.5px solid #c7d2fe;
      border-radius: 12px;
      padding: 13px 16px;
    }
    .bk-iban-text {
      font-size: 1.05rem;
      font-weight: 700;
      color: #1e40af;
      letter-spacing: .1em;
      flex: 1;
      font-variant-numeric: tabular-nums;
    }
    .btn-copy {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 7px 14px;
      background: #fff;
      border: 1px solid #c7d2fe;
      border-radius: 8px;
      color: #1746c8;
      font-size: .74rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .18s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .btn-copy:hover { background: #eef2ff; border-color: #818cf8; }
    .btn-copy.copied { background: #dcfce7; border-color: #86efac; color: #16a34a; }

    /* ── NOTICE BOX ──────────────────────────────────────── */
    .bank-notice-box {
      background: #fff;
      border: 1.5px solid #e2e8f0;
      border-left: 4px solid #1746c8;
      border-radius: 0 16px 16px 0;
      padding: 24px 28px;
      margin-top: 32px;
    }
    .bank-notice-title {
      font-size: .88rem;
      font-weight: 700;
      color: #0f172a;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }
    .bank-notice-box p {
      font-size: .84rem;
      color: #475569;
      line-height: 1.8;
      margin: 0;
    }

    /* ── HOURS GRID ──────────────────────────────────────── */
    .bank-hours-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 32px;
    }
    .bank-hours-card {
      background: #fff;
      border: 1.5px solid #e2e8f0;
      border-radius: 16px;
      padding: 24px 22px;
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .bank-hours-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .bank-hours-icon.weekday { background: #eef2ff; color: #1746c8; }
    .bank-hours-icon.weekend { background: #f0fdf4; color: #16a34a; }
    .bank-hours-day { font-size: .78rem; color: #64748b; font-weight: 500; margin-bottom: 4px; }
    .bank-hours-time { font-size: 1.2rem; font-weight: 800; color: #0f172a; }

    /* ── IMPORTANT NOTE ──────────────────────────────────── */
    .bank-important {
      background: linear-gradient(135deg, #fffbeb 0%, #fef9c3 100%);
      border: 1.5px solid #fde68a;
      border-radius: 16px;
      padding: 28px 32px;
      margin-top: 32px;
    }
    .bank-important-title {
      font-size: .95rem;
      font-weight: 800;
      color: #92400e;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .bank-important p {
      font-size: .86rem;
      color: #78350f;
      line-height: 1.85;
      margin: 0;
    }

    @media (max-width: 768px) {
      .bank-steps { grid-template-columns: 1fr; }
      .bank-cards-grid { grid-template-columns: 1fr; }
      .bank-step-arrow { display: none; }
      .bank-hours-grid { grid-template-columns: 1fr; }
      .hf-row-2 { grid-template-columns: 1fr; }
      .hero-form-card { margin-bottom: 0; }
      .bank-hero { padding-bottom: 40px; }
      .bank-info-section { padding-top: 48px; }
    }