/* Promevo — PPC Form Panel Module v1.0 */

.pmo-form-panel {
  background: #f7f9fc;
  border-bottom: 1px solid #e8ecf4;
  padding: 56px 0;
}

.pmo-form-panel__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── LEFT: PITCH ── */
.pmo-form-panel__pitch { padding-top: 8px; }

.pmo-form-panel__eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6FC6AC;
  margin-bottom: 10px;
}

.pmo-form-panel__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: #233166;
  line-height: 1.25;
  margin-bottom: 14px;
}

.pmo-form-panel__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #7272B5;
  margin-bottom: 24px;
}

.pmo-form-panel__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pmo-form-panel__bullet {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #233166;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}
.pmo-form-panel__bullet::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background: #e6f7f3;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%236FC6AC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Funding callout */
.pmo-form-panel__funding {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #e6f7f3;
  border: 1px solid #6FC6AC;
  border-radius: 10px;
  padding: 14px 16px;
}
.pmo-form-panel__funding-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: #6FC6AC;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pmo-form-panel__funding-icon svg { width: 12px; height: 12px; }
.pmo-form-panel__funding-text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #233166;
  line-height: 1.55;
  font-weight: 400;
}
.pmo-form-panel__funding-text strong { color: #6FC6AC; font-weight: 700; }

/* ── RIGHT: FORM CARD ── */
.pmo-form-panel__card {
  background: #ffffff;
  border: 1px solid #e8ecf4;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(35,49,102,0.12);
  padding: 36px 32px 28px;
}

.pmo-form-panel__card-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6FC6AC
  background: #e6f7f3;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.pmo-form-panel__card-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #233166;
  line-height: 1.3;
  margin-bottom: 6px;
}

.pmo-form-panel__card-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #6FC6AC;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* HubSpot form overrides — scoped to this module */
.pmo-form-panel__hs-target .hs-form label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #233166 !important;
  display: block;
  margin-bottom: 5px;
}
.pmo-form-panel__hs-target .hs-input {
  width: 100% !important;
  padding: 10px 13px !important;
  border: 1.5px solid #e8ecf4 !important;
  border-radius: 7px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  color: #233166 !important;
  background: #f7f9fc !important;
  transition: border-color 0.2s ease;
  box-sizing: border-box !important;
}
.pmo-form-panel__hs-target .hs-input:focus {
  border-color: #6FC6AC !important;
  background: #ffffff !important;
  outline: none !important;
}
.pmo-form-panel__hs-target .hs-form-field {
  margin-bottom: 14px !important;
}
.pmo-form-panel__hs-target .hs-button {
  width: 100% !important;
  background: #6FC6AC !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 6px !important;
}
.pmo-form-panel__hs-target .hs-button:hover {
  background: #5ab49a !important;
  transform: translateY(-1px);
}
.pmo-form-panel__hs-target .hs-error-msgs label {
  color: #c0392b !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.pmo-form-panel__privacy {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: #8a9abf;
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.pmo-form-panel__privacy a {
  color: #6FC6AC;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .pmo-form-panel__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .pmo-form-panel { padding: 40px 0; }
  .pmo-form-panel__card { padding: 28px 20px 20px; }
}
