/* ─── BUY-WITH-ME PAGE STYLES (extends main /style.css) ──────── */

.bwm-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background:
    linear-gradient(135deg, rgba(232,93,4,0.15), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(232,93,4,0.18), transparent 50%),
    var(--dark);
  overflow: hidden;
}
.bwm-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.bwm-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--dark) 100%);
  pointer-events: none;
}
.bwm-hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.section--alt { background: var(--dark-2); }

.bwm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.bwm-card {
  background: var(--dark-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.bwm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,93,4,0.4);
}
.bwm-card__icon { font-size: 2rem; margin-bottom: 12px; }
.bwm-card__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}
.bwm-card p { color: var(--text-muted); font-size: 0.95rem; }

.bwm-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.bwm-step {
  position: relative;
  padding: 28px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}
.bwm-step__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.bwm-step h3 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.bwm-step p { color: var(--text-muted); }

.bwm-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.bwm-price {
  background: var(--dark-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.bwm-price--accent {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(232,93,4,0.08), var(--dark-3));
  box-shadow: 0 12px 32px rgba(232,93,4,0.15);
}
.bwm-price__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(232,93,4,0.15);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.bwm-price__amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.bwm-price__sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.bwm-price__list {
  text-align: left;
  font-size: 0.92rem;
  color: var(--text);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.bwm-price__list li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}
.bwm-price__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.bwm-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.bwm-note--center { text-align: center; margin-top: 14px; }

/* ─── FORM ──────────────────────────────────────────────────── */
.bwm-form {
  max-width: 720px;
  margin: 40px auto 0;
  background: var(--dark-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.bwm-form label {
  display: block;
  margin-bottom: 18px;
}
.bwm-form label > span {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.bwm-form label > span small {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
}
.bwm-form input,
.bwm-form select,
.bwm-form textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}
.bwm-form input:focus,
.bwm-form select:focus,
.bwm-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.bwm-form input[aria-invalid="true"] {
  border-color: #ef4444;
}
.bwm-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .bwm-form { padding: 24px; }
  .bwm-form__row { grid-template-columns: 1fr; }
}

.bwm-quote {
  background: var(--dark);
  border: 1px solid rgba(232,93,4,0.3);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 8px 0 20px;
}
.bwm-quote h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
#quote-lines {
  list-style: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
#quote-lines li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--text);
}
#quote-lines li.bwm-quote__warn {
  color: #fbbf24;
  font-size: 0.88rem;
  display: block;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
}
.bwm-quote__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-head);
  color: var(--white);
}
.bwm-quote__total strong { font-size: 1.4rem; }
.bwm-quote__total--muted {
  border-top: none;
  padding-top: 4px;
  color: var(--text-muted);
}
.bwm-quote__total--muted strong { font-size: 1rem; color: var(--text-muted); }

.bwm-status {
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.bwm-status--error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
}
.bwm-status--info {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.4);
  color: #93c5fd;
}

.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--line);
  padding: 24px 0;
  margin-top: 60px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer a { color: var(--orange); }
