/* PAY IN BITCOIN PAGE — light theme */

.pib-main--light { background: #F7F3ED; color: #1A1612; }
.pib-main--light { min-height: calc(100vh - 62px - 200px); padding: 4rem 1.5rem 5rem; display: block; }

.pib-wrap { max-width: 720px; margin: 0 auto; }

.pib-header { text-align: center; margin-bottom: 3rem; }
.pib-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: #1A1612;
}
.pib-header p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #5C5449;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* PRICING CARDS */
.pib-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.pib-price-card {
  background: #fff;
  border: 1px solid #E0D8CE;
  border-radius: 10px;
  padding: 1.5rem 1.35rem;
  color: #1A1612;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.pib-price-card:hover {
  border-color: rgba(242,137,27,0.5);
  box-shadow: 0 8px 32px rgba(242,137,27,0.15);
  transform: translateY(-4px);
}
.pib-price-card--popular { border-color: rgba(242,137,27,0.5); }
.pib-price-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: #1A1612;
}
.pib-price-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.pib-price-card__btc {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-display);
}
.pib-price-card__was {
  font-size: 0.85rem;
  color: #9C9389;
  text-decoration: line-through;
}
.pib-price-card__list {
  list-style: none;
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pib-price-card__list li {
  font-size: 0.85rem;
  color: #5C5449;
  line-height: 1.45;
  padding-left: 1.3rem;
  position: relative;
}
.pib-price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
}

/* FORM */
.pib-form {
  background: #fff;
  border: 1px solid #E0D8CE;
  border-radius: 10px;
  padding: 2.25rem;
  margin-bottom: 2.5rem;
}
.pib-form h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: #1A1612;
}
.pib-form__group { margin-bottom: 1.25rem; }
.pib-form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7A7068;
  margin-bottom: 0.45rem;
}
.pib-form__input,
.pib-form__select,
.pib-form__textarea {
  width: 100%;
  background: #F7F3ED;
  border: 1px solid #D5CCC2;
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  color: #1A1612;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.pib-form__input:focus,
.pib-form__select:focus,
.pib-form__textarea:focus { outline: none; border-color: #F2891B; }
.pib-form__input::placeholder,
.pib-form__textarea::placeholder { color: #B0A89E; }
.pib-form__select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; cursor: pointer; }
.pib-form__select option { background: #F7F3ED; color: #1A1612; }
.pib-form__textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.pib-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.pib-form__submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.5rem;
}
.pib-form__submit:hover:not(:disabled) { background: var(--orange-light); }
.pib-form__submit:disabled { cursor: not-allowed; }

.pib-thanks { text-align: center; padding: 2rem 0; }
.pib-thanks__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.85rem; color: #1A1612; }
.pib-thanks__sub { font-size: 0.95rem; color: #5C5449; margin-bottom: 0.4rem; }
.pib-thanks__email { font-weight: 600; color: var(--orange); font-size: 1.05rem; }

/* HOW IT WORKS */
.pib-how { margin-bottom: 2.5rem; }
.pib-how h2 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9C9389;
  margin-bottom: 1rem;
}
.pib-steps { display: flex; flex-direction: column; gap: 0.85rem; }
.pib-step { display: flex; align-items: flex-start; gap: 1rem; }
.pib-step__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(242,137,27,0.1);
  border: 1px solid rgba(242,137,27,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 0.15rem;
}
.pib-step__text { font-size: 0.95rem; color: #5C5449; line-height: 1.55; }
.pib-step__text strong { color: #1A1612; }

/* OTHER OPTIONS */
.pib-other { text-align: center; padding-top: 2rem; border-top: 1px solid #E0D8CE; }
.pib-other p { font-size: 0.95rem; color: #5C5449; margin-bottom: 0.5rem; }
.pib-other a { color: #C8700F; font-weight: 600; border-bottom: 1px solid rgba(200,112,15,0.35); padding-bottom: 2px; }
.pib-other a:hover { color: #F2891B; border-color: #C8700F; }

@media (max-width: 600px) {
  .pib-main--light { padding: 2.5rem 1rem 3rem; }
  .pib-form { padding: 1.5rem; }
  .pib-pricing { grid-template-columns: 1fr; }
  .pib-form__row { grid-template-columns: 1fr; }
}
