.gpppc-form-wrap {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(12,12,16,0.82);
  border-radius: 20px;
  padding: 26px;
  color: #f5f7fa;
}
.gpppc-form-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.1;
  color: #f5f7fa;
}
.gpppc-form-intro {
  margin: 0 0 20px;
  opacity: 0.86;
  color: rgba(245,247,250,0.8);
}
.gpppc-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}
.gpppc-alert--success {
  background: rgba(18, 102, 54, 0.22);
  border: 1px solid rgba(47, 171, 94, 0.45);
}
.gpppc-alert--error {
  background: rgba(126, 28, 28, 0.22);
  border: 1px solid rgba(210, 73, 73, 0.45);
}
.gpppc-form-section {
  margin: 0 0 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gpppc-form-section:last-of-type {
  margin-bottom: 14px;
}
.gpppc-form-section__head {
  margin-bottom: 14px;
}
.gpppc-form-section__head h4 {
  margin: 0 0 4px;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,247,250,0.96);
}
.gpppc-form-section__head p {
  margin: 0;
  color: rgba(245,247,250,0.62);
  font-size: 0.92rem;
}
.gpppc-lead-form label,
.gpppc-fieldset {
  display: block;
  margin: 0;
}
.gpppc-lead-form label > span,
.gpppc-fieldset > legend {
  display: block;
  margin: 0 0 8px;
  font-weight: 600;
  color: #f5f7fa;
}
.gpppc-grid {
  display: grid;
  gap: 16px;
}
.gpppc-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gpppc-lead-form input[type="text"],
.gpppc-lead-form input[type="email"],
.gpppc-lead-form input[type="date"],
.gpppc-lead-form select,
.gpppc-lead-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #f5f7fa;
  padding: 12px 14px;
  box-sizing: border-box;
  line-height: 1.35;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.gpppc-lead-form input::placeholder,
.gpppc-lead-form textarea::placeholder {
  color: rgba(245,247,250,0.45);
}
.gpppc-lead-form input:focus,
.gpppc-lead-form select:focus,
.gpppc-lead-form textarea:focus {
  outline: none;
  border-color: rgba(181,0,48,0.85);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(181,0,48,0.12);
}
.gpppc-lead-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23F5F7FA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
.gpppc-lead-form select,
.gpppc-lead-form select option {
  color: #f5f7fa;
}
.gpppc-lead-form select:invalid {
  color: rgba(245,247,250,0.68);
}
.gpppc-lead-form select option {
  background: #111318;
}
.gpppc-fieldset {
  margin: 0 0 18px;
}
.gpppc-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.gpppc-checkbox-grid label,
.gpppc-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.gpppc-checkbox-grid label > span,
.gpppc-consent > span {
  margin: 0;
  font-weight: 500;
  color: rgba(245,247,250,0.88);
}
.gpppc-lead-form input[type="checkbox"] {
  margin-top: 0.15rem;
}
.gpppc-notes-field {
  margin-bottom: 16px !important;
}
.gpppc-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gpppc-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(135deg, #b50030, #d63661);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(181,0,48,0.24);
}
.gpppc-submit:hover {
  filter: brightness(1.03);
}
.gpppc-submit:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
}
.gpppc-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
@media (max-width: 782px) {
  .gpppc-form-wrap {
    padding: 22px;
  }
  .gpppc-grid--2,
  .gpppc-checkbox-grid {
    grid-template-columns: 1fr;
  }
}
