/* ==========================================================================
   ClearPass HR Solutions — Landing Page Stylesheet (lp-style.css)
   Self-contained. Enqueued ONLY for the 'lp' custom post type.
   Brand-consistent with the main site: #6027ff brand · #231f20 ink · paper bg.
   No external JS required (FAQ uses native <details>; sticky CTA is CSS).
   ========================================================================== */

/* ---------- Reset (scoped-safe; LP loads without main theme styles) ---------- */
.lp-body *, .lp-body *::before, .lp-body *::after { box-sizing: border-box; }
.lp-body { margin: 0; padding: 0; }
.lp-body img, .lp-body svg { max-width: 100%; height: auto; display: block; }
.lp-body a { color: inherit; text-decoration: none; }
.lp-body ul { list-style: none; margin: 0; padding: 0; }
.lp-body button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Tokens ---------- */
.lp-template {
  --brand: #6027ff;
  --brand-dark: #4a18d9;
  --ink: #231f20;
  --ink-2: #45414a;
  --ink-3: #6f6a72;
  --paper: rgb(96 39 255 / 2%);
  --paper-2: #6027ff0f;
  --line: #d8d4ce;
  --line-faint: #ebe7e1;
  --white: #fff;
  --brand-tint: rgba(96, 39, 255, 0.06);

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(3.5rem, 7vw, 6rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
.lp-body h1, .lp-body h2, .lp-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
.lp-body h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); letter-spacing: -0.03em; }
.lp-body h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.lp-body h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 500; letter-spacing: -0.01em; }
.lp-body p { margin: 0; color: var(--ink-2); }
.lp-body em { font-style: normal; color: var(--brand); font-weight: 500; }
.lp-body strong { font-weight: 700; color: var(--ink); }

/* Eyebrow: applies to the hero h1.lp-label AND every span.lp-label section eyebrow.
   (Kept as the shared .lp-label class — do not over-specify to h1.lp-label, which
   silently strips this styling from the span eyebrows used in inner sections.) */
.lp-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.lp-label::before { content: ''; width: 30px; height: 1.5px; background: var(--brand); display: inline-block; }

.lp-container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.lp-section { padding: var(--section) 0; }
.lp-bg-paper-2 { background: var(--paper-2); }

/* ---------- Custom LP header ---------- */
.custom-lp-header { position: relative; z-index: 10; background: transparent !important; }
.custom-lp-header .container { display: flex; align-items: center; justify-content: center; padding: 20px 0; border-bottom: 1px solid #141D3826; }
.custom-lp-header .container img { width: 14%; }
@media screen and (max-width:600px){.custom-lp-header .container img { width: 30%;}}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 1rem 1.7rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 0; border: 1.5px solid transparent;
  transition: all 0.25s var(--ease); white-space: nowrap;
}
.lp-btn .arrow { transition: transform 0.25s var(--ease); font-weight: 400; }
.lp-btn:hover .arrow { transform: translateX(4px); }
.lp-btn-primary{ background: var(--brand); color: #fff !important; }
.lp-btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(96, 39, 255, 0.5); }
.lp-btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.lp-btn-ghost:hover { background: var(--ink); color: var(--white); }
.lp-btn-block { width: 100%; }

/* ---------- Hero (split: copy + form card) ---------- */
.lp-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 100% 0%, var(--brand-tint) 0%, transparent 50%);
  padding: clamp(3.5rem, 5vw, 4.5rem) 0 var(--section);
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 4vw, 4rem);
  align-items: start;
}
@media (min-width: 940px) {
  .lp-hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); gap: clamp(3rem, 5vw, 2rem); }
}
.lp-hero-copy { display: flex; flex-direction: column; gap: 1.6rem; justify-content: center;
    height: 100%;}
.lp-hero-copy .headline-bold{margin-top: 0.4rem;
    text-wrap: balance;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.028em;}
.lp-hero-lede { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink-2); line-height: 1.55; max-width: 34em; }

.lp-hero-checklist { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.2rem; }
.lp-hero-checklist li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 1rem; color: var(--ink); line-height: 1.4;
}
.lp-hero-checklist li::before {
  content: ''; flex-shrink: 0; margin-top: 0.45rem;
  width: 8px; height: 8px; background: var(--brand);
}
.lp-hero-trust {
  margin-top: 0.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line-faint);
  font-size: 0.9rem; color: var(--ink-3);
}
.lp-hero-trust strong { color: var(--ink); font-weight: 600; }

/* ---------- Form card ---------- */
.lp-form-card {
  background: var(--white);
  border: 1px solid rgb(96 39 255 / 27%);
  padding: clamp(1.6rem, 2vw, 2.4rem);
  box-shadow: 0 30px 60px -38px rgb(96 39 255 / 27%);
}
.lp-form-card .lp-form-title {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 1.15rem; letter-spacing: -0.015em; color: var(--ink-2);
    margin-bottom: 0.8rem;
}
.lp-form-card .form-note {
    font-size: 0.9rem;
    font-style: normal;
    line-height: 1.4rem;
    color: var(--ink-3);margin-bottom: 10px !important;
}
.lp-form-card .wpcf7-form-control-wrap input,
.lp-form-card .wpcf7-form-control-wrap select,
.lp-form-card .wpcf7-form-control-wrap textarea,
.lp-form-card .fluentform input,
.lp-form-card .fluentform select,
.lp-form-card .fluentform textarea,
.lp-form-card .wpforms-field input,
.lp-form-card .wpforms-field select,
.lp-form-card .wpforms-field textarea {
  width: 100%; padding: 0.5rem 0.6rem !important; font-size: 0.8rem;margin-bottom: 13px;
  background: var(--white); border: 1px solid rgb(96 39 255 / 27%); border-radius: 0;
}
.lp-form-card .wpcf7-submit:hover{ background: var(--brand-dark) !important; }
.wpcf7-turnstile{margin-bottom:0 !important;}
/* ---------- Trust bar ---------- */
.lp-trust {padding: 1.6rem 0; }
.lp-trust-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem clamp(1.5rem, 3vw, 2.6rem); justify-content: center; }
.lp-trust-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-3);
}
.lp-trust-inner .lp-client { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 0.98rem; color: var(--ink-2); }

/* ---------- Stats row ---------- */
.lp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; 
/*background: var(--line); border: 1px solid var(--line); */
}
@media (min-width: 760px) { .lp-stats { grid-template-columns: repeat(4, 1fr); } }
.lp-stat {padding: clamp(1.6rem, 3vw, 2.6rem) 1.2rem; }
.lp-stat .lp-stat-num { font-family: 'Montserrat', sans-serif; font-weight: 200; font-size: clamp(2.4rem, 4.5vw, 3.4rem); line-height: 0.95; color: var(--ink); letter-spacing: -0.04em; }
.lp-stat .lp-stat-num .plus { color: var(--brand); font-weight: 400; }
.lp-stat .lp-stat-label { margin-top: 0.7rem; font-size: 0.9rem; color: var(--ink-2); line-height: 1.4; }

/* ---------- Section heading ---------- */
.lp-head { max-width: 640px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.lp-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lp-head h2 { margin-top: 1rem; }
.lp-head p { margin-top: 1rem; font-size: 1.08rem; color: var(--ink-2); }

/* ---------- Benefits grid ---------- */
.lp-benefits { display: grid; grid-template-columns: 1fr; gap: 1px; }
@media (min-width: 640px) { .lp-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .lp-benefits { grid-template-columns: repeat(3, 1fr); } }
.lp-benefit {padding: clamp(1.6rem, 2.6vw, 2.2rem); display: flex; flex-direction: column; gap: 0.7rem; transition: background 0.3s var(--ease); }
.lp-benefit:hover { background: var(--paper-2); }
.lp-benefit .lp-benefit-no { font-family: 'Montserrat', sans-serif; font-weight: 300; font-size: 1.9rem; color: var(--brand); letter-spacing: -0.02em; }
.lp-benefit h3{
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);}
.lp-benefit p { font-size: 0.97rem; line-height: 1.6; }

/* ---------- Scope list ---------- */
.lp-scope { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 760px) { .lp-scope { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 4vw, 4rem); } }
.lp-scope li { padding: 0.85rem 0; border-bottom: 1px solid var(--line-faint); display: flex; flex-direction:column;align-items: flex-start; gap: 0.8rem; font-size: 1rem; color: var(--ink-2);position:relative;}
.lp-scope li::before { content: ''; flex-shrink: 0; margin-top: 0.5rem; width: 7px; height: 7px; background: var(--brand);position: absolute;left: -19px;}
.lp-scope li strong { color: var(--ink); }
@media screen and (max-width:600px){.lp-scope li::before{display:none;}}
/* ---------- Heritage / backing block ---------- */
.lp-backing { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.lp-backing .em-hlt{color: var(--brand);}
@media (min-width: 880px) { .lp-backing { grid-template-columns: 1.1fr 0.9fr; gap: clamp(3rem, 5vw, 5rem); } }
.lp-backing-card { background: var(--ink); color: var(--paper); padding: clamp(2rem, 4vw, 3rem); }
.lp-backing-card .lp-label { color: rgba(250, 250, 248, 0.82) }
.lp-backing-card .lp-label::before { background: var(--brand); }
.lp-backing-card .lp-backing-num { font-family: 'Montserrat', sans-serif; font-weight: 200; font-size: clamp(3.5rem, 8vw, 6rem); line-height: 0.85; letter-spacing: -0.04em; margin: 1.2rem 0;color:#fff; }
.lp-backing-card .lp-backing-num .plus { color: var(--brand); }
.lp-backing-card p { color: rgba(250, 250, 248, 0.82); }
.lp-backing .split-visual .visual-label{margin-bottom: 65px;}
.lp-backing .split-visual{justify-content:center !important;aspect-ratio: 4 / 4;}
.lp-backing .split-visual .visual-body{max-width:max-content;}
.lp-backing .split-visual img{max-width: 60%;margin-top: 50px;}
.lp-backing .split-visual.brand::before {
    background: linear-gradient(165deg, rgba(12, 10, 16, 0.55) 0%, rgba(12, 10, 16, 0.85) 60%, rgba(12, 10, 16, 0.92) 100%);
}

/* ---------- FAQ (native <details>, no JS) ---------- */
.lp-faq { border-top: 1px solid var(--line); }
.lp-faq details { border-bottom: 1px solid var(--line); }
.lp-faq summary {
  list-style: none; cursor: pointer; padding: 1.3rem 2.5rem 1.3rem 0; position: relative;
  font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 1.08rem; color: var(--ink);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 300; color: var(--brand); transition: transform 0.25s var(--ease); }
.lp-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lp-faq .lp-faq-a { padding: 0 2.5rem 1.4rem 0; color: var(--ink-2); font-size: 1rem; line-height: 1.6; }

/* ---------- Final CTA band ---------- */
.lp-cta-band { background: var(--paper-2); border-top: 1px solid var(--line-faint); position: relative; overflow: hidden; }
.lp-cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 90% 100%, var(--brand-tint) 0%, transparent 55%); pointer-events: none; }
.lp-cta-band .lp-container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .lp-cta-band .lp-container { grid-template-columns: 1.4fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); } }
.lp-cta-band h2 { text-wrap: balance; }
.lp-cta-band .lp-cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.lp-cta-band .lp-cta-actions p { font-size: 1.02rem; margin-bottom: 0.5rem; }

/* ---------- Footer ---------- */
.lp-footer { background: var(--paper-2); border-top: 1px solid var(--line); padding-bottom: 2rem; }
.lp-footer img { height: 24px; }
.lp-footer-bottom {padding-top: 1.5rem;  font-family: 'Montserrat', sans-serif; font-size: 0.76rem; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; }

/* ---------- Sticky mobile CTA ---------- */
.lp-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; padding: 0.7rem var(--gutter);
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.lp-sticky-cta .lp-btn { width: 100%; }
@media (max-width: 939px) { .lp-sticky-cta { display: block; } .lp-body { padding-bottom: 74px; } }

/* ---------- Subtle load reveal (CSS-only, optional) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .lp-hero-copy > *, .lp-form-card { animation: lpFade 0.7s var(--ease) both; }
  .lp-hero-copy > *:nth-child(2) { animation-delay: 0.05s; }
  .lp-hero-copy > *:nth-child(3) { animation-delay: 0.1s; }
  .lp-hero-copy > *:nth-child(4) { animation-delay: 0.15s; }
  .lp-form-card { animation-delay: 0.1s; }
}
@keyframes lpFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
/* ==========================================================================
   VISA LANDING PAGES — colourful design add-on (.lpc-* namespace)
   ADDITIVE ONLY. Every selector below is new (.lpc-* or .lp-faq-wrap); none
   redefines an existing .lp-* rule, so the Payroll/PRO pages are unaffected.
   Colours use only the brand tokens defined on .lp-template above:
   var(--brand) #6027ff, var(--brand-dark) #4a18d9, white, and existing
   ink/line tokens. No other colours are introduced.
   ========================================================================== */
.lp-template h1 em, .lp-template h2 em{color:#fff;}
/* ---------- FAQ width constraint (820px) ---------- */
.lp-faq-wrap { max-width: 820px; margin-left: auto; margin-right: auto; }

/* ---------- Gradient hero (brand -> brand-dark only) ---------- */
.lpc-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 7rem);
}
.lpc-hero::before {
  content: ''; position: absolute; left: -8%; bottom: -40%;
  width: 520px; height: 520px; border-radius: 50%; pointer-events: none;
  background: repeating-radial-gradient(circle, rgba(255,255,255,0.10) 0 1.5px, transparent 1.5px 26px);
  opacity: 0.5;
}
.lpc-hero::after {
  content: ''; position: absolute; right: -6%; top: -30%;
  width: 360px; height: 360px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at center, rgba(255,255,255,0.18) 0%, transparent 70%);
}
.lpc-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.lpc-blob.b1 { width: 120px; height: 120px; top: 12%; right: 8%; background: rgba(255,255,255,0.10); }
.lpc-blob.b2 { width: 64px; height: 64px; bottom: 16%; left: 6%; background: rgba(255,255,255,0.14); }

.lpc-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 4vw, 3.5rem); align-items: center;
}
@media (min-width: 940px) { .lpc-hero-inner { grid-template-columns: 1.05fr 0.95fr; } }

.lpc-hero-copy { display: flex; flex-direction: column; gap: 1.4rem; }
.lpc-eyebrow {
  font-family: 'Montserrat', sans-serif; font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: #fff;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.lpc-eyebrow::before { content: ''; width: 30px; height: 1.5px; background: #fff; display: inline-block; }

.lpc-hero-copy h2 {
  color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 300;
  font-size: clamp(2.4rem, 5.2vw, 3.85rem); line-height: 1.05; letter-spacing: -0.03em;
  text-wrap: balance; margin: 0;
}
.lpc-hero-copy h2 em { color: #fff; font-style: normal; font-weight: 600; }
.lpc-lede { color: rgba(255,255,255,0.85); font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.6; max-width: 34em; }

.lpc-checklist { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.2rem; }
.lpc-checklist li { display: flex; align-items: flex-start; gap: 0.65rem; color: #fff; font-size: 1rem; line-height: 1.4; }
.lpc-checklist li svg { flex-shrink: 0; width: 21px; height: 21px; margin-top: 1px; color: #fff; }

.lpc-hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.4rem; }
.lpc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.84rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.95rem 1.6rem; border-radius: 0; border: 1.5px solid transparent;
  transition: all 0.25s var(--ease); white-space: nowrap;
}
.lpc-btn .arrow { transition: transform 0.25s var(--ease); font-weight: 400; }
.lpc-btn:hover .arrow { transform: translateX(4px); }
.lpc-btn-white { background: #fff; color: var(--brand) !important; }
.lpc-btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(35,31,32,0.45); }
.lpc-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.lpc-btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Form sits in the hero's right column — reuses .lp-form-card above */
.lpc-form-col { position: relative; z-index: 2; }
.lpc-hero .lp-form-card { box-shadow: 0 40px 80px -34px rgba(35,31,32,0.5); border-color: rgba(255,255,255,0.4); }

/* ---------- Section spacing ---------- */
.lpc-section { padding: var(--section) 0; }

/* ---------- Icon feature cards (What we handle) ---------- */
.lpc-cards { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 640px) { .lpc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .lpc-cards { grid-template-columns: repeat(3, 1fr); } }
.lpc-card {
  background: #fff; border: 1px solid var(--line-faint); border-radius: 18px;
  padding: clamp(1.6rem, 2.4vw, 2.1rem); display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lpc-card:hover { transform: translateY(-6px); box-shadow: 0 28px 54px -30px rgba(96,39,255,0.5); border-color: rgba(96,39,255,0.3); }
.lpc-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; flex-shrink: 0;
}
.lpc-icon svg { width: 26px; height: 26px; }
.lpc-card h3 { font-size: 1.18rem; font-weight: 500; color: var(--ink); }
.lpc-card p { font-size: 0.97rem; line-height: 1.6; color: var(--ink-2); }

/* ---------- How it works (stepped) ---------- */
.lpc-steps { display: grid; grid-template-columns: 1fr; gap: 2.2rem; position: relative; }
@media (min-width: 820px) { .lpc-steps { grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); } }
.lpc-step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; position: relative; }
.lpc-step-badge {
  width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand-tint); border: 1.5px solid rgba(96,39,255,0.25); position: relative;
}
.lpc-step-badge svg { width: 34px; height: 34px; color: var(--brand); }
.lpc-step-num {
  position: absolute; top: -4px; right: -4px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.85rem; display: grid; place-items: center;
}
.lpc-step h3 { font-size: 1.15rem; font-weight: 500; color: var(--ink); }
.lpc-step p { font-size: 0.95rem; line-height: 1.55; color: var(--ink-2); max-width: 30ch; margin: 0 auto; }
@media (min-width: 820px) {
  .lpc-step:not(:last-child)::after {
    content: ''; position: absolute; top: 42px; left: calc(50% + 54px); right: calc(-50% + 54px); height: 2px;
    background: repeating-linear-gradient(90deg, rgba(96,39,255,0.45) 0 7px, transparent 7px 15px);
  }
}

/* ---------- Colourful stat band ---------- */
.lpc-statband {
  position: relative; overflow: hidden; color: #fff; border-radius: 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: clamp(2.2rem, 4vw, 3.2rem) clamp(1.5rem, 3vw, 2.5rem);
}
.lpc-statband::before {
  content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(255,255,255,0.10) 0 1.5px, transparent 1.5px 24px);
}
.lpc-statgrid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
@media (min-width: 760px) { .lpc-statgrid { grid-template-columns: repeat(4, 1fr); } }
.lpc-stat { text-align: center; }
.lpc-stat .n { font-family: 'Montserrat', sans-serif; font-weight: 200; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -0.04em; }
.lpc-stat .n .plus { font-weight: 400; opacity: 0.85; }
.lpc-stat .l { margin-top: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.4; }

/* ---------- Why ClearPass (reasons grid) ---------- */
.lpc-why { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 920px) { .lpc-why { grid-template-columns: 0.85fr 1.15fr; align-items: center; } }
.lpc-why-intro h2 { margin-top: 1rem; }
.lpc-why-intro p { margin-top: 1rem; font-size: 1.05rem; color: var(--ink-2); }
.lpc-reasons { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 620px) { .lpc-reasons { grid-template-columns: repeat(2, 1fr); } }
.lpc-reason {
  background: #fff; border: 1px solid var(--line-faint); border-left: 3px solid var(--brand);
  border-radius: 0 14px 14px 0; padding: 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.4rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.lpc-reason:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -26px rgba(96,39,255,0.45); }
.lpc-reason h4 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.lpc-reason p { font-size: 0.92rem; line-height: 1.5; color: var(--ink-2); }

/* ---------- Colourful final CTA (brand -> brand-dark only) ---------- */
.lpc-cta {
  position: relative; overflow: hidden; color: #fff; border-radius: 28px; text-align: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: clamp(2.6rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}
.lpc-cta::before {
  content: ''; position: absolute; left: -50px; bottom: -80px; width: 300px; height: 300px; border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(255,255,255,0.10) 0 1.5px, transparent 1.5px 26px);
}
.lpc-cta > * { position: relative; z-index: 1; }
.lpc-cta h2 { color: #fff; }
.lpc-cta p { color: rgba(255,255,255,0.85); max-width: 48ch; margin: 1rem auto 1.7rem; font-size: 1.05rem; }