/* ================================
   REQUEST PAGE — LIGHT / PAPER THEME
   ================================ */

body.request-page {
  background: #F7F2E8;
  color: #14213D;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.request-page h1,
body.request-page h2,
body.request-page h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Nav */
.req-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 48px;
  background: rgba(247, 242, 232, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 33, 61, 0.12);
}

.req-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #14213D;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.req-nav-logo-mark {
  font-size: 18px;
  color: #2563C7;
  line-height: 1;
}

.req-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.req-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #5F6B7A;
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0.01em;
}

.req-nav-links a:hover,
.req-nav-links a.active {
  color: #14213D;
  font-weight: 600;
}

/* Page layout */
.req-page {
  padding-top: 80px;
  min-height: 100vh;
}

/* Page header */
.req-header {
  padding: 80px 48px 0;
  text-align: center;
}

.req-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563C7;
  margin-bottom: 20px;
}

.req-header h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: #14213D;
  margin-bottom: 20px;
}

.req-header-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #5F6B7A;
  max-width: 560px;
  margin: 0 auto 0;
}

/* Process strip */
.req-process-strip {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 0 48px;
}

.req-process {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.req-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  text-decoration: none;
}

.req-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #14213D;
  color: #F7F2E8;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.req-step-label {
  font-size: 13px;
  font-weight: 600;
  color: #14213D;
  font-family: 'Inter', sans-serif;
}

.req-step-divider {
  width: 40px;
  height: 1px;
  background: rgba(20, 33, 61, 0.2);
  flex-shrink: 0;
}

/* Main content */
.req-content {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 0 24px 80px;
}

/* Form card */
.req-form-card {
  background: #FFFFFF;
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 2px 24px rgba(20, 33, 61, 0.06);
}

.req-form-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #14213D;
  margin-bottom: 12px;
}

.req-form-intro {
  font-size: 14px;
  line-height: 1.6;
  color: #5F6B7A;
  margin-bottom: 36px;
  padding: 16px 20px;
  background: #F7F2E8;
  border-radius: 8px;
  border-left: 3px solid #2563C7;
}

/* Form elements */
.req-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.req-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.req-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14213D;
}

.req-field label .req-label-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #5F6B7A;
  margin-left: 8px;
  font-size: 11px;
}

.req-field input[type="text"],
.req-field input[type="email"],
.req-field select,
.req-field textarea {
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #14213D;
  background: #F7F2E8;
  border: 1.5px solid rgba(20, 33, 61, 0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.req-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235F6B7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.req-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.req-field input:focus,
.req-field select:focus,
.req-field textarea:focus {
  border-color: #2563C7;
  box-shadow: 0 0 0 3px rgba(37, 99, 199, 0.12);
  background: #FFFFFF;
}

/* Row layout for some fields */
.req-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .req-form-row { grid-template-columns: 1fr; }
}

/* Checkbox */
.req-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}

.req-checkbox-wrap input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(20, 33, 61, 0.2);
  border-radius: 4px;
  background: #F7F2E8;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #2563C7;
}

.req-checkbox-wrap label {
  font-size: 13px;
  line-height: 1.5;
  color: #5F6B7A;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

/* Submit button */
.req-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #14213D;
  color: #F7F2E8;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s;
}

.req-submit-btn:hover { background: #1a2f57; }
.req-submit-btn:active { transform: scale(0.99); }
.req-submit-btn:disabled {
  background: #8A99AE;
  cursor: not-allowed;
  transform: none;
}

/* Info strips */
.req-info-strips {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.req-strip {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.req-strip-blue {
  background: rgba(37, 99, 199, 0.08);
  color: #1D4ED8;
  border: 1px solid rgba(37, 99, 199, 0.2);
}

.req-strip-amber {
  background: rgba(245, 166, 35, 0.1);
  color: #92400E;
  border: 1px solid rgba(245, 166, 35, 0.25);
}

/* Footer strip */
.req-footer-strip {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  text-align: center;
}

.req-footer-strip p {
  font-size: 12px;
  color: #5F6B7A;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ================================
   CONFIRMATION PAGE
   ================================ */

body.confirm-page {
  background: #F7F2E8;
  color: #14213D;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.confirm-page h1,
body.confirm-page h2,
body.confirm-page h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Page header */
.confirm-header {
  padding: 80px 48px 0;
  text-align: center;
}

.confirm-header h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: #14213D;
  margin-bottom: 20px;
}

.confirm-header-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #5F6B7A;
  max-width: 560px;
  margin: 0 auto 0;
}

/* Confirmation card */
.confirm-card {
  margin-top: 0;
}

.confirm-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #14213D;
  margin-bottom: 20px;
}

/* Summary grid */
.confirm-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.confirm-summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.confirm-summary-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5F6B7A;
}

.confirm-summary-value {
  font-size: 15px;
  font-weight: 500;
  color: #14213D;
}

/* Divider */
.confirm-divider {
  height: 1px;
  background: rgba(20, 33, 61, 0.1);
  margin: 28px 0;
}

/* Next steps */
.confirm-next {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.confirm-next li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #14213D;
  padding-left: 4px;
}

.confirm-next li::before {
  content: counter(linum);
  counter-increment: linum;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #14213D;
  color: #F7F2E8;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: 'Inter', sans-serif;
}

.confirm-next {
  counter-reset: linum;
}

.confirm-next li strong {
  font-weight: 700;
}

/* Format note */
.confirm-format-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(37, 99, 199, 0.06);
  border: 1px solid rgba(37, 99, 199, 0.15);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: #1D4ED8;
  margin-top: 20px;
}

.confirm-format-note svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #2563C7;
}

/* Email callout */
.confirm-email-callout {
  padding: 14px 18px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #92400E;
  margin-top: 20px;
}

/* Mobile */
@media (max-width: 640px) {
  .req-nav { padding: 14px 24px; gap: 20px; }
  .req-nav-links { gap: 16px; }
  .req-nav-links a { font-size: 12px; }
  .req-header { padding: 64px 24px 0; }
  .req-process-strip { padding: 0 24px; }
  .req-process { gap: 0; }
  .req-step { padding: 10px 14px; }
  .req-step-divider { width: 20px; }
  .req-content { padding: 0 16px 60px; }
  .req-form-card { padding: 28px 24px; }
  .req-form-card h2 { font-size: 22px; }

  .confirm-header { padding: 64px 24px 0; }
  .confirm-summary-grid { grid-template-columns: 1fr; }
}