/* "Access Top Vetted Talent" popup -- replaces the old Elementor popup +
   n8n workflow 1Ymp15gC6kOsjPqq. Injected into every lifted page by
   postprocess-lift.mjs. Colors/fonts match the GC brand kit (navy #112241,
   DM Sans headings, Roboto body -- see public/_lift/assets .elementor-kit-7). */
.gc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 34, 65, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gc-popup-overlay.gc-popup-visible {
  opacity: 1;
}
.gc-popup {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(17, 34, 65, 0.35);
  font-family: "Roboto", Arial, sans-serif;
  transform: translateY(10px);
  transition: transform 0.2s ease;
}
.gc-popup-overlay.gc-popup-visible .gc-popup {
  transform: translateY(0);
}
.gc-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #54595f;
  cursor: pointer;
  padding: 4px 8px;
}
.gc-popup-close:hover {
  color: #112241;
}
.gc-popup-title {
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #112241;
  margin: 0 0 8px;
}
.gc-popup-subtitle {
  font-size: 15px;
  color: #474e5c;
  margin: 0 0 20px;
  line-height: 1.5;
}
.gc-popup-form {
  display: flex;
  flex-direction: column;
}
.gc-popup-label {
  font-size: 13px;
  color: #54595f;
  margin-bottom: 4px;
}
.gc-popup-input {
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
  margin-bottom: 14px;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.gc-popup-input:focus {
  outline: 2px solid #112241;
  outline-offset: 1px;
}
/* Honeypot: off-screen via position, NOT display:none (some bots skip
   display:none fields) -- same pattern as the footer form's honeypot. */
.gc-popup-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  overflow: hidden;
}
.gc-popup-submit {
  background: #112241;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}
.gc-popup-submit:hover {
  background: #0b1830;
}
.gc-popup-submit:disabled {
  opacity: 0.6;
  cursor: default;
}
.gc-popup-status {
  font-size: 13px;
  margin: 10px 0 0;
  min-height: 16px;
  color: #c50001;
}
.gc-popup-status-ok {
  color: #1a7f37;
}

@media (max-width: 480px) {
  .gc-popup {
    padding: 24px 20px;
  }
  .gc-popup-title {
    font-size: 20px;
  }
}
