/* ============================================================
   FitPrint Studio — Forms & Pages Stylesheet
   ============================================================ */

/* ── Form page hero ─────────────────────────────────────── */
.form-page-hero {
  background: var(--black);
  padding: 80px 0 48px;
  margin-top: var(--nav-h);
}
.form-page-hero h1 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  color: var(--white);
  margin: 8px 0 12px;
  line-height: 1;
}
.form-page-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  line-height: 1.6;
}

/* ── Order notice banner ────────────────────────────────── */
.order-notice {
  padding: 20px var(--pad);
}
.order-notice__inner {
  background: rgba(232,0,29,.06);
  border: 1px solid rgba(232,0,29,.2);
  border-left: 4px solid var(--red);
  border-radius: 0 2px 2px 0;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: #444;
  line-height: 1.7;
}
.order-notice__inner svg {
  width: 20px; height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}
.order-notice__inner a { color: var(--red); text-decoration: none; font-weight: 600; }

/* ── Page body layout ───────────────────────────────────── */
.form-page-body { padding: 56px 0 80px; }
.form-page-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Sidebar info ───────────────────────────────────────── */
.form-page-info h2 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

/* USP list */
.form-usp { list-style: none; margin-bottom: 28px; }
.form-usp li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.form-usp li svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

/* Contact info list */
.contact-info-list { list-style: none; margin-bottom: 28px; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-info-list li svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-list li strong {
  display: block;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}
.contact-info-list li a,
.contact-info-list li address {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-style: normal;
}
.contact-info-list li a:hover { color: var(--red); }

/* Shortcut buttons */
.form-shortcuts { margin: 20px 0; }
.form-shortcuts__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray);
  margin-bottom: 10px;
}
.shortcut-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  transition: border-color .2s, background .2s;
}
.shortcut-btn svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
.shortcut-btn:hover { border-color: var(--red); background: rgba(232,0,29,.03); }

/* Contact strip */
.form-contact-strip {
  background: var(--off);
  border-radius: 2px;
  padding: 16px;
  margin-top: 8px;
  text-align: center;
}
.form-contact-strip p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
}

/* Order steps */
.order-steps { list-style: none; margin-bottom: 28px; counter-reset: steps; }
.order-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.order-steps li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.order-steps li div strong { display: block; font-size: 14px; color: #222; margin-bottom: 3px; }
.order-steps li div p { font-size: 13px; color: var(--gray); margin: 0; line-height: 1.5; }

/* ── Form card ──────────────────────────────────────────── */
.form-card {
  background: var(--off);
  border-radius: 2px;
  padding: 36px;
}

/* ── Form sections ──────────────────────────────────────── */
.form-section-title {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--black);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: block;
}
.form-section-title:first-child { margin-top: 0; }

/* ── Checkbox label ─────────────────────────────────────── */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--red);
}
.checkbox-label a { color: var(--red); text-decoration: none; font-weight: 600; }
.checkbox-label a:hover { text-decoration: underline; }

/* ── Field note ─────────────────────────────────────────── */
.form-field-note {
  font-size: 11px;
  color: var(--gray);
  margin-top: 6px;
  line-height: 1.5;
}
.form-field-note a { color: var(--red); text-decoration: none; }

/* ── Legal note ─────────────────────────────────────────── */
.form-legal-note {
  font-size: 11px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 16px;
}
.form-legal-note a { color: var(--red); text-decoration: none; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1000px) {
  .form-page-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-page-info { order: 2; }
  .form-card { order: 1; }
}
@media (max-width: 640px) {
  .form-page-hero { padding: 60px 0 36px; }
  .form-page-hero h1 { font-size: 32px; }
  .form-card { padding: 20px 16px; }
  .order-notice__inner { flex-direction: column; }
}
