/* ============================================================
   OITO-80 , pre-registo.css
   ============================================================ */
.prereg-hero {
  position: relative; height: 58vh; min-height: 420px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.prereg-hero-media { position: absolute; inset: 0; }
.prereg-hero-media img { width:100%; height:100%; object-fit:cover; }
.prereg-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 70%);
}
.prereg-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 48px 70px; width: 100%;
}
.prereg-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.prereg-tag::before { content:''; width:20px; height:2px; background:var(--blue); flex-shrink:0; }
.prereg-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px,6vw,80px);
  font-weight: 800; text-transform: uppercase;
  line-height: .93; color: var(--white); margin-bottom: 16px;
}
.prereg-lead {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,.65); max-width: 480px; line-height: 1.7;
}

/* FORM SECTION */
.prereg-section { padding: 96px 48px; background: var(--white); }
.prereg-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: start;
}
.prereg-info-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.prereg-info-tag::before { content:''; width:20px; height:2px; background:var(--blue); flex-shrink:0; }
.prereg-info-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px,3.5vw,48px);
  font-weight: 800; text-transform: uppercase;
  line-height: .95; margin-bottom: 22px;
}
.prereg-info-body { font-size: 16px; font-weight: 400; line-height: 1.8; color: #555; margin-bottom: 44px; }
.prereg-checklist { display: flex; flex-direction: column; margin-bottom: 48px; }
.prereg-check {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--gray-e);
}
.prereg-check:first-child { border-top: 1px solid var(--gray-e); }
.check-icon {
  width: 22px; height: 22px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.check-icon svg { width: 11px; height: 11px; stroke: white; fill: none; stroke-width: 3; }
.check-title { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.check-desc { font-size: 13px; font-weight: 300; color: #888; line-height: 1.6; }
.prereg-promises { display: flex; flex-direction: column; gap: 10px; }
.promise {
  font-size: 13px; font-weight: 400; color: #888;
  display: flex; align-items: center; gap: 10px;
}
.promise::before { content:'✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* FORM */
.form-wrap { background: var(--gray-f5); padding: 48px; border-radius: 2px; }
.form-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: 6px;
}
.form-subtitle { font-size: 14px; font-weight: 300; color: #888; margin-bottom: 36px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #777; margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 15px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--black); background: var(--white);
  border: 1.5px solid var(--gray-e); border-radius: 2px;
  outline: none; transition: border-color .2s; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 17px;
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 2px; cursor: pointer;
  transition: background .2s, transform .2s; margin-top: 6px;
}
.form-submit:hover { background: #023acf; transform: translateY(-1px); }
.form-note { font-size: 12px; font-weight: 300; color: #aaa; margin-top: 12px; text-align: center; line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 56px 20px; }
.form-success-icon {
  width: 60px; height: 60px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 22px;
}
.form-success-icon svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2.5; }
.form-success h3 {
  font-family: var(--font-display); font-size: 26px;
  font-weight: 800; text-transform: uppercase; margin-bottom: 12px;
}
.form-success p { font-size: 15px; font-weight: 300; color: #666; line-height: 1.7; }

@media (max-width: 1024px) {
  .prereg-inner { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
  .prereg-section { padding: 64px 24px; }
  .prereg-hero-content { padding: 0 24px 56px; }
}
