/* ===== PRIVATE LMS CLOUD PAGE — FINAL DROP-IN ===== */

/* Remove Impreza inner container width */
.plms-hero-bg .l-section-h {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.plms-hero-bg {
  position: relative !important;

  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  margin-left: -50vw !important;

  margin-top: 0 !important;
  margin-bottom: 46px !important;

  min-height: 760px;
  overflow: hidden;

  /* Slightly reduce visual scale so artwork doesn't feel oversized */
  background-image: url("https://www.webhostingzone.org/wp-content/uploads/2026/04/private-lms-hero.png") !important;
  background-size: 78% auto !important;

  /* keep the image anchored to the right edge */
  background-position: calc(100% + 36px) bottom !important;
  background-repeat: no-repeat !important;
}

.plms-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  /* soft fade from left → transparent */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.85) 20%,
    rgba(255,255,255,0.6) 35%,
    rgba(255,255,255,0.2) 50%,
    rgba(255,255,255,0) 65%
  );

  z-index: 1;
}

.plms-hero-content {
  position: relative;
  z-index: 2;
}

.plms-hero-bg > .vc_column_container > .vc_column-inner {
  padding: 0 !important;
}

.plms-hero-bg .wpb_content_element {
  margin-bottom: 0 !important;
}

.plms-hero-content {
  width: 100%;
  max-width: 1440px;
  min-height: 760px;
  margin: 0 auto;
  padding: 74px 50px 60px 66px;
  box-sizing: border-box;
  position: relative;
}

/* Top icons */
.plms-top-icons {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 52px;
  color: #10233f;
  font-size: 18px;
  font-weight: 600;
}

.plms-top-icons br {
  display: none !important;
}

.plms-top-icons span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.plms-top-icons span:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 22px;
  background: rgba(16,35,63,0.28);
  margin-left: 18px;
}

.plms-icon-shield::before {
  content: "🛡️";
}

.plms-icon-code::before {
  content: "〈/〉";
  color: #126cf2;
  font-weight: 800;
}

.plms-icon-cloud::before {
  content: "☁️";
}

/* Hero typography */
.plms-hero-content h1 {
  max-width: 650px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #071c36 !important;
  margin: 0 0 24px 0;
}

.plms-hero-content h1 span {
  color: #126cf2 !important;
}

.plms-subtitle {
  max-width: 560px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: #12243c !important;
  margin: 0 0 24px 0;
}

.plms-line {
  width: 40px;
  height: 3px;
  background: #126cf2;
  margin: 0 0 26px 0;
  border-radius: 5px;
}

.plms-note {
  max-width: 460px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: #1a2d45 !important;
  margin: 0;
}

/* Audience row — now in normal flow, not hidden below hero */
.plms-audience-inline {
  position: static !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
  margin-top: 46px;
  z-index: 5;
}

.plms-audience-inline div {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: #10233f !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Hide old circle styling because current HTML has no inner span */
.plms-audience-inline span {
  display: inline-flex;
}

/* Tablet */
@media (max-width: 991px) {
  .plms-hero-bg {
    min-height: 700px;
    background-size: 80% auto !important;
    background-position: calc(100% + 24px) bottom !important;
  }

  .plms-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.75);
    z-index: 1;
  }

  .plms-hero-content {
    position: relative;
    z-index: 2;
    min-height: 700px;
    padding: 48px 32px 44px 32px;
  }

  .plms-audience-inline {
    gap: 18px;
    margin-top: 34px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .plms-hero-bg {
    min-height: auto;
    background-size: cover !important;
    background-position: center bottom !important;
  }

  .plms-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.86);
    z-index: 1;
  }

  .plms-hero-content {
    position: relative;
    z-index: 2;
    min-height: auto;
    padding: 38px 22px;
  }

  .plms-top-icons {
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .plms-top-icons span:not(:last-child)::after {
    display: none;
  }

  .plms-hero-content h1 {
    font-size: 34px;
    letter-spacing: -0.6px;
  }

  .plms-subtitle {
    font-size: 18px;
  }

  .plms-note {
    font-size: 16px;
  }

  .plms-audience-inline {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }
}

/* Shared page sections */
.plms-section,
.plms-card-row,
.plms-soft,
.plms-cta {
  min-height: 0 !important;
}

.plms-section,
.plms-card-row {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box;
}

.plms-section {
  margin-top: 54px !important;
  margin-bottom: 18px !important;
}

.plms-card-row {
  margin-top: 18px !important;
  margin-bottom: 28px !important;
}

.plms-card-row + .plms-section {
  margin-top: 62px !important;
}

.plms-section + .plms-card-row {
  margin-top: 22px !important;
}

.plms-section .g-cols,
.plms-card-row .g-cols {
  align-items: stretch;
}

.plms-section .l-section-h,
.plms-card-row .l-section-h {
  max-width: none !important;
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.plms-section .vc_column-inner,
.plms-card-row .vc_column-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.plms-section .wpb_content_element,
.plms-card-row .wpb_content_element {
  margin-bottom: 0 !important;
}

.plms-section h2 {
  max-width: 780px;
  margin: 0 0 16px 0 !important;
  color: #071c36 !important;
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.plms-section > .l-section-h > .g-cols > .vc_col-sm-12 h2,
.plms-section .vc_col-sm-12 h2 {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.plms-intro {
  max-width: 760px;
  margin: 0 0 20px 0 !important;
  color: #384a61 !important;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
}

.plms-section .vc_col-sm-12 .plms-intro {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.plms-section p,
.plms-card p,
.plms-step p,
.plms-sidebox p {
  color: #42536a !important;
  font-size: 16px;
  line-height: 1.62;
}

.plms-section ul,
.plms-card ul,
.plms-sidebox ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.plms-section li,
.plms-card li,
.plms-sidebox li {
  position: relative;
  padding-left: 30px;
  color: #293d54;
  font-size: 16px;
  line-height: 1.5;
}

.plms-section li::before,
.plms-card li::before,
.plms-sidebox li::before {
  content: "";
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e7f7ff;
  box-shadow: inset 0 0 0 5px #126cf2;
}

/* Cards */
.plms-card-row .g-cols {
  row-gap: 18px;
}

.plms-card {
  position: relative;
}

.plms-card > .vc_column-inner,
.plms-sidebox > .vc_column-inner,
.plms-step > .vc_column-inner {
  height: 100%;
}

.plms-card .wpb_wrapper,
.plms-sidebox .wpb_wrapper,
.plms-step .wpb_wrapper {
  height: 100%;
}

.plms-card .wpb_text_column,
.plms-step .wpb_text_column,
.plms-sidebox .wpb_text_column {
  height: 100%;
  margin-bottom: 0 !important;
}

.plms-card .wpb_text_column > .wpb_wrapper {
  position: relative;
  min-height: 100%;
  padding: 24px 24px 22px 24px;
  border: 1px solid #dbe6f1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7,28,54,0.08);
  box-sizing: border-box;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.plms-card .wpb_text_column > .wpb_wrapper::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18,108,242,0.15), rgba(20,184,212,0.2)),
    #f4fbff;
  box-shadow: inset 0 0 0 1px rgba(18,108,242,0.18);
}

.plms-card .wpb_text_column > .wpb_wrapper::after {
  content: "✓";
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #126cf2;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.plms-card-row .g-cols > .plms-card:nth-child(1) .wpb_text_column > .wpb_wrapper::after,
.plms-section .g-cols > .plms-card:nth-child(1) .wpb_text_column > .wpb_wrapper::after {
  content: "∞";
}

.plms-card-row .g-cols > .plms-card:nth-child(2) .wpb_text_column > .wpb_wrapper::after,
.plms-section .g-cols > .plms-card:nth-child(2) .wpb_text_column > .wpb_wrapper::after {
  content: "◇";
}

.plms-card-row .g-cols > .plms-card:nth-child(3) .wpb_text_column > .wpb_wrapper::after {
  content: "⚙";
}

.plms-card-row .g-cols > .plms-card:nth-child(4) .wpb_text_column > .wpb_wrapper::after {
  content: "↗";
}

.plms-card:hover .wpb_text_column > .wpb_wrapper {
  transform: translateY(-4px);
  border-color: rgba(18,108,242,0.28);
  box-shadow: 0 24px 56px rgba(7,28,54,0.12);
}

.plms-card h3,
.plms-sidebox h3,
.plms-step h3 {
  margin: 0 0 12px 0 !important;
  color: #071c36 !important;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.plms-card .wpb_text_column > .wpb_wrapper > :last-child,
.plms-sidebox .wpb_text_column > .wpb_wrapper > :last-child,
.plms-step .wpb_text_column > .wpb_wrapper > :last-child {
  margin-bottom: 0 !important;
}

/* Intro section with sidebox */
.plms-section .vc_col-sm-8,
.plms-section .vc_col-sm-4 {
  align-self: stretch;
}

.plms-section .vc_col-sm-8 .wpb_text_column {
  max-width: 760px;
  margin-bottom: 0 !important;
}

.plms-sidebox .wpb_text_column > .wpb_wrapper {
  min-height: 100%;
  padding: 24px 26px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18,108,242,0.08), rgba(20,184,212,0.12)),
    #f4faff;
  border: 1px solid #cfe0f2;
  box-sizing: border-box;
}

.plms-sidebox h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: #14b8d4;
  box-shadow: 0 0 0 5px rgba(20,184,212,0.14);
  vertical-align: middle;
}

/* Soft industry band */
.plms-soft {
  position: relative !important;
  max-width: none !important;
  width: 100vw !important;
  left: 50% !important;
  margin-left: -50vw !important;
  padding-top: 54px !important;
  padding-bottom: 38px !important;
  background:
    linear-gradient(180deg, #f5f9fd 0%, #ffffff 100%) !important;
}

.plms-soft .l-section-h {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Scale and security paired cards */
.plms-section .plms-card {
  margin-bottom: 0;
}

.plms-section .plms-card .wpb_text_column > .wpb_wrapper {
  padding-top: 26px;
}

/* Steps */
.plms-step .wpb_text_column > .wpb_wrapper {
  position: relative;
  min-height: 100%;
  padding: 28px 28px 26px 28px;
  border-radius: 8px;
  background: #071c36;
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(7,28,54,0.16);
  box-sizing: border-box;
}

.plms-step .wpb_text_column > .wpb_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #126cf2, #14b8d4);
}

.plms-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #ffffff;
  color: #0d4ea8;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.plms-step h3 {
  color: #ffffff !important;
}

.plms-step p,
.plms-step .wpb_text_column > .wpb_wrapper {
  color: rgba(255,255,255,0.82) !important;
}

@media (max-width: 991px) {
  .plms-section {
    margin-top: 44px !important;
  }

  .plms-section,
  .plms-card-row {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .plms-card-row .g-cols,
  .plms-section .g-cols {
    row-gap: 18px;
  }

  .plms-card-row + .plms-section {
    margin-top: 50px !important;
  }

  .plms-card .wpb_text_column > .wpb_wrapper,
  .plms-sidebox .wpb_text_column > .wpb_wrapper,
  .plms-step .wpb_text_column > .wpb_wrapper {
    padding: 24px 22px;
  }
}

@media (max-width: 767px) {
  .plms-section {
    margin-top: 36px !important;
    margin-bottom: 14px !important;
  }

  .plms-card-row {
    margin-top: 14px !important;
    margin-bottom: 22px !important;
  }

  .plms-card-row + .plms-section {
    margin-top: 42px !important;
  }

  .plms-section + .plms-card-row {
    margin-top: 16px !important;
  }

  .plms-section,
  .plms-card-row,
  .plms-soft .l-section-h {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .plms-section h2 {
    font-size: 31px;
  }

  .plms-section > .l-section-h > .g-cols > .vc_col-sm-12 h2,
  .plms-section .vc_col-sm-12 h2,
  .plms-section .vc_col-sm-12 .plms-intro {
    text-align: left;
  }

  .plms-card .wpb_text_column > .wpb_wrapper,
  .plms-sidebox .wpb_text_column > .wpb_wrapper,
  .plms-step .wpb_text_column > .wpb_wrapper {
    padding: 22px 20px;
  }

  .plms-card h3,
  .plms-sidebox h3,
  .plms-step h3 {
    font-size: 20px;
  }

  .plms-soft {
    padding-top: 40px !important;
    padding-bottom: 28px !important;
  }
}

/* Bottom CTA */
.plms-cta {
  position: relative !important;
  overflow: hidden;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  margin-left: -50vw !important;
  margin-top: 48px !important;
  margin-bottom: 0 !important;
  padding: 68px 24px !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.34) 0, rgba(255,255,255,0) 28%),
    linear-gradient(135deg, #071c36 0%, #0d4ea8 48%, #14b8d4 100%) !important;
}

.plms-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 44%),
    radial-gradient(circle at 84% 78%, rgba(126,235,255,0.26) 0, rgba(126,235,255,0) 34%);
  pointer-events: none;
}

.plms-cta .l-section-h {
  position: relative;
  z-index: 1;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.plms-cta .g-cols,
.plms-cta .vc_column-inner,
.plms-cta .wpb_wrapper {
  justify-content: center;
  text-align: center;
}

.plms-cta .wpb_text_column > .wpb_wrapper {
  max-width: 760px;
  margin: 0 auto !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
}

.plms-cta .wpb_text_column,
.plms-cta .wpb_content_element {
  margin-bottom: 0 !important;
}

.plms-cta h2 {
  max-width: 760px;
  margin: 0 auto 18px auto !important;
  color: #ffffff !important;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.plms-cta p {
  max-width: 680px;
  margin: 0 auto 28px auto !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
}

.plms-cta p:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 0 !important;
}

.plms-cta p:last-child br {
  display: none !important;
}

.plms-cta p:last-child .plms-btn {
  margin-top: 0;
}

.plms-cta .plms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 156px;
  margin-top: 28px;
  margin-left: 7px;
  margin-right: 7px;
  padding: 14px 24px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  background: #ffffff;
  color: #073060 !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.plms-cta .plms-btn:hover,
.plms-cta .plms-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0,0,0,0.22);
}

.plms-cta .plms-btn-outline {
  background: rgba(255,255,255,0.08);
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.72);
  box-shadow: none;
}

.plms-cta .plms-btn-outline:hover,
.plms-cta .plms-btn-outline:focus {
  background: rgba(255,255,255,0.16);
  border-color: #ffffff;
}

@media (max-width: 767px) {
  .plms-cta {
    margin-top: 36px !important;
    padding: 52px 20px !important;
  }

  .plms-cta h2 {
    font-size: 34px;
  }

  .plms-cta p {
    font-size: 17px;
  }

  .plms-cta p:last-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plms-cta .plms-btn {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
