* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #232748;
  font-family: Inter, Arial, sans-serif;
  color: #eaeaff;
}

.payment-page {
  min-height: 100vh;
  padding: 42px 16px 40px;
}

/* ÜST ADIMLAR */
.payment-steps {
  max-width: 760px;
  margin: 0 auto 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.step {
  flex: 1;
  text-align: center;
  color: #9aa0c3;
  position: relative;
  padding-bottom: 18px;
}

.step-icon-img {
  display: block;
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.step-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
}

.step.active {
  color: #5c63ff;
}

.step.active::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: #5c63ff;
}

/* LOGO */
.payment-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
}

.payment-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* TUTAR */
.payment-amount-wrap {
  text-align: center;
  margin-bottom: 34px;
}

.payment-amount {
  font-size: 24px;
  font-weight: 700;
  color: #7f849e;
}

/* KART */
.payment-card {
  max-width: 620px;
  margin: 0 auto;
  background: #2f345a;
  border-radius: 14px;
  padding: 34px 34px 28px;
}

/* FAST */
.bank-transfer-box {
  text-align: center;
  margin-bottom: 22px;
}

.transfer-title {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #EAEAFF;
  margin-bottom: 14px;
  text-align: center;
}

/* ŞİRKET IBANLARI */
.company-accounts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.copy-text {
  color: rgba(234, 234, 255, 0.87); /* #EAEAFFDE */
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.copy-btn {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.copy-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.copy-btn:hover,
.copy-row:hover .copy-btn {
  opacity: .9;
}
.copy-btn:active,
.copy-row:active .copy-btn {
  transform: scale(.96);
}
.copy-btn.is-copied {
  opacity: .55;
}
.copy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 24px;
  cursor: pointer;
}

.company-account {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}



/* İstersen boşken görünmesi için hafif çizgi */
.company-name:empty,
.company-iban:empty {
  border: 1px dashed rgba(255,255,255,0.10);
}

/* ALERT */
.alert {
  display: flex;
  gap: 14px;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
}

.alert-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.alert p {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.alert-warning {
  background: #57505b;
}

.alert-warning .alert-icon,
.alert-warning .alert-title,
.alert-warning p {
  color: #f7b733;
}

.alert-info {
  background: #234f80;
}

.alert-info .alert-icon,
.alert-info .alert-title,
.alert-info p {
  color: #35c3ff;
}

/* SÜRE */
.timer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f1f2ff;
  font-size: 18px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #3a406d;
  overflow: hidden;
}

.progress-fill {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #646cff;
}

/* BUTON */
.payment-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.payment-btn {
  border: 0;
  outline: 0;
  border-radius: 10px;
  background: #8f98a9;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 26px;
  cursor: pointer;
  letter-spacing: .2px;
  transition: .2s ease;
}

.payment-btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .payment-page {
    padding: 28px 12px 32px;
  }

  .payment-steps {
    margin-bottom: 50px;
    gap: 8px;
  }

  .step-text {
    font-size: 11px;
  }

  .payment-logo {
    max-width: 180px;
  }

  .payment-amount {
    font-size: 20px;
  }

  .payment-card {
    padding: 24px 16px 22px;
    border-radius: 12px;
  }

  .transfer-title {
    font-size: 18px;
  }

  .company-name,
  .company-iban {
    min-width: 220px;
    font-size: 15px;
  }

  .timer-row {
    font-size: 16px;
  }

  .payment-btn {
    font-size: 14px;
    padding: 13px 20px;
  }
}