.taharah-lead-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--yellow-green, #84cc16);
  color: #0d2818;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 4px 14px rgba(132,204,22,.35);
}
.taharah-lead-trigger:hover {
  transform: translateY(-1px);
  background: #a3e635;
  box-shadow: 0 6px 20px rgba(132,204,22,.5);
}

.taharah-lead-modal[hidden] { display: none; }
.taharah-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.taharah-lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 40, 24, .6);
  backdrop-filter: blur(2px);
}
.taharah-lead-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: tlfPop .18s ease;
}
@keyframes tlfPop {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.taharah-lead-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 4px 10px;
}
.taharah-lead-modal__close:hover { color: #111; }

.taharah-lead-modal__title {
  margin: 0 0 8px;
  font-size: 22px;
  color: #0d2818;
  font-weight: 700;
}
.taharah-lead-modal__subtitle {
  margin: 0 0 20px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.taharah-lead-form { display: flex; flex-direction: column; gap: 14px; }
.taharah-lead-field { display: flex; flex-direction: column; gap: 6px; }
.taharah-lead-field span {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
}
.taharah-lead-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  color: #111;
  transition: border-color .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
.taharah-lead-field input:focus {
  outline: none;
  border-color: var(--yellow-green, #84cc16);
  box-shadow: 0 0 0 3px rgba(132,204,22,.18);
}
.taharah-lead-field input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.taharah-lead-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.taharah-lead-submit {
  margin-top: 6px;
  padding: 14px 18px;
  background: var(--yellow-green, #84cc16);
  color: #0d2818;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.taharah-lead-submit:hover { background: #a3e635; }
.taharah-lead-submit:disabled { opacity: .65; cursor: wait; }

.taharah-lead-error {
  margin: 4px 0 0;
  color: #b91c1c;
  font-size: 13px;
  background: #fef2f2;
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 3px solid #ef4444;
}
.taharah-lead-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

@media (max-width: 480px) {
  .taharah-lead-modal__dialog { padding: 24px 20px 18px; }
  .taharah-lead-modal__title { font-size: 19px; }
}

.taharah-lead-section {
  display: block;
  width: 100%;
  padding: 56px 20px;
  background: #ffffff;
  box-sizing: border-box;
}
.taharah-lead-section .taharah-lead-inline {
  margin: 0 auto;
}

.taharah-lead-inline {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: #ffffff;
  padding: 24px 22px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(13, 40, 24, .08), 0 2px 8px rgba(0,0,0,.04);
  border: 1px solid rgba(132, 204, 22, .25);
  text-align: left;
  box-sizing: border-box;
}
.taharah-lead-form--inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.taharah-lead-form--inline .taharah-lead-field span {
  font-size: 12.5px;
  letter-spacing: .01em;
}
.taharah-lead-form--inline .taharah-lead-field input {
  padding: 11px 13px;
  font-size: 14.5px;
}
.taharah-lead-form--inline .taharah-lead-submit {
  margin-top: 4px;
  font-size: 15.5px;
  padding: 13px 18px;
}
.taharah-lead-form--inline .taharah-lead-note {
  margin-top: 6px;
  font-size: 11.5px;
}

@media (max-width: 480px) {
  .taharah-lead-section { padding: 40px 16px; }
  .taharah-lead-inline { padding: 18px 16px 14px; border-radius: 14px; max-width: 100%; }
  .taharah-lead-form--inline { gap: 10px; }
  .taharah-lead-form--inline .taharah-lead-field input { padding: 12px 13px; font-size: 16px; }
  .taharah-lead-form--inline .taharah-lead-submit { padding: 14px 18px; font-size: 16px; min-height: 48px; }
}

@media (max-width: 360px) {
  .taharah-lead-inline { padding: 14px 12px 12px; }
  .taharah-lead-modal__title { font-size: 17px; }
}

/* ── Donate buttons (2-button layout) ── */
.taharah-donate-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.taharah-donate-btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.taharah-donate-btn--mayar {
  background: var(--yellow-green, #84cc16);
  color: #0d2818;
  box-shadow: 0 4px 14px rgba(132,204,22,.35);
}
.taharah-donate-btn--mayar:hover {
  transform: translateY(-1px);
  background: #a3e635;
  box-shadow: 0 6px 20px rgba(132,204,22,.5);
}
.taharah-donate-btn--kitabisa {
  background: #1e3a5f;
  color: #fff;
  box-shadow: 0 4px 14px rgba(30,58,95,.25);
}
.taharah-donate-btn--kitabisa:hover {
  transform: translateY(-1px);
  background: #274d7e;
  box-shadow: 0 6px 20px rgba(30,58,95,.4);
}
@media (max-width: 480px) {
  .taharah-donate-buttons { flex-direction: column; max-width: 100%; }
  .taharah-donate-btn { padding: 14px 24px; font-size: 15px; min-height: 48px; }
}
