/* Schedule-install page — mirrors the inquiry.css / waitlist.css
   vertical rhythm so /order looks like its sibling forms. */
:root {
  --bg: #07090E;
  --surface: #0D1117;
  --surface-2: #161B22;
  --border: #1C2333;
  --text: #E6EDF3;
  --text-muted: #8B949E;
  --accent: #0ABF9C;
  --accent-dim: rgba(10,191,156,0.12);
  --orange: #F4A636;
  --red: #F85149;
  --green: #3FB950;
  --radius: 10px;
  --label: 600 11px/1 'DM Sans', sans-serif;
  --body: 400 15px/1.6 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font: var(--body);
  min-height: 100vh;
}

.nav { background: rgba(7,9,14,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }

/* === PAGE LAYOUT === */
.ord-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 65px);
}

.ord-left {
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.ord-left-inner { max-width: 440px; width: 100%; }

.section-label {
  font: var(--label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.ord-headline {
  font: 800 42px/1.1 'Rubik', sans-serif;
  color: var(--text);
  margin-bottom: 16px;
}
.ord-sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.ord-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.ord-checklist { display: flex; flex-direction: column; gap: 20px; }
.ord-check-item { display: flex; align-items: flex-start; gap: 14px; }
.ord-check-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ord-check-title { font: 600 14px/1.3 'DM Sans', sans-serif; color: var(--text); margin-bottom: 3px; }
.ord-check-desc { font: 400 13px/1.5 'DM Sans', sans-serif; color: var(--text-muted); }

.ord-coverage-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 400 13px/1.5 'DM Sans', sans-serif;
  color: var(--text-muted);
  background: var(--accent-dim);
  border: 1px solid rgba(10,191,156,0.15);
  border-radius: 8px;
  padding: 12px 14px;
}
.ord-coverage-note svg { flex-shrink: 0; margin-top: 2px; }
.ord-coverage-note a { color: var(--accent); text-decoration: none; }
.ord-coverage-note a:hover { text-decoration: underline; }

/* Right panel */
.ord-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.ord-form-wrap { max-width: 440px; width: 100%; }
.ord-form-header { margin-bottom: 32px; }
.ord-form-header h2 { font: 700 28px/1.2 'Rubik', sans-serif; color: var(--text); margin-bottom: 8px; }
.ord-form-header p { color: var(--text-muted); font-size: 14px; }

/* === FORM === */
.ord-form { display: flex; flex-direction: column; gap: 20px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-label { font: 500 13px/1.3 'DM Sans', sans-serif; color: var(--text); }
.field-label .req { color: var(--orange); }

.field-input {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font: var(--body);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.field-input::placeholder { color: var(--text-muted); }
.field-input:focus { border-color: var(--accent); }

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

.field-error {
  font: 400 12px/1.4 'DM Sans', sans-serif;
  color: var(--red);
  display: none;
}

/* Radio group */
.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font: 500 13px/1.3 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 14px;
  transition: border-color 0.15s, background 0.15s;
}
.radio-label:hover { border-color: var(--accent); }
.radio-label input[type="radio"] { accent-color: var(--accent); }
.radio-label:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* Tier-specific layout — name on top, price hint below */
.radio-label-tier {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 16px;
  flex: 1 0 auto;
}
.radio-tier-name { font-weight: 600; font-size: 14px; color: var(--text); }
.radio-tier-price { font-size: 11px; color: var(--text-muted); letter-spacing: 0.02em; }

/* Form alert */
.form-alert {
  border-radius: 8px;
  padding: 12px 16px;
  font: 500 14px/1.4 'DM Sans', sans-serif;
  display: none;
}
.alert-success { background: rgba(63,185,80,0.1); border: 1px solid rgba(63,185,80,0.3); color: var(--green); }
.alert-error { background: rgba(248,81,73,0.1); border: 1px solid rgba(248,81,73,0.3); color: var(--red); }
.alert-info { background: var(--accent-dim); border: 1px solid rgba(10,191,156,0.3); color: var(--accent); }

/* Submit button */
.ord-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #07090E;
  font: 600 15px/1 'DM Sans', sans-serif;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  margin-top: 4px;
}
.ord-submit:hover:not(:disabled) { opacity: 0.92; transform: translateY(-1px); }
.ord-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-text {}
.btn-loading { display: none; }
.spin { animation: spin 0.9s linear infinite; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .ord-page { grid-template-columns: 1fr; }
  .ord-left { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 24px; }
  .ord-right { padding: 40px 24px; }
}
