/*
 * Paylocity landing page
 *
 * These styles were moved out of the WPBakery page content because the
 * editor strips inline <style> blocks on save. Keep everything scoped to
 * body.page-id-6666 so editor changes cannot remove the styling hook.
 */

/* Paylocity design tokens and base layout */
body.page-id-6666 {
  --pe-blue: #3676c5;
  --pe-teal: #35aec7;
  --pe-green: #799a05;
  --pe-navy: #1f3346;
  --pe-ink: #4a5054;
  --pe-muted: #6f7a83;
  --pe-light: #f5f8fb;
  --pe-border: #dfe8ef;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: var(--pe-ink);
  line-height: 1.65;
}
body.page-id-6666 * {
  box-sizing: border-box;
}
body.page-id-6666 a {
  transition: all 0.2s ease;
}

body.page-id-6666 .pe-hero,
body.page-id-6666 .pe-section,
body.page-id-6666 .pe-section-tight,
body.page-id-6666 .pe-final,
body.page-id-6666 .pe-form-section {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}
body.page-id-6666 .pe-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
body.page-id-6666 .pe-section {
  padding: 76px 0;
}
body.page-id-6666 .pe-section-tight {
  padding: 52px 0;
}
body.page-id-6666 .pe-hero {
  background: #252525;
  color: #fff;
  padding: 140px 0 86px;
  position: relative;
  overflow: hidden;
}
body.page-id-6666 .pe-hero:after {
  content: "";
  position: absolute;
  right: -140px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
body.page-id-6666 .pe-hero .pe-wrap {
  position: relative;
  z-index: 1;
}
body.page-id-6666 .pe-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.page-id-6666 h1,
body.page-id-6666 h2,
body.page-id-6666 h3 {
  color: inherit;
  line-height: 1.18;
  margin: 0 0 18px;
}
body.page-id-6666 h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
}
body.page-id-6666 .pe-hero-title {
  max-width: 860px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
}
body.page-id-6666 h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--pe-navy);
}
body.page-id-6666 h3 {
  font-size: 22px;
  color: var(--pe-navy);
}
body.page-id-6666 p {
  margin: 0 0 18px;
}
body.page-id-6666 .pe-lead {
  max-width: 790px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.92);
}
body.page-id-6666 .pe-intro {
  max-width: 760px;
  font-size: 18px;
  color: var(--pe-muted);
}
body.page-id-6666 .pe-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}
body.page-id-6666 .pe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 3px;
  border: 2px solid transparent;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 13px;
}
body.page-id-6666 .pe-btn-primary {
  background: var(--pe-green);
  border-color: var(--pe-green);
  color: #fff;
}
body.page-id-6666 .pe-btn-primary:hover,
body.page-id-6666 .pe-btn-primary:focus {
  background: #668205;
  border-color: #668205;
  color: #fff;
}
body.page-id-6666 .pe-btn-secondary {
  background: #fff;
  border-color: #fff;
  color: var(--pe-navy);
}
body.page-id-6666 .pe-btn-secondary:hover,
body.page-id-6666 .pe-btn-secondary:focus {
  background: transparent;
  color: #fff;
}
body.page-id-6666 .pe-btn-outline {
  background: transparent;
  border-color: var(--pe-blue);
  color: var(--pe-blue);
}
body.page-id-6666 .pe-btn-outline:hover,
body.page-id-6666 .pe-btn-outline:focus {
  background: var(--pe-blue);
  color: #fff;
}
body.page-id-6666 .pe-btn:focus {
  outline: 3px solid rgba(53, 174, 199, 0.4);
  outline-offset: 3px;
}
body.page-id-6666 .pe-grid {
  display: grid;
  gap: 28px;
}
body.page-id-6666 .pe-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}
body.page-id-6666 .pe-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.page-id-6666 .pe-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--pe-border);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(31, 51, 70, 0.07);
}
body.page-id-6666 .pe-card p:last-child {
  margin-bottom: 0;
}
body.page-id-6666 .pe-card-paylocity-marketplace {
  position: relative;
  overflow: hidden;
}
body.page-id-6666 .pe-paylocity-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-id-6666 .pe-paylocity-wordmark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
body.page-id-6666 .pe-paylocity-wordmark-marketplace {
  min-height: 82px;
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(223, 232, 239, 0.95);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
body.page-id-6666 .pe-paylocity-wordmark-marketplace img {
  max-width: 260px;
}
body.page-id-6666 .pe-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(53, 174, 199, 0.12);
  color: var(--pe-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
}
body.page-id-6666 .pe-light {
  background: var(--pe-light);
}
body.page-id-6666 .pe-brand-lockup {
  background: #fff;
  border: 1px solid var(--pe-border);
  border-radius: 10px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(31, 51, 70, 0.08);
}
body.page-id-6666 .pe-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
body.page-id-6666 .pe-brand-pill {
  min-width: 210px;
  padding: 18px 22px;
  border-radius: 5px;
  background: var(--pe-light);
  color: var(--pe-navy);
  font-size: 22px;
  font-weight: 800;
}
body.page-id-6666 .pe-plus {
  color: var(--pe-teal);
  font-size: 34px;
  font-weight: 300;
}
body.page-id-6666 .pe-note {
  margin-top: 18px;
  color: var(--pe-muted);
  font-size: 14px;
}
body.page-id-6666 .pe-steps {
  counter-reset: pe-step;
  display: grid;
  gap: 18px;
}
body.page-id-6666 .pe-step {
  counter-increment: pe-step;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--pe-border);
  border-radius: 8px;
}
body.page-id-6666 .pe-step:before {
  content: counter(pe-step);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--pe-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
body.page-id-6666 .pe-callout {
  background: var(--pe-navy);
  color: #fff;
  border-radius: 10px;
  padding: 42px;
}
body.page-id-6666 .pe-callout h2,
body.page-id-6666 .pe-callout h3 {
  color: #fff;
}
body.page-id-6666 .pe-callout p {
  color: rgba(255, 255, 255, 0.9);
}
body.page-id-6666 .pe-mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
body.page-id-6666 .pe-mini-list li {
  position: relative;
  padding-left: 28px;
}
body.page-id-6666 .pe-mini-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pe-green);
  font-weight: 800;
}
body.page-id-6666 .pe-faq {
  display: grid;
  gap: 16px;
}
body.page-id-6666 details {
  background: #fff;
  border: 1px solid var(--pe-border);
  border-radius: 8px;
  padding: 20px;
}
body.page-id-6666 summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--pe-navy);
}
body.page-id-6666 details p {
  margin-top: 12px;
  margin-bottom: 0;
}
body.page-id-6666 .pe-final {
  background: linear-gradient(135deg, var(--pe-blue), var(--pe-teal));
  color: #fff;
  text-align: center;
}
body.page-id-6666 .pe-final h2 {
  color: #fff;
}
body.page-id-6666 .pe-final p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.92);
}
body.page-id-6666 .pe-small {
  font-size: 14px;
  color: var(--pe-muted);
}
@media (max-width: 900px) {
  body.page-id-6666 .pe-grid-2,
  body.page-id-6666 .pe-grid-3 {
    grid-template-columns: 1fr;
  }
  body.page-id-6666 .pe-section {
    padding: 56px 0;
  }
  body.page-id-6666 .pe-hero {
    padding: 116px 0 66px;
  }
  body.page-id-6666 .pe-card,
  body.page-id-6666 .pe-callout {
    padding: 26px;
  }
  body.page-id-6666 .pe-brand-pill {
    min-width: 0;
    width: 100%;
  }
  body.page-id-6666 .pe-plus {
    transform: rotate(90deg);
  }
}
@media (max-width: 560px) {
  body.page-id-6666 .pe-wrap {
    width: min(100% - 28px, 1120px);
  }
  body.page-id-6666 .pe-actions {
    align-items: stretch;
  }
  body.page-id-6666 .pe-btn {
    width: 100%;
    text-align: center;
  }
  body.page-id-6666 .pe-step {
    grid-template-columns: 1fr;
  }
  body.page-id-6666 .pe-step:before {
    margin-bottom: 4px;
  }
}
body.page-id-6666 .pe-hero {
  background: #252525 !important;
  background-image: none !important;
  padding-top: 190px !important;
}
body.page-id-6666 .pe-hero:after {
  display: none !important;
  content: none !important;
}
@media (max-width: 900px) {
  body.page-id-6666 .pe-hero {
    padding-top: 170px !important;
  }
}

/* Premium editorial hero */
body.page-id-6666 .pe-hero.pe-hero-editorial {
  isolation: isolate;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-color: #252525 !important;
  color: #fff;
  padding-bottom: 118px !important;
  position: relative;
  overflow: hidden;
}
body.page-id-6666 .pe-hero.pe-hero-editorial:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}
body.page-id-6666 .pe-hero.pe-hero-editorial:after {
  content: "" !important;
  display: block !important;
  position: absolute;
  right: clamp(-180px, -8vw, -60px);
  top: 82px;
  width: clamp(260px, 31vw, 460px);
  height: clamp(260px, 31vw, 460px);
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.11) 0,
    rgba(255, 255, 255, 0.04) 42%,
    rgba(255, 255, 255, 0) 70%
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
body.page-id-6666 .pe-hero-frame {
  position: absolute;
  inset: 34px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  pointer-events: none;
}
body.page-id-6666 .pe-hero-editorial-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}
body.page-id-6666 .pe-hero-rule {
  width: 1px;
  height: 72px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.55)
  );
  margin: 0 0 24px 4px;
}
body.page-id-6666 .pe-kicker.pe-kicker-editorial {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 9px 18px;
  margin-bottom: 18px;
  letter-spacing: 0.16em;
  font-size: 12px;
}
body.page-id-6666 .pe-hero-overline {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
body.page-id-6666 .pe-hero-title.pe-hero-title-editorial {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
body.page-id-6666 .pe-hero-title-editorial span {
  display: block;
}
body.page-id-6666 .pe-hero-title-editorial span:first-child {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
body.page-id-6666 .pe-lead.pe-lead-editorial {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.48;
}
body.page-id-6666 .pe-hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  max-width: 900px;
}
body.page-id-6666 .pe-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
}
body.page-id-6666 .pe-actions.pe-actions-editorial {
  margin-top: 38px;
  gap: 16px;
}
body.page-id-6666 .pe-btn.pe-btn-editorial-primary,
body.page-id-6666 .pe-btn.pe-btn-editorial-secondary {
  min-height: 54px;
  border-radius: 999px;
  padding: 16px 30px;
  letter-spacing: 0.08em;
  box-shadow: none;
}
body.page-id-6666 .pe-btn.pe-btn-editorial-primary {
  background: #799a05 !important;
  border-color: #799a05 !important;
  color: #fff !important;
}
body.page-id-6666 .pe-btn.pe-btn-editorial-primary:hover,
body.page-id-6666 .pe-btn.pe-btn-editorial-primary:focus {
  background: #668205 !important;
  border-color: #668205 !important;
  color: #fff !important;
  transform: translateY(-2px);
}
body.page-id-6666 .pe-btn.pe-btn-editorial-secondary {
  background: #fff !important;
  border-color: #fff !important;
  color: #252525 !important;
}
body.page-id-6666 .pe-btn.pe-btn-editorial-secondary:hover,
body.page-id-6666 .pe-btn.pe-btn-editorial-secondary:focus {
  background: transparent !important;
  border-color: #fff !important;
  color: #fff !important;
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  body.page-id-6666 .pe-hero.pe-hero-editorial {
    min-height: 0;
    padding-top: 170px !important;
    padding-bottom: 80px !important;
  }
  body.page-id-6666 .pe-hero-frame {
    inset: 18px;
    border-radius: 20px;
  }
  body.page-id-6666 .pe-hero-rule {
    height: 48px;
  }
  body.page-id-6666 .pe-hero-title.pe-hero-title-editorial {
    font-size: clamp(42px, 13vw, 64px);
    letter-spacing: -0.045em;
  }
  body.page-id-6666 .pe-lead.pe-lead-editorial {
    font-size: 18px;
  }
  body.page-id-6666 .pe-hero-meta {
    display: grid;
    grid-template-columns: 1fr;
  }
  body.page-id-6666 .pe-actions.pe-actions-editorial {
    align-items: stretch;
  }
  body.page-id-6666 .pe-actions.pe-actions-editorial .pe-btn {
    width: 100%;
  }
}

/* Premium integration lockup card */
body.page-id-6666 .pe-brand-lockup.pe-brand-lockup-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: left;
  padding: 42px;
  border-radius: 22px !important;
  border: 1px solid rgba(54, 118, 197, 0.18);
  background: linear-gradient(145deg, #ffffff 0%, #f8fbfd 52%, #eef5f9 100%);
  box-shadow:
    0 24px 70px rgba(31, 51, 70, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
body.page-id-6666 .pe-brand-lockup-premium:before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  pointer-events: none;
  z-index: 0;
}
body.page-id-6666 .pe-brand-lockup-premium:after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(121, 154, 5, 0.18),
    rgba(121, 154, 5, 0) 68%
  );
  z-index: 0;
  pointer-events: none;
}
body.page-id-6666 .pe-brand-glow {
  position: absolute;
  right: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(53, 174, 199, 0.24),
    rgba(53, 174, 199, 0) 70%
  );
  z-index: 0;
  animation: peBrandGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}
body.page-id-6666 .pe-brand-row.pe-brand-row-premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
body.page-id-6666 .pe-brand-pill.pe-brand-pill-premium {
  min-width: 0;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(223, 232, 239, 0.95);
  box-shadow:
    0 18px 44px rgba(31, 51, 70, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  color: var(--pe-navy);
  font-size: inherit;
  text-align: center;
  transform: none !important;
}
body.page-id-6666 .pe-brand-pill-premium:nth-of-type(2) {
  animation-delay: 0s;
}
body.page-id-6666 .pe-brand-pill-premium strong {
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--pe-navy);
}
body.page-id-6666 .pe-brand-logo-card {
  gap: 0;
  padding: 24px 18px;
}
body.page-id-6666 .pe-brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 84px;
}
body.page-id-6666 .pe-brand-logo {
  display: block;
  width: auto;
  max-width: min(180px, 82%);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
body.page-id-6666 .pe-brand-logo-privateeyes {
  max-width: 86px;
  max-height: 86px;
}
body.page-id-6666 .pe-brand-logo-paylocity {
  max-width: 96px;
  max-height: 84px;
}
body.page-id-6666 .pe-brand-name {
  font-size: 15px !important;
  font-weight: 800;
  letter-spacing: 0.01em !important;
}
body.page-id-6666 .pe-brand-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pe-muted);
}
body.page-id-6666 .pe-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
body.page-id-6666 .pe-connector-line {
  height: 1px;
  flex: 1;
  min-width: 18px;
  background: linear-gradient(
    90deg,
    rgba(53, 174, 199, 0),
    rgba(53, 174, 199, 0.85)
  );
}
body.page-id-6666 .pe-connector-line:last-child {
  background: linear-gradient(
    90deg,
    rgba(53, 174, 199, 0.85),
    rgba(53, 174, 199, 0)
  );
}
body.page-id-6666 .pe-plus.pe-plus-premium {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #252525;
  color: #fff;
  border: 3px solid #fff;
  box-shadow:
    0 14px 28px rgba(31, 51, 70, 0.18),
    0 0 0 1px rgba(53, 174, 199, 0.18);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  animation: pePlusPulse 2.8s ease-in-out infinite;
}
body.page-id-6666 .pe-brand-caption {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px auto 0;
  max-width: 760px;
  padding: 0;
  list-style: none;
}
body.page-id-6666 .pe-brand-caption span,
body.page-id-6666 .pe-brand-caption li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid rgba(223, 232, 239, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--pe-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
body.page-id-6666 .pe-note.pe-note-premium {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--pe-muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}
@keyframes peCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes pePlusPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 14px 28px rgba(31, 51, 70, 0.18),
      0 0 0 1px rgba(53, 174, 199, 0.18);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 18px 34px rgba(31, 51, 70, 0.22),
      0 0 0 8px rgba(53, 174, 199, 0.1);
  }
}
@keyframes peBrandGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(-24px, 22px, 0) scale(1.08);
    opacity: 1;
  }
}
body.page-id-6666 .pe-connector {
  animation: peConnectorBreathe 3.8s ease-in-out infinite;
}
@keyframes peConnectorBreathe {
  0%,
  100% {
    opacity: 0.72;
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.25);
  }
}
@media (prefers-reduced-motion: reduce) {
  body.page-id-6666 .pe-brand-glow,
  body.page-id-6666 .pe-brand-pill-premium,
  body.page-id-6666 .pe-plus-premium {
    animation: none !important;
    transform: none !important;
  }
}
@media (max-width: 900px) {
  body.page-id-6666 .pe-brand-lockup.pe-brand-lockup-premium {
    padding: 30px 22px;
  }
  body.page-id-6666 .pe-brand-row.pe-brand-row-premium {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body.page-id-6666 .pe-connector {
    min-height: 46px;
    transform: rotate(90deg);
    width: 92px;
    margin: 0 auto;
  }
  body.page-id-6666 .pe-brand-caption {
    grid-template-columns: 1fr;
  }
  body.page-id-6666 .pe-brand-pill.pe-brand-pill-premium {
    min-height: 116px;
  }
  body.page-id-6666 .pe-brand-logo-wrap {
    min-height: 76px;
  }
  body.page-id-6666 .pe-brand-logo-privateeyes {
    max-width: 76px;
    max-height: 76px;
  }
  body.page-id-6666 .pe-brand-logo-paylocity {
    max-width: 86px;
    max-height: 76px;
  }
}

/* Integration lockup final cascade rules */
body.page-id-6666 .pe-brand-lockup.pe-brand-lockup-premium {
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #f8fbfd 52%,
    #eef5f9 100%
  ) !important;
  border-radius: 22px !important;
  padding: 42px !important;
  text-align: left !important;
  box-shadow:
    0 24px 70px rgba(31, 51, 70, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset !important;
  border: 1px solid rgba(54, 118, 197, 0.18) !important;
}
body.page-id-6666 .pe-brand-lockup-premium .pe-brand-pill-premium {
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  transform: none !important;
  animation: none !important;
}
body.page-id-6666 .pe-brand-lockup-premium .pe-brand-row-premium {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr) !important;
  align-items: center !important;
}
body.page-id-6666 .pe-brand-lockup-premium .pe-connector {
  animation: peConnectorBreathe 3.8s ease-in-out infinite !important;
}
@media (max-width: 900px) {
  body.page-id-6666 .pe-brand-lockup.pe-brand-lockup-premium {
    padding: 30px 22px !important;
  }
  body.page-id-6666 .pe-brand-lockup-premium .pe-brand-row-premium {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

body.page-id-6666 .pe-brand-lockup-premium .pe-brand-row-premium {
  align-items: stretch !important;
}
body.page-id-6666 .pe-brand-lockup-premium .pe-brand-pill-premium {
  height: 132px !important;
  align-self: stretch !important;
  display: flex !important;
}
body.page-id-6666 .pe-brand-lockup-premium .pe-connector {
  align-self: center !important;
}
@media (max-width: 900px) {
  body.page-id-6666 .pe-brand-lockup-premium .pe-brand-pill-premium {
    height: 116px !important;
  }
}
body.page-id-6666 .pe-final {
  margin-bottom: 0 !important;
}
body.page-id-6666 .pe-final + .vc_empty_space,
body.page-id-6666 mainbody.page-id-6666 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
body.page-id-6666 .pe-section:last-child {
  margin-bottom: 0 !important;
}
body:has(.pe-paylocity-page) .wpb-content-wrapper {
  margin-bottom: 0 !important;
}

body.page-id-6666 .pe-final {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: hidden !important;
}
body.page-id-6666 .pe-final:before,
body.page-id-6666 .pe-final:after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.page-id-6666 .pe-final .pe-wrap {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/* On-page Paylocity signup form */
body.page-id-6666 {
  scroll-behavior: smooth;
}
body.page-id-6666 .pe-form-section {
  position: relative;
  background: #252525 !important;
  background-image:
    radial-gradient(
      circle at 84% 12%,
      rgba(121, 154, 5, 0.24),
      rgba(121, 154, 5, 0) 34%
    ),
    radial-gradient(
      circle at 8% 20%,
      rgba(53, 174, 199, 0.24),
      rgba(53, 174, 199, 0) 30%
    ),
    linear-gradient(135deg, #252525 0%, #1f333f 54%, #252525 100%) !important;
  color: #fff;
  text-align: left;
  padding: 92px 0 76px !important;
  margin-bottom: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: hidden !important;
}
body.page-id-6666 .pe-form-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}
body.page-id-6666 .pe-form-section:after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0) 68%
  );
  pointer-events: none;
}
body.page-id-6666 .pe-form-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 42px;
  align-items: start;
}
body.page-id-6666 .pe-form-copy {
  padding-top: 10px;
}
body.page-id-6666 .pe-form-section h2 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
body.page-id-6666 .pe-form-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}
body.page-id-6666 .pe-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
body.page-id-6666 .pe-form-points {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
body.page-id-6666 .pe-form-points li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}
body.page-id-6666 .pe-form-points li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #799a05;
  box-shadow: 0 0 0 6px rgba(121, 154, 5, 0.14);
}
body.page-id-6666 .pe-paylocity-id-panel {
  margin-top: 30px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
body.page-id-6666 .pe-paylocity-id-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.page-id-6666 .pe-paylocity-id-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
body.page-id-6666 .pe-form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(244, 248, 250, 0.96)
  );
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  color: var(--pe-navy);
}
body.page-id-6666 .pe-form-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, #799a05, #35aec7, #3676c5);
}
body.page-id-6666 .pe-form-card-header {
  padding: 32px 34px 18px;
  border-bottom: 1px solid rgba(31, 51, 70, 0.08);
}
body.page-id-6666 .pe-paylocity-wordmark-form {
  justify-content: flex-start;
  max-width: 280px;
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 51, 70, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 51, 70, 0.07);
}
body.page-id-6666 .pe-paylocity-wordmark-form img {
  max-width: 220px;
}
body.page-id-6666 .pe-form-card-header h3 {
  margin: 0 0 9px;
  color: var(--pe-navy);
  font-size: 28px;
  letter-spacing: -0.03em;
}
body.page-id-6666 .pe-form-card-header p {
  margin: 0;
  color: var(--pe-muted);
  font-size: 15px;
  line-height: 1.55;
}
body.page-id-6666 .pe-zoho-form-frame {
  padding: 10px 20px 20px;
  background: transparent;
}
body.page-id-6666 .pe-form-note {
  margin: 0;
  padding: 0 34px 30px;
  color: #6c7f8d !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}
body.page-id-6666 .pe-form-loading {
  padding: 30px 34px;
  color: #6c7f8d;
  font-size: 14px;
}
body.page-id-6666 #crmWebToEntityForm.zcwf_lblLeft {
  width: 100% !important;
  max-width: none !important;
  padding: 20px 14px 10px !important;
  margin: 0 !important;
  background: transparent !important;
}
body.page-id-6666 #crmWebToEntityForm .zcwf_row {
  margin: 0 0 16px !important;
}
body.page-id-6666 #crmWebToEntityForm .zcwf_col_lab {
  float: none !important;
  width: 100% !important;
  margin: 0 0 7px !important;
  padding: 0 !important;
  color: #1f333f !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
}
body.page-id-6666 #crmWebToEntityForm .zcwf_col_fld {
  float: none !important;
  width: 100% !important;
  padding: 0 !important;
}
body.page-id-6666 #crmWebToEntityForm .zcwf_col_fld input[type="text"],
body.page-id-6666 #crmWebToEntityForm .zcwf_col_fld textarea,
body.page-id-6666 #crmWebToEntityForm .zcwf_col_fld select {
  float: none !important;
  width: 100% !important;
  min-height: 48px !important;
  border: 1px solid rgba(31, 51, 70, 0.18) !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: #1f333f !important;
  padding: 12px 14px !important;
  box-shadow: 0 10px 24px rgba(31, 51, 70, 0.06) !important;
  font-size: 15px !important;
}
body.page-id-6666 #crmWebToEntityForm .zcwf_col_fld input[type="text"]:focus,
body.page-id-6666 #crmWebToEntityForm .zcwf_col_fld textarea:focus,
body.page-id-6666 #crmWebToEntityForm .zcwf_col_fld select:focus {
  border-color: #799a05 !important;
  box-shadow: 0 0 0 4px rgba(121, 154, 5, 0.16) !important;
  outline: 0 !important;
}
body.page-id-6666 #crmWebToEntityForm #formsubmit,
body.page-id-6666 #crmWebToEntityForm input[type="submit"] {
  min-height: 52px !important;
  padding: 14px 28px !important;
  border: 2px solid #799a05 !important;
  border-radius: 999px !important;
  background: #799a05 !important;
  color: #fff !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 16px 30px rgba(121, 154, 5, 0.24) !important;
  cursor: pointer !important;
}
body.page-id-6666 #crmWebToEntityForm input[type="reset"] {
  min-height: 52px !important;
  margin-left: 10px !important;
  padding: 14px 22px !important;
  border: 2px solid rgba(31, 51, 70, 0.14) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #1f333f !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  cursor: pointer !important;
}
body.page-id-6666 #crmWebToEntityForm #formsubmit:hover,
body.page-id-6666 #crmWebToEntityForm #formsubmit:focus {
  background: #668205 !important;
  border-color: #668205 !important;
  transform: translateY(-1px);
}
body.page-id-6666 #crmWebToEntityForm .zcwf_privacy_txt,
body.page-id-6666 #crmWebToEntityForm .zcwf_privacy {
  font-size: 12px !important;
  color: #6c7f8d !important;
}
body.page-id-6666 #crmWebToEntityForm .clearB {
  clear: both !important;
}
body.page-id-6666 .pe-form-section .pe-btn-secondary {
  border-color: #fff !important;
}
body.page-id-6666 .pe-form-section .pe-wrap {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}
@media (max-width: 980px) {
  body.page-id-6666 .pe-form-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  body.page-id-6666 .pe-form-section {
    padding: 72px 0 58px !important;
  }
  body.page-id-6666 .pe-form-card-header {
    padding: 28px 24px 16px;
  }
  body.page-id-6666 .pe-paylocity-wordmark-form {
    max-width: 250px;
    margin-bottom: 18px;
  }
  body.page-id-6666 .pe-zoho-form-frame {
    padding: 8px 12px 18px;
  }
  body.page-id-6666 .pe-form-note {
    padding: 0 24px 26px;
  }
}
@media (max-width: 560px) {
  body.page-id-6666 .pe-form-card {
    border-radius: 22px;
  }
  body.page-id-6666 .pe-paylocity-wordmark-marketplace {
    padding: 16px;
  }
  body.page-id-6666 .pe-paylocity-wordmark-marketplace img,
  body.page-id-6666 .pe-paylocity-wordmark-form img {
    max-width: 210px;
  }
  body.page-id-6666 #crmWebToEntityForm input[type="reset"] {
    width: 100% !important;
    margin: 10px 0 0 !important;
  }
  body.page-id-6666 #crmWebToEntityForm #formsubmit,
  body.page-id-6666 #crmWebToEntityForm input[type="submit"] {
    width: 100% !important;
  }
}

body.page-id-6666 .pe-form-section {
  margin-bottom: 0 !important;
}
/* Spacing and background helpers moved from former inline attributes */
body.page-id-6666 .pe-benefits-grid {
  margin-top: 32px;
}
body.page-id-6666 .pe-faq {
  margin-top: 28px;
}
body.page-id-6666 .pe-form-section {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: hidden !important;
}
body.page-id-6666 .pe-form-section .pe-actions {
  justify-content: center;
}
body.page-id-6666 .pe-hero.pe-hero-editorial {
  background-color: #252525 !important;
  background-image:
    radial-gradient(
      circle at 76% 18%,
      rgba(121, 154, 5, 0.22) 0,
      rgba(121, 154, 5, 0) 31%
    ),
    radial-gradient(
      circle at 14% 8%,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0) 26%
    ),
    linear-gradient(135deg, #252525 0%, #202020 58%, #2b2b2b 100%) !important;
  padding-top: 190px !important;
}

/* Footer transition seam */
body.page-id-6666 .qodef-page-footer,
body.page-id-6666 .footer_inner,
body.page-id-6666 .footer_top_holder {
  margin-top: 0 !important;
}

/* End Paylocity landing page styles */
