/* ===== INVESTOR SIGNUP PAGE ===== */

/* ===== GUARANTEE BANNER ===== */
.guarantee-banner {
  background: linear-gradient(135deg, rgba(212,168,67,0.08) 0%, rgba(212,168,67,0.03) 100%);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.guarantee-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guarantee-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.guarantee-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.guarantee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.guarantee-list li {
  font-size: 0.875rem;
  color: var(--cream);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.guarantee-price {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 0.45rem 1rem;
  border-radius: 6px;
}

/* ===== ROI CALCULATOR ===== */
.roi-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.roi-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.roi-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.roi-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.roi-field-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
}

.roi-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
}

.roi-val-display {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(245,240,230,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(212,168,67,0.4);
}

.roi-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px rgba(212,168,67,0.4);
}

.roi-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.3rem;
}

.roi-range-labels span {
  font-size: 0.7rem;
  color: rgba(245,240,230,0.3);
}

.roi-outputs {
  background: rgba(245,240,230,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.roi-output-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245,240,230,0.04);
}

.roi-output-row:last-child { border-bottom: none; }

.roi-output-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.roi-output-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  font-family: 'DM Serif Display', serif;
}

.roi-cost { color: rgba(245,240,230,0.45); }

.roi-output-total {
  padding-top: 0.85rem;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(212,168,67,0.2) !important;
}

.roi-output-total .roi-output-label { color: var(--cream); font-weight: 600; font-size: 0.85rem; }
.roi-net { color: var(--gold) !important; font-size: 1.05rem !important; }

.roi-summary {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.roi-summary strong { color: var(--gold); }

/* ===== COMPARISON STRIP ===== */
.comp-strip {
  margin-bottom: 2rem;
}

.comp-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.comp-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.comp-col {
  background: rgba(15,22,41,0.95);
  padding: 1.25rem 1rem;
}

.comp-col-us {
  background: rgba(212,168,67,0.05);
  border-left: 2px solid rgba(212,168,67,0.4);
}

.comp-logo {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.comp-logo-other { color: var(--muted); font-weight: 500; }

.comp-price {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.comp-price-bad { color: rgba(245,240,230,0.45); }

.comp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.comp-bullets li {
  font-size: 0.75rem;
  color: var(--cream);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.comp-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
}

.comp-bullets-muted li { color: var(--muted); }
.comp-bullets-muted li::before { content: '–'; color: rgba(245,240,230,0.2); }

@media (max-width: 520px) {
  .comp-table { grid-template-columns: 1fr; }
  .comp-col { border-left: none; border-top: 1px solid var(--border); }
  .comp-col-us { border-left: none; border-top: 2px solid rgba(212,168,67,0.4); }
}



/* Shared form elements */
.form-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 2rem 6rem;
}

.form-container {
  width: 100%;
  max-width: 580px;
}

.form-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.form-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.form-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Form card */
.form-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

.form-section {
  margin-bottom: 2.5rem;
}
.form-section:last-of-type { margin-bottom: 0; }

.form-section-title {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* Field groups */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.field:last-child { margin-bottom: 0; }

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}

.field input,
.field select,
.field textarea {
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid rgba(245, 240, 230, 0.12);
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  width: 100%;
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 240, 230, 0.25);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212, 168, 67, 0.5);
  background: rgba(245, 240, 230, 0.06);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23F5F0E6' fill-opacity='0.4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field select option { background: var(--navy-mid); color: var(--cream); }

/* Budget range — two columns */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(245, 240, 230, 0.2);
  background: rgba(245, 240, 230, 0.04);
  cursor: pointer;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.checkbox-item span {
  font-size: 0.9rem;
  color: var(--cream);
}

/* Contact method radio */
.radio-group {
  display: flex;
  gap: 0.75rem;
}

.radio-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.radio-item:has(input:checked) {
  border-color: rgba(212, 168, 67, 0.5);
  background: rgba(212, 168, 67, 0.08);
}

.radio-item input[type="radio"] {
  display: none;
}

.radio-item label {
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  font-weight: 500;
}

.radio-item:has(input:checked) label {
  color: var(--gold);
}

/* Error message */
.form-error {
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #e07070;
  margin-bottom: 1.5rem;
}

/* Submit button */
.btn-primary {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.1s ease;
  margin-top: 1.5rem;
  letter-spacing: 0.01em;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ===== CONFIRMATION PAGE ===== */
.confirmation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.confirm-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.confirm-check-icon {
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
}

.confirm-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.confirm-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

.confirm-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.15s ease;
}

.confirm-next:hover { background: rgba(212, 168, 67, 0.18); }

/* Nav back link */
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.15s ease;
}
.nav-back:hover { color: var(--cream); }

/* Responsive */
@media (max-width: 600px) {
  .form-card { padding: 1.75rem 1.25rem; }
  .field-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .radio-group { flex-direction: column; }
}