/* Intake form + payment result pages */

/* ---- NAV ---- */
.intake-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
}

.intake-nav-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intake-logo {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.intake-nav-back {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.intake-nav-back:hover { color: var(--accent); }

/* ---- INTAKE MAIN ---- */
.intake-main {
  min-height: 100vh;
  padding: 100px 24px 80px;
}

.intake-container {
  max-width: 680px;
  margin: 0 auto;
}

.intake-header {
  margin-bottom: 40px;
}

.intake-title {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.intake-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.intake-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ---- PACKAGE SELECTOR ---- */
.package-selector {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.package-selector-label {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.package-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.pkg-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.pkg-tab:hover {
  border-color: rgba(201, 162, 39, 0.4);
}

.pkg-tab.active {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.pkg-tab-name {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.pkg-tab-price {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.pkg-tab-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.package-summary {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  padding-top: 4px;
}

/* ---- FORM ---- */
.intake-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section-title {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

.required {
  color: var(--accent);
}

.form-field input,
.form-field textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--fg);
  transition: border-color 0.15s;
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ---- UPLOAD ---- */
.upload-zone {
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.upload-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.upload-text {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.upload-link {
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
}

.upload-hint {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.7;
}

.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 10px;
}

.upload-preview-icon {
  color: var(--accent);
  font-weight: 700;
}

.upload-preview-name {
  font-size: 14px;
  color: var(--fg);
  flex: 1;
}

.upload-remove {
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s;
}

.upload-remove:hover { color: #e74c3c; }

/* ---- SUBMIT ---- */
.form-submit-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.form-submit-summary {
  display: flex;
  align-items: center;
  gap: 12px;
}

.submit-package {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-muted);
}

.submit-price {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-large {
  font-size: 16px;
  padding: 16px 40px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.form-note {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.8;
}

/* ---- RESULT PAGE ---- */
.result-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
}

.result-container {
  max-width: 560px;
  text-align: center;
}

.result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 32px;
}

.result-icon-success {
  background: rgba(39, 174, 96, 0.12);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.result-icon-neutral {
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.result-icon-warn {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.result-title {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.result-subtitle {
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 16px;
}

.result-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.result-next-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.result-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.result-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--accent);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .package-tabs {
    gap: 8px;
  }
  .pkg-tab {
    padding: 12px 6px;
  }
  .pkg-tab-name {
    font-size: 12px;
  }
  .btn-large {
    width: 100%;
    justify-content: center;
  }
}
