/* ============================================================
   MAHABAD — Wholesale application page
   ============================================================ */

.ws-page { padding: 44px 0 110px; }

.ws-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}

/* ---------- Pitch column ---------- */

.ws-pitch h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
.ws-pitch h1 em { font-style: italic; color: var(--gold); }

.ws-lead { color: var(--muted); margin: 22px 0 42px; max-width: 480px; }

.ws-benefits { display: flex; flex-direction: column; gap: 26px; margin-bottom: 48px; }

.ws-benefits li {
  display: flex;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.wsb-num {
  font-family: var(--font-num);
  font-size: 1.05rem;
  color: var(--red);
  flex-shrink: 0;
  padding-top: 2px;
}

.ws-benefits strong {
  display: block;
  font-family: var(--font-caps);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.ws-benefits p { color: var(--muted); font-size: .92rem; max-width: 400px; }

/* steps */

.ws-steps-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ws-step {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ws-step b {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-num);
  font-weight: 500;
  color: var(--gold-bright);
  background: radial-gradient(circle at 30% 25%, rgba(201,162,94,.18), transparent 65%);
}
.ws-step span {
  font-family: var(--font-caps);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.ws-steps-row i {
  flex: 0 0 34px;
  height: 1px;
  background: var(--line);
}

/* ---------- Form column ---------- */

.ws-form-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 48px 44px;
}

.ws-form h2, .ws-success h2 { font-size: 2rem; }
.ws-form h2 em, .ws-success h2 em { font-style: italic; color: var(--gold); }

.ws-form-sub { color: var(--muted); font-size: .92rem; margin: 10px 0 8px; }

.ws-partner-login {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.ws-partner-login a {
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color .25s ease;
}
.ws-partner-login a:hover { color: var(--cream); }

.ws-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 22px;
}
.ws-consent input { position: absolute; opacity: 0; pointer-events: none; }
.ws-consent .bc-box {
  width: 17px; height: 17px;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  position: relative;
  transition: background .2s ease;
}
.ws-consent input:checked ~ .bc-box { background: var(--gold); }
.ws-consent input:checked ~ .bc-box::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #171006;
  font-size: .72rem;
  font-weight: 600;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-family: var(--font-caps);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 13px 15px;
  transition: border-color .25s ease;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(162, 149, 127, .55); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='m1 1 4 4 4-4' stroke='%23c9a25e' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}

.ws-region-note {
  font-size: .82rem;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding: 10px 14px;
  background: rgba(201, 162, 94, .05);
  margin-bottom: 26px;
}
.ws-region-note strong { color: var(--cream); font-weight: 500; }

.ws-submit { width: 100%; text-align: center; padding-block: 18px; }

.ws-terms {
  font-size: .76rem;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

/* ---------- Success state ---------- */

.ws-success { text-align: center; padding: 40px 10px; }

.ws-success-seal {
  width: 74px; height: 74px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 1.5rem;
  background: radial-gradient(circle at 30% 25%, rgba(201,162,94,.2), transparent 65%);
}

.ws-success p { color: var(--muted); max-width: 380px; margin: 16px auto 32px; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .ws-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 820px) {
  .ws-page { padding: 28px 0 76px; }
  .ws-form-wrap { padding: 34px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
