.form-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 32px 120px;
  z-index: 2;
  position: relative;
}

.form-hero {
  text-align: center;
  margin-bottom: 56px;
}

.form-hero h1 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 18px;
}

.form-hero-sub {
  color: var(--gray);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   Pricing card
============================================ */
.pricing-card {
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid rgba(239, 223, 180, 0.12);
  text-align: center;
}

.pricing-name {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--cream);
  font-size: 16px;
}

.pricing-amount {
  font-family: "Unbounded", var(--font);
  font-weight: 800;
  font-size: 32px;
  color: var(--cream);
}

.pricing-period { font-size: 15px; color: var(--gray); }
.pricing-plus { color: var(--gray); font-size: 18px; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}

.pricing-features li {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .pricing-card { padding: 28px; }
  .pricing-price { flex-wrap: wrap; }
}

/* ============================================
   Form
============================================ */
.lead-form {
  background: var(--bg-light);
  border: 1px solid rgba(239, 223, 180, 0.12);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.field span {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}

.field em {
  color: var(--gold);
  font-style: normal;
}

.field small {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.5;
}

.field-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.field-row .field { min-width: 220px; }

input, select, textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--cream);
  background: var(--bg);
  border: 1px solid rgba(239, 223, 180, 0.18);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

input::placeholder, textarea::placeholder { color: rgba(252, 246, 237, 0.35); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(239, 223, 180, 0.05);
}

input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(220, 120, 100, 0.6);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23efdfb4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea { resize: vertical; min-height: 80px; }

.tone-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.tone-option {
  position: relative;
  cursor: pointer;
}

.tone-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.tone-option span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(239, 223, 180, 0.18);
  background: var(--bg);
  color: var(--cream);
  font-size: 14px;
  transition: all 0.25s var(--ease-out);
}

.tone-option:hover span {
  border-color: var(--gold);
}

.tone-option input:checked + span {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  font-weight: 500;
}

.tone-option input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray);
  margin-top: -20px;
}
.form-note a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dark);
}
.form-note a:hover { border-color: var(--gold); }

/* ============================================
   Success / error states
============================================ */
.form-success {
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success .eyebrow { color: var(--bg); opacity: 0.6; }
.form-success h2 { font-size: 28px; color: var(--bg); }
.form-success p:not(.eyebrow) { max-width: 420px; opacity: 0.8; margin-bottom: 12px; }
.form-success .btn-ghost {
  border-color: rgba(36, 30, 33, 0.3);
  color: var(--bg);
}
.form-success .btn-ghost:hover {
  background: rgba(36, 30, 33, 0.08);
  border-color: var(--bg);
}

.form-error {
  text-align: center;
  color: #e08a76;
  background: rgba(224, 138, 118, 0.1);
  border: 1px solid rgba(224, 138, 118, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 14px;
}

@media (max-width: 640px) {
  .form-page { padding: 130px 20px 80px; }
  .lead-form { padding: 28px; }
  .field-row { flex-direction: column; gap: 20px; }
}
