:root {
  --yop-vs-orange: #ff5a00;
  --yop-vs-orange-dark: #e84f00;
  --yop-vs-orange-soft: #fff1e8;
  --yop-vs-orange-ultra-soft: #fff8f3;
  --yop-vs-black: #101010;
  --yop-vs-dark: #181818;
  --yop-vs-text: #343434;
  --yop-vs-muted: #6d6d6d;
  --yop-vs-white: #ffffff;
  --yop-vs-bg: #fbfbfb;
  --yop-vs-border: #e9e9e9;
  --yop-vs-shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.06);
  --yop-vs-shadow-card: 0 10px 26px rgba(16, 16, 16, 0.07);
  --yop-vs-shadow-hero: 0 34px 90px rgba(16, 16, 16, 0.15);
  --yop-vs-shadow-orange: 0 12px 26px rgba(255, 90, 0, 0.22);
  --yop-vs-font-main: Inter, Manrope, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.yop-vs-mlp,
.yop-vs-mlp * {
  box-sizing: border-box;
}

.yop-vs-mlp {
  width: 100%;
  overflow: hidden;
  color: var(--yop-vs-text);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 90, 0, 0.15), rgba(255, 90, 0, 0.04) 32%, transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  font-family: var(--yop-vs-font-main);
}

.yop-vs-mlp svg {
  width: 1em;
  height: 1em;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yop-vs-mlp-container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.yop-vs-mlp-hero {
  position: relative;
  padding: 84px 0 42px;
}

.yop-vs-mlp-hero::before,
.yop-vs-mlp-hero::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  opacity: 0.25;
  background-image: radial-gradient(var(--yop-vs-orange) 2px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
}

.yop-vs-mlp-hero::before {
  left: -30px;
  top: 300px;
}

.yop-vs-mlp-hero::after {
  right: 12px;
  bottom: 20px;
}

.yop-vs-mlp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: 58px;
  align-items: center;
}

.yop-vs-mlp-eyebrow {
  margin: 0 0 18px;
  color: var(--yop-vs-orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.yop-vs-mlp-h1,
.yop-vs-mlp-section-head h2,
.yop-vs-mlp-pricing h2,
.yop-vs-mlp-security h2,
.yop-vs-mlp-final h2 {
  color: var(--yop-vs-black);
  font-weight: 950;
  letter-spacing: -0.055em;
}

.yop-vs-mlp-h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.99;
}

.yop-vs-mlp-h1 span,
.yop-vs-mlp-section-head h2 span {
  color: var(--yop-vs-orange);
}

.yop-vs-mlp-subline {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--yop-vs-muted);
  font-size: 19px;
  font-weight: 450;
  line-height: 1.65;
}

.yop-vs-mlp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.yop-vs-mlp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.yop-vs-mlp-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.yop-vs-mlp-btn-primary {
  color: #ffffff;
  background: var(--yop-vs-orange);
  box-shadow: var(--yop-vs-shadow-orange);
}

.yop-vs-mlp-btn-primary:hover {
  color: #ffffff;
  background: var(--yop-vs-orange-dark);
}

.yop-vs-mlp-btn-secondary {
  color: var(--yop-vs-black);
  background: #ffffff;
  border-color: var(--yop-vs-black);
}

.yop-vs-mlp-btn-secondary:hover {
  color: #ffffff;
  background: var(--yop-vs-black);
}

.yop-vs-mlp-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin-top: 42px;
}

.yop-vs-mlp-trust-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px 12px;
  align-items: start;
}

.yop-vs-mlp-trust-item > span,
.yop-vs-mlp-dashboard-card-head span,
.yop-vs-mlp-strip-item span,
.yop-vs-mlp-module-icon,
.yop-vs-mlp-stat span {
  color: var(--yop-vs-orange);
  background: var(--yop-vs-orange-soft);
}

.yop-vs-mlp-trust-item > span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.yop-vs-mlp-trust-item strong {
  color: var(--yop-vs-black);
  font-size: 14px;
  line-height: 1.2;
}

.yop-vs-mlp-trust-item small {
  color: var(--yop-vs-muted);
  font-size: 12px;
  line-height: 1.35;
}

.yop-vs-mlp-dashboard-wrap {
  position: relative;
}

.yop-vs-mlp-dashboard-wrap::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.21), rgba(255, 90, 0, 0.07) 42%, transparent 68%);
}

.yop-vs-mlp-dashboard {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  min-height: 456px;
  overflow: hidden;
  border: 10px solid var(--yop-vs-black);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--yop-vs-shadow-hero);
}

.yop-vs-mlp-dashboard-sidebar {
  padding: 22px 16px;
  background: linear-gradient(180deg, #181818 0%, #070707 100%);
  color: #ffffff;
}

.yop-vs-mlp-dashboard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 950;
}

.yop-vs-mlp-dashboard-brand-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
}

.yop-vs-mlp-dashboard-brand-icon img,
.yop-vs-mlp-dashboard-brand-icon-img,
.yop-vs-mlp-dashboard-brand-icon .yvm-brand-mark {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.yop-vs-mlp-dashboard-menu {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yop-vs-mlp-dashboard-menu li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
}

.yop-vs-mlp-dashboard-menu li.is-active {
  color: #ffffff;
  background: var(--yop-vs-orange);
}

.yop-vs-mlp-dashboard-main {
  padding: 20px;
}

.yop-vs-mlp-dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--yop-vs-border);
}

.yop-vs-mlp-dashboard-topbar strong {
  color: var(--yop-vs-black);
  font-size: 20px;
}

.yop-vs-mlp-avatar {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--yop-vs-orange);
  background: var(--yop-vs-orange-soft);
  font-weight: 950;
}

.yop-vs-mlp-dashboard-cards,
.yop-vs-mlp-dashboard-panels,
.yop-vs-mlp-feature-strip,
.yop-vs-mlp-module-grid,
.yop-vs-mlp-pricing-grid,
.yop-vs-mlp-price-cards,
.yop-vs-mlp-security-panel,
.yop-vs-mlp-security-grid,
.yop-vs-mlp-stats,
.yop-vs-mlp-final-panel {
  display: grid;
}

.yop-vs-mlp-dashboard-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.yop-vs-mlp-dashboard-card,
.yop-vs-mlp-dashboard-panel,
.yop-vs-mlp-module-card,
.yop-vs-mlp-price-card,
.yop-vs-mlp-stat {
  border: 1px solid var(--yop-vs-border);
  background: #ffffff;
}

.yop-vs-mlp-dashboard-card,
.yop-vs-mlp-dashboard-panel {
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(16, 16, 16, 0.045);
}

.yop-vs-mlp-dashboard-card {
  min-height: 104px;
  padding: 14px;
}

.yop-vs-mlp-dashboard-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.yop-vs-mlp-dashboard-card-head span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
}

.yop-vs-mlp-dashboard-card small {
  color: var(--yop-vs-muted);
  font-size: 10.5px;
  font-weight: 800;
}

.yop-vs-mlp-dashboard-card strong {
  display: block;
  color: var(--yop-vs-black);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.yop-vs-mlp-dashboard-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--yop-vs-orange);
  font-size: 10.5px;
  font-weight: 900;
  text-decoration: none;
}

.yop-vs-mlp-dashboard-panels {
  grid-template-columns: 1.35fr 0.65fr;
  gap: 12px;
  margin-top: 12px;
}

.yop-vs-mlp-dashboard-panel {
  padding: 16px;
}

.yop-vs-mlp-dashboard-panel h3 {
  margin: 0 0 12px;
  color: var(--yop-vs-black);
  font-size: 15px;
  font-weight: 950;
}

.yop-vs-mlp-dashboard-panel p {
  margin: 8px 0 0;
  color: var(--yop-vs-muted);
  font-size: 12px;
}

.yop-vs-mlp-feature-strip {
  position: relative;
  z-index: 4;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid var(--yop-vs-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--yop-vs-shadow-soft);
}

.yop-vs-mlp-strip-item {
  min-height: 118px;
  padding: 22px 18px;
  border-right: 1px solid var(--yop-vs-border);
}

.yop-vs-mlp-strip-item:last-child {
  border-right: 0;
}

.yop-vs-mlp-strip-item span,
.yop-vs-mlp-module-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 15px;
}

.yop-vs-mlp-strip-item strong,
.yop-vs-mlp-strip-item small {
  display: block;
}

.yop-vs-mlp-strip-item strong {
  color: var(--yop-vs-black);
  font-size: 15px;
  font-weight: 950;
}

.yop-vs-mlp-strip-item small {
  margin-top: 6px;
  color: var(--yop-vs-muted);
  font-size: 12px;
  line-height: 1.45;
}

.yop-vs-mlp-section,
.yop-vs-mlp-pricing,
.yop-vs-mlp-security {
  padding-top: 78px;
}

.yop-vs-mlp-section-head {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.yop-vs-mlp-section-head h2,
.yop-vs-mlp-pricing h2,
.yop-vs-mlp-security h2,
.yop-vs-mlp-final h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.06;
}

.yop-vs-mlp-section-head p,
.yop-vs-mlp-pricing p,
.yop-vs-mlp-final p {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--yop-vs-muted);
  font-size: 17px;
  line-height: 1.65;
}

.yop-vs-mlp-module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.yop-vs-mlp-module-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--yop-vs-shadow-card);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.yop-vs-mlp-module-card::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--yop-vs-orange-ultra-soft);
}

.yop-vs-mlp-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 0, 0.32);
  box-shadow: 0 16px 42px rgba(16, 16, 16, 0.09);
}

.yop-vs-mlp-module-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.yop-vs-mlp-module-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
}

.yop-vs-mlp-badge,
.yop-vs-mlp-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 950;
}

.yop-vs-mlp-badge {
  color: var(--yop-vs-orange);
  background: var(--yop-vs-orange-ultra-soft);
  border: 1px solid rgba(255, 90, 0, 0.16);
}

.yop-vs-mlp-module-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--yop-vs-black);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.yop-vs-mlp-module-card p {
  position: relative;
  z-index: 2;
  margin: 12px 0 0;
  color: var(--yop-vs-muted);
  font-size: 14px;
  line-height: 1.55;
}

.yop-vs-mlp-module-card ul,
.yop-vs-mlp-check-list,
.yop-vs-mlp-price-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.yop-vs-mlp-module-card li,
.yop-vs-mlp-check-list li,
.yop-vs-mlp-price-card li {
  color: var(--yop-vs-text);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.yop-vs-mlp-module-card li::before,
.yop-vs-mlp-check-list li::before,
.yop-vs-mlp-price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--yop-vs-orange);
  font-weight: 950;
}

.yop-vs-mlp-module-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 22px;
  color: var(--yop-vs-orange);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.yop-vs-mlp-pricing-grid {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
}

.yop-vs-mlp-pricing p {
  margin-left: 0;
  margin-right: 0;
}

.yop-vs-mlp-price-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.yop-vs-mlp-price-card {
  position: relative;
  padding: 30px 24px;
  border-radius: 28px;
  box-shadow: var(--yop-vs-shadow-card);
  text-align: center;
}

.yop-vs-mlp-price-card.is-featured {
  border-color: var(--yop-vs-orange);
  background: linear-gradient(180deg, var(--yop-vs-orange-ultra-soft), #ffffff 58%);
  transform: translateY(-10px);
  box-shadow: 0 20px 54px rgba(255, 90, 0, 0.16);
}

.yop-vs-mlp-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  background: var(--yop-vs-orange);
}

.yop-vs-mlp-price-card h3 {
  margin: 0;
  color: var(--yop-vs-black);
  font-size: 21px;
  font-weight: 950;
}

.yop-vs-mlp-price-card p {
  margin: 8px 0 0;
  font-size: 12px;
}

.yop-vs-mlp-price-card > strong {
  display: block;
  margin-top: 18px;
  color: var(--yop-vs-black);
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.yop-vs-mlp-price-card > small {
  color: var(--yop-vs-muted);
  font-weight: 700;
}

.yop-vs-mlp-price-card .yop-vs-mlp-btn {
  width: 100%;
  min-height: 42px;
  margin-top: 24px;
}

.yop-vs-mlp-security-panel {
  position: relative;
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 44px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 90, 0, 0.22), transparent 34%),
    linear-gradient(135deg, #101010 0%, #181818 55%, #070707 100%);
  box-shadow: var(--yop-vs-shadow-hero);
}

.yop-vs-mlp-security-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: center;
}

.yop-vs-mlp-security-icon {
  width: 96px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yop-vs-orange);
  border-radius: 26px;
  background: rgba(255, 90, 0, 0.10);
  border: 1px solid rgba(255, 90, 0, 0.34);
  font-size: 58px;
}

.yop-vs-mlp-security h2 {
  color: #ffffff;
}

.yop-vs-mlp-security p {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.yop-vs-mlp-security-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.yop-vs-mlp-security-card {
  min-height: 138px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.yop-vs-mlp-security-card span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  color: var(--yop-vs-orange);
  background: rgba(255, 90, 0, 0.12);
}

.yop-vs-mlp-security-card strong,
.yop-vs-mlp-security-card small {
  display: block;
}

.yop-vs-mlp-security-card strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
}

.yop-vs-mlp-security-card small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.yop-vs-mlp-trust {
  padding-top: 34px;
}

.yop-vs-mlp-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.yop-vs-mlp-stat {
  grid-template-columns: 50px 1fr;
  gap: 6px 16px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--yop-vs-shadow-soft);
}

.yop-vs-mlp-stat span {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.yop-vs-mlp-stat strong {
  color: var(--yop-vs-black);
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
}

.yop-vs-mlp-stat small {
  color: var(--yop-vs-muted);
  font-size: 12px;
  font-weight: 650;
}

.yop-vs-mlp-final {
  padding: 42px 0 90px;
}

.yop-vs-mlp-final-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px 46px;
  border: 1px solid rgba(255, 90, 0, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 24%, rgba(255, 90, 0, 0.13), transparent 38%),
    linear-gradient(135deg, #fff8f3 0%, #ffffff 70%);
  box-shadow: var(--yop-vs-shadow-card);
}

.yop-vs-mlp-final p {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1180px) {
  .yop-vs-mlp-hero-grid,
  .yop-vs-mlp-pricing-grid,
  .yop-vs-mlp-security-panel {
    grid-template-columns: 1fr;
  }

  .yop-vs-mlp-feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .yop-vs-mlp-strip-item {
    border-bottom: 1px solid var(--yop-vs-border);
  }

  .yop-vs-mlp-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yop-vs-mlp-security-grid,
  .yop-vs-mlp-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .yop-vs-mlp-container {
    width: min(100% - 28px, 1440px);
  }

  .yop-vs-mlp-hero {
    padding: 52px 0 28px;
  }

  .yop-vs-mlp-h1 {
    font-size: clamp(38px, 12vw, 46px);
  }

  .yop-vs-mlp-subline {
    font-size: 16px;
  }

  .yop-vs-mlp-actions,
  .yop-vs-mlp-trust-row,
  .yop-vs-mlp-dashboard,
  .yop-vs-mlp-dashboard-cards,
  .yop-vs-mlp-dashboard-panels,
  .yop-vs-mlp-feature-strip,
  .yop-vs-mlp-module-grid,
  .yop-vs-mlp-price-cards,
  .yop-vs-mlp-security-grid,
  .yop-vs-mlp-stats,
  .yop-vs-mlp-final-panel {
    grid-template-columns: 1fr;
  }

  .yop-vs-mlp-actions,
  .yop-vs-mlp-trust-row {
    display: grid;
  }

  .yop-vs-mlp-btn {
    width: 100%;
  }

  .yop-vs-mlp-dashboard {
    border-width: 6px;
    border-radius: 20px;
  }

  .yop-vs-mlp-dashboard-sidebar {
    display: none;
  }

  .yop-vs-mlp-strip-item {
    border-right: 0;
  }

  .yop-vs-mlp-section,
  .yop-vs-mlp-pricing,
  .yop-vs-mlp-security {
    padding-top: 54px;
  }

  .yop-vs-mlp-module-card {
    min-height: auto;
  }

  .yop-vs-mlp-price-card.is-featured {
    transform: none;
  }

  .yop-vs-mlp-security-panel,
  .yop-vs-mlp-final-panel {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .yop-vs-mlp-security-copy {
    grid-template-columns: 1fr;
  }
}
/**
 * Vereinssuite Module Landingpage Title CSS Fix 1.1B
 *
 * YOPT_DEV_STAMP_START
 * {
 *   "project": "vereinssuite",
 *   "plugin": "yop-vereinssuite",
 *   "legacy_project_name": "vereinsmanager",
 *   "exclusive_platform": "vereinssuite.de",
 *   "deployment_model": "exclusive_saas_cloud",
 *   "module": "website_marketing",
 *   "feature": "modules_landingpage",
 *   "sub_feature": "page_title_hide_and_full_width_css",
 *   "file": "assets/css/yop-vs-modules-landingpage.css",
 *   "file_role": "public_landingpage_styles",
 *   "object_role": "asset",
 *   "development_status": "in_progress",
 *   "development_phase": 17,
 *   "version": "0.1.0-beta.1",
 *   "last_updated": "2026-06-17",
 *   "last_change": "Adds page-id scoped CSS to hide default WordPress page title and force full-width landingpage rendering.",
 *   "area": "asset",
 *   "review_note": "Public marketing page CSS only. No club data, no forms, no uploads, no database logic.",
 *   "supports_saas": true,
 *   "supports_self_hosted": false,
 *   "supports_multi_tenant": true,
 *   "requires_active_club_context": false,
 *   "uses_platform_database": false,
 *   "uses_club_database": false,
 *   "uses_separate_club_database": false,
 *   "stores_club_id": false,
 *   "requires_license_check": false,
 *   "requires_plan_check": false,
 *   "requires_module_check": false,
 *   "requires_permission_check": false,
 *   "requires_audit_log": false,
 *   "handles_personal_data": false,
 *   "handles_sensitive_data": false,
 *   "handles_child_data": false,
 *   "handles_health_data": false,
 *   "handles_payment_data": false,
 *   "handles_documents": false,
 *   "handles_uploads": false,
 *   "supports_gutenberg": true,
 *   "supports_elementor": true
 * }
 * YOPT_DEV_STAMP_END
 */

body.page-id-47 .entry-title,
body.page-id-47 .page-header,
body.page-id-47 header.entry-header,
body.page-id-47 .elementor-page-title,
body.page-id-47 .wp-block-post-title,
body.page-id-47 h1.entry-title {
  display: none !important;
}

body.page-id-47 .site-main,
body.page-id-47 #content,
body.page-id-47 .content-area,
body.page-id-47 .page-content,
body.page-id-47 .entry-content,
body.page-id-47 .inside-article {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-id-47 .entry-content > p:empty {
  display: none !important;
}

body.page-id-47 .yop-vs-mlp {
  margin-top: 0 !important;
}

body.page-id-47 .yop-vs-mlp-hero {
  padding-top: 74px;
}

body.page-id-47 .yop-vs-mlp-container {
  width: min(1440px, calc(100% - 48px));
}

@media (max-width: 760px) {
  body.page-id-47 .yop-vs-mlp-hero {
    padding-top: 46px;
  }

  body.page-id-47 .yop-vs-mlp-container {
    width: min(100% - 28px, 1440px);
  }
}


/**
 * Vereinssuite Module Landingpage Club Types Section 1.2
 *
 * YOPT_DEV_STAMP_START
 * {
 *   "project": "vereinssuite",
 *   "plugin": "yop-vereinssuite",
 *   "legacy_project_name": "vereinsmanager",
 *   "exclusive_platform": "vereinssuite.de",
 *   "deployment_model": "exclusive_saas_cloud",
 *   "module": "website_marketing",
 *   "feature": "modules_landingpage",
 *   "sub_feature": "club_types_section",
 *   "file": "assets/css/yop-vs-modules-landingpage.css",
 *   "file_role": "public_landingpage_styles",
 *   "object_role": "asset",
 *   "development_status": "in_progress",
 *   "development_phase": 17,
 *   "version": "0.1.0-beta.1",
 *   "last_updated": "2026-06-17",
 *   "last_change": "Adds club type target group section styling to Module landingpage.",
 *   "area": "asset",
 *   "review_note": "Public marketing CSS only. No forms, no user input, no club database access.",
 *   "supports_saas": true,
 *   "supports_self_hosted": false,
 *   "supports_multi_tenant": true,
 *   "requires_active_club_context": false,
 *   "uses_platform_database": false,
 *   "uses_club_database": false,
 *   "uses_separate_club_database": false,
 *   "stores_club_id": false,
 *   "requires_license_check": false,
 *   "requires_plan_check": false,
 *   "requires_module_check": false,
 *   "requires_permission_check": false,
 *   "requires_audit_log": false,
 *   "handles_personal_data": false,
 *   "handles_sensitive_data": false,
 *   "handles_child_data": false,
 *   "handles_health_data": false,
 *   "handles_payment_data": false,
 *   "handles_documents": false,
 *   "handles_uploads": false,
 *   "supports_gutenberg": true,
 *   "supports_elementor": true
 * }
 * YOPT_DEV_STAMP_END
 */

.yop-vs-mlp-club-types {
  position: relative;
  padding-top: 88px;
}

.yop-vs-mlp-club-types::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 190px;
  width: 185px;
  height: 185px;
  opacity: 0.18;
  background-image: radial-gradient(var(--yop-vs-orange) 2px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
}

.yop-vs-mlp-club-types-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 1.37fr);
  gap: 26px;
  align-items: stretch;
}

.yop-vs-mlp-club-types-hero-card,
.yop-vs-mlp-club-type-card,
.yop-vs-mlp-club-types-benefits > div {
  border: 1px solid var(--yop-vs-border);
  background: #ffffff;
  box-shadow: var(--yop-vs-shadow-card);
}

.yop-vs-mlp-club-types-hero-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 42px;
  border-color: rgba(255, 90, 0, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 90%, rgba(255, 90, 0, 0.16), transparent 34%),
    linear-gradient(135deg, var(--yop-vs-orange-ultra-soft) 0%, #ffffff 68%);
}

.yop-vs-mlp-club-types-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 22px;
  color: var(--yop-vs-orange);
  background: var(--yop-vs-orange-soft);
}

.yop-vs-mlp-club-types-kicker {
  margin: 0 0 10px;
  color: var(--yop-vs-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yop-vs-mlp-club-types-hero-card h3 {
  max-width: 460px;
  margin: 0;
  color: var(--yop-vs-black);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.yop-vs-mlp-club-types-hero-card p:not(.yop-vs-mlp-club-types-kicker) {
  max-width: 450px;
  margin: 18px 0 0;
  color: var(--yop-vs-muted);
  font-size: 15px;
  line-height: 1.65;
}

.yop-vs-mlp-club-types-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 430px;
  margin-top: 24px;
}

.yop-vs-mlp-club-types-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--yop-vs-orange);
  background: #ffffff;
  border: 1px solid rgba(255, 90, 0, 0.18);
  font-size: 11px;
  font-weight: 900;
}

.yop-vs-mlp-club-types-mini-dashboard {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 210px;
  padding: 20px;
  border: 1px solid var(--yop-vs-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--yop-vs-shadow-soft);
}

.yop-vs-mlp-club-types-mini-dashboard strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--yop-vs-black);
  font-size: 12px;
  font-weight: 950;
}

.yop-vs-mlp-club-types-mini-dashboard strong span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--yop-vs-orange);
  font-size: 9px;
}

.yop-vs-mlp-club-types-mini-dashboard p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 0 !important;
  color: var(--yop-vs-muted) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.yop-vs-mlp-club-types-mini-dashboard b {
  color: var(--yop-vs-black);
  font-size: 15px;
}

.yop-vs-mlp-club-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.yop-vs-mlp-club-type-card {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
}

.yop-vs-mlp-club-type-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 126px;
  height: 126px;
  border-radius: 999px;
  background: var(--yop-vs-orange-ultra-soft);
}

.yop-vs-mlp-club-type-card span {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--yop-vs-orange);
  background: var(--yop-vs-orange-soft);
}

.yop-vs-mlp-club-type-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--yop-vs-black);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.yop-vs-mlp-club-type-card p {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  color: var(--yop-vs-muted);
  font-size: 14px;
  line-height: 1.55;
}

.yop-vs-mlp-club-types-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.yop-vs-mlp-club-types-benefits > div {
  min-height: 96px;
  padding: 22px 24px;
  border-radius: 20px;
}

.yop-vs-mlp-club-types-benefits strong,
.yop-vs-mlp-club-types-benefits span {
  display: block;
}

.yop-vs-mlp-club-types-benefits strong {
  color: var(--yop-vs-black);
  font-size: 15px;
  font-weight: 950;
}

.yop-vs-mlp-club-types-benefits span {
  margin-top: 7px;
  color: var(--yop-vs-muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .yop-vs-mlp-club-types-layout,
  .yop-vs-mlp-club-types-benefits {
    grid-template-columns: 1fr;
  }

  .yop-vs-mlp-club-types-mini-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 330px;
    margin-top: 26px;
  }
}

@media (max-width: 760px) {
  .yop-vs-mlp-club-types {
    padding-top: 58px;
  }

  .yop-vs-mlp-club-types-grid {
    grid-template-columns: 1fr;
  }

  .yop-vs-mlp-club-types-hero-card,
  .yop-vs-mlp-club-type-card {
    padding: 26px;
    border-radius: 24px;
  }
}

/**
 * Vereinssuite Module Landingpage Design Finalization 1.3
 *
 * YOPT_DEV_STAMP_START
 * {
 *   "project": "vereinssuite",
 *   "plugin": "yop-vereinssuite",
 *   "legacy_project_name": "vereinsmanager",
 *   "exclusive_platform": "vereinssuite.de",
 *   "deployment_model": "exclusive_saas_cloud",
 *   "module": "website_marketing",
 *   "feature": "modules_landingpage",
 *   "sub_feature": "design_finalization_hero_pricing_security_cta",
 *   "file": "assets/css/yop-vs-modules-landingpage.css",
 *   "file_role": "public_landingpage_styles",
 *   "object_role": "asset",
 *   "development_status": "in_progress",
 *   "development_phase": 17,
 *   "version": "0.1.0-beta.1.3",
 *   "last_updated": "2026-06-17",
 *   "last_change": "Finalizes Module landingpage visual alignment with Vereinssuite homepage CI: hero, module cards, club types, pricing, security, stats and CTA.",
 *   "area": "asset",
 *   "review_note": "Public marketing CSS only. No forms, no user input, no club data, no upload logic, no internal app data.",
 *   "supports_saas": true,
 *   "supports_self_hosted": false,
 *   "supports_multi_tenant": true,
 *   "requires_active_club_context": false,
 *   "uses_platform_database": false,
 *   "uses_club_database": false,
 *   "uses_separate_club_database": false,
 *   "stores_club_id": false,
 *   "requires_license_check": false,
 *   "requires_plan_check": false,
 *   "requires_module_check": false,
 *   "requires_permission_check": false,
 *   "requires_audit_log": false,
 *   "handles_personal_data": false,
 *   "handles_sensitive_data": false,
 *   "handles_child_data": false,
 *   "handles_health_data": false,
 *   "handles_payment_data": false,
 *   "handles_documents": false,
 *   "handles_uploads": false,
 *   "supports_gutenberg": true,
 *   "supports_elementor": true
 * }
 * YOPT_DEV_STAMP_END
 */

/* Grundfläche noch näher an Startseiten-CI */
.yop-vs-mlp {
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 90, 0, 0.16), rgba(255, 90, 0, 0.045) 30%, transparent 58%),
    radial-gradient(circle at 8% 23%, rgba(255, 90, 0, 0.085), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 72%, #ffffff 100%);
}

/* Hero: mehr Premium-SaaS-Look */
.yop-vs-mlp-hero {
  padding-top: 92px;
  padding-bottom: 54px;
}

.yop-vs-mlp-hero-grid {
  grid-template-columns: minmax(430px, 0.92fr) minmax(620px, 1.08fr);
  gap: 72px;
}

.yop-vs-mlp-h1 {
  max-width: 680px;
  font-size: clamp(52px, 5.45vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.072em;
}

.yop-vs-mlp-subline {
  max-width: 610px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.72;
}

.yop-vs-mlp-btn {
  min-height: 50px;
  border-radius: 13px;
}

.yop-vs-mlp-btn-primary {
  box-shadow: 0 16px 34px rgba(255, 90, 0, 0.25);
}

.yop-vs-mlp-dashboard {
  max-width: 735px;
  margin-left: auto;
  border-width: 9px;
  border-radius: 30px;
  box-shadow: 0 38px 96px rgba(16, 16, 16, 0.17);
}

.yop-vs-mlp-dashboard-main {
  background:
    radial-gradient(circle at 95% 48%, rgba(255, 90, 0, 0.06), transparent 30%),
    #ffffff;
}

.yop-vs-mlp-dashboard-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.yop-vs-mlp-dashboard-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 0, 0.22);
  box-shadow: 0 12px 30px rgba(16, 16, 16, 0.075);
}

/* Trust-Leiste kompakter und hochwertiger */
.yop-vs-mlp-trust-row {
  max-width: 650px;
  gap: 20px;
}

.yop-vs-mlp-trust-item strong {
  font-size: 13px;
}

.yop-vs-mlp-trust-item small {
  max-width: 150px;
}

/* Feature-Leiste wie SaaS-Navigationsband */
.yop-vs-mlp-feature-strip {
  margin-top: 52px;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(16, 16, 16, 0.075);
}

.yop-vs-mlp-strip-item {
  min-height: 124px;
  padding: 24px 20px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.yop-vs-mlp-strip-item:hover {
  background: var(--yop-vs-orange-ultra-soft);
}

.yop-vs-mlp-strip-item strong {
  letter-spacing: -0.02em;
}

/* Modulbereich: mehr Luft und gleichmäßigere Karten */
.yop-vs-mlp-section {
  padding-top: 96px;
}

.yop-vs-mlp-section-head {
  margin-bottom: 44px;
}

.yop-vs-mlp-section-head h2 {
  font-size: clamp(38px, 3.7vw, 56px);
}

.yop-vs-mlp-module-grid {
  gap: 28px;
}

.yop-vs-mlp-module-card {
  min-height: 310px;
  padding: 32px;
  border-radius: 30px;
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.065);
}

.yop-vs-mlp-module-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 0, 0.34);
  box-shadow: 0 22px 52px rgba(16, 16, 16, 0.10);
}

.yop-vs-mlp-module-card h3 {
  font-size: 22px;
}

.yop-vs-mlp-badge {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 90, 0, 0.08);
}

.yop-vs-mlp-module-icon {
  box-shadow: inset 0 0 0 1px rgba(255, 90, 0, 0.08);
}

/* Vereinsarten-Sektion sauberer an Startseite angleichen */
.yop-vs-mlp-club-types {
  padding-top: 104px;
}

.yop-vs-mlp-club-types-layout {
  gap: 30px;
}

.yop-vs-mlp-club-types-hero-card {
  min-height: 470px;
  padding: 46px;
  border-radius: 32px;
  box-shadow: 0 18px 46px rgba(16, 16, 16, 0.075);
}

.yop-vs-mlp-club-types-hero-card h3 {
  font-size: clamp(34px, 3.25vw, 48px);
}

.yop-vs-mlp-club-type-card {
  min-height: 218px;
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(16, 16, 16, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.yop-vs-mlp-club-type-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 0, 0.24);
  box-shadow: 0 18px 44px rgba(16, 16, 16, 0.085);
}

.yop-vs-mlp-club-types-benefits > div {
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(16, 16, 16, 0.055);
}

/* Pricing: mehr Premium, Pro klarer */
.yop-vs-mlp-pricing {
  padding-top: 110px;
}

.yop-vs-mlp-pricing-grid {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
}

.yop-vs-mlp-pricing h2 {
  max-width: 520px;
  font-size: clamp(40px, 3.85vw, 58px);
  line-height: 1.02;
}

.yop-vs-mlp-price-cards {
  gap: 26px;
}

.yop-vs-mlp-price-card {
  padding: 34px 28px;
  border-radius: 30px;
  box-shadow: 0 16px 46px rgba(16, 16, 16, 0.075);
}

.yop-vs-mlp-price-card.is-featured {
  transform: translateY(-16px);
  box-shadow: 0 26px 68px rgba(255, 90, 0, 0.19);
}

.yop-vs-mlp-price-card > strong {
  font-size: 42px;
}

.yop-vs-mlp-price-card .yop-vs-mlp-btn {
  margin-top: 28px;
}

/* Security: stärkerer Premium-Block */
.yop-vs-mlp-security {
  padding-top: 88px;
}

.yop-vs-mlp-security-panel {
  min-height: 430px;
  padding: 56px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 90, 0, 0.28), transparent 32%),
    radial-gradient(circle at 18% 92%, rgba(255, 90, 0, 0.10), transparent 34%),
    linear-gradient(135deg, #101010 0%, #181818 54%, #080808 100%);
  box-shadow: 0 38px 96px rgba(16, 16, 16, 0.20);
}

.yop-vs-mlp-security-icon {
  width: 108px;
  height: 126px;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(255, 90, 0, 0.18), 0 18px 50px rgba(255, 90, 0, 0.10);
}

.yop-vs-mlp-security h2 {
  font-size: clamp(38px, 3.7vw, 56px);
}

.yop-vs-mlp-security-card {
  min-height: 154px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.yop-vs-mlp-security-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 90, 0, 0.28);
}

/* Statistikbereich ruhiger und gleichmäßiger */
.yop-vs-mlp-trust {
  padding-top: 42px;
}

.yop-vs-mlp-stats {
  gap: 22px;
}

.yop-vs-mlp-stat {
  min-height: 104px;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.06);
}

.yop-vs-mlp-stat strong {
  font-size: 30px;
}

/* Final CTA: hochwertiger dunkler Abschluss vor Footer */
.yop-vs-mlp-final {
  padding-top: 52px;
  padding-bottom: 96px;
}

.yop-vs-mlp-final-panel {
  padding: 46px 52px;
  border: 1px solid rgba(255, 90, 0, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 91% 28%, rgba(255, 90, 0, 0.24), transparent 26%),
    linear-gradient(135deg, #101010 0%, #181818 100%);
  box-shadow: 0 28px 72px rgba(16, 16, 16, 0.16);
}

.yop-vs-mlp-final h2 {
  color: #ffffff;
  font-size: clamp(34px, 3.5vw, 52px);
}

.yop-vs-mlp-final p {
  color: rgba(255, 255, 255, 0.72);
}

.yop-vs-mlp-final .yop-vs-mlp-btn-primary {
  min-width: 220px;
}

/* Responsive Feinschliff */
@media (max-width: 1180px) {
  .yop-vs-mlp-hero-grid,
  .yop-vs-mlp-pricing-grid {
    gap: 44px;
  }

  .yop-vs-mlp-dashboard {
    max-width: 100%;
    margin-left: 0;
  }

  .yop-vs-mlp-price-card.is-featured {
    transform: none;
  }

  .yop-vs-mlp-security-panel {
    padding: 42px;
  }
}

@media (max-width: 760px) {
  .yop-vs-mlp-hero {
    padding-top: 54px;
    padding-bottom: 34px;
  }

  .yop-vs-mlp-h1 {
    font-size: clamp(42px, 12vw, 54px);
    line-height: 0.98;
  }

  .yop-vs-mlp-subline {
    margin-top: 22px;
  }

  .yop-vs-mlp-dashboard {
    border-width: 6px;
  }

  .yop-vs-mlp-section,
  .yop-vs-mlp-club-types,
  .yop-vs-mlp-pricing,
  .yop-vs-mlp-security {
    padding-top: 64px;
  }

  .yop-vs-mlp-module-card,
  .yop-vs-mlp-club-types-hero-card,
  .yop-vs-mlp-club-type-card,
  .yop-vs-mlp-price-card {
    padding: 26px;
    border-radius: 24px;
  }

  .yop-vs-mlp-security-panel,
  .yop-vs-mlp-final-panel {
    padding: 32px 24px;
    border-radius: 26px;
  }

  .yop-vs-mlp-final .yop-vs-mlp-btn-primary {
    width: 100%;
    min-width: 0;
  }
}

/**
 * Vereinssuite Module Landingpage Mobile Fix 1.4.2
 *
 * YOPT_DEV_STAMP_START
 * {
 *   "project": "vereinssuite",
 *   "plugin": "yop-vereinssuite",
 *   "legacy_project_name": "vereinsmanager",
 *   "exclusive_platform": "vereinssuite.de",
 *   "deployment_model": "exclusive_saas_cloud",
 *   "module": "website_marketing",
 *   "feature": "modules_landingpage",
 *   "sub_feature": "mobile_layout_fix",
 *   "file": "assets/css/yop-vs-modules-landingpage.css",
 *   "file_role": "public_landingpage_styles",
 *   "object_role": "asset",
 *   "development_status": "in_progress",
 *   "development_phase": 17,
 *   "version": "0.1.0-beta.1.4.2",
 *   "last_updated": "2026-06-17",
 *   "last_change": "Optimizes Module landingpage for mobile viewport widths: hero, dashboard, feature strip, modules, club types, pricing, security, stats and CTA.",
 *   "area": "asset",
 *   "review_note": "Mobile CSS only. Public marketing page. No forms, no user input, no uploads, no club data.",
 *   "supports_saas": true,
 *   "supports_self_hosted": false,
 *   "supports_multi_tenant": true,
 *   "requires_active_club_context": false,
 *   "uses_platform_database": false,
 *   "uses_club_database": false,
 *   "uses_separate_club_database": false,
 *   "stores_club_id": false,
 *   "requires_license_check": false,
 *   "requires_plan_check": false,
 *   "requires_module_check": false,
 *   "requires_permission_check": false,
 *   "requires_audit_log": false,
 *   "handles_personal_data": false,
 *   "handles_sensitive_data": false,
 *   "handles_child_data": false,
 *   "handles_health_data": false,
 *   "handles_payment_data": false,
 *   "handles_documents": false,
 *   "handles_uploads": false,
 *   "supports_gutenberg": true,
 *   "supports_elementor": true
 * }
 * YOPT_DEV_STAMP_END
 */

/* ============================================================
   Mobile Grundkorrektur
   ============================================================ */

@media (max-width: 760px) {
  body.page-id-11 .yop-vs-mlp,
  .yop-vs-mlp {
    overflow-x: hidden;
  }

  body.page-id-11 .yop-vs-mlp-container,
  .yop-vs-mlp-container {
    width: min(100% - 28px, 1440px) !important;
  }

  .yop-vs-mlp-hero {
    padding-top: 38px !important;
    padding-bottom: 34px !important;
  }

  .yop-vs-mlp-hero::before,
  .yop-vs-mlp-hero::after {
    opacity: 0.14;
  }

  .yop-vs-mlp-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .yop-vs-mlp-eyebrow {
    margin-bottom: 12px;
    font-size: 10.5px;
    line-height: 1.25;
    letter-spacing: 0.075em;
  }

  .yop-vs-mlp-h1 {
    max-width: 100%;
    font-size: clamp(33px, 13vw, 45px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.065em !important;
  }

  .yop-vs-mlp-subline {
    max-width: 100%;
    margin-top: 18px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .yop-vs-mlp-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .yop-vs-mlp-btn {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 12px;
  }

  .yop-vs-mlp-trust-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 22px !important;
  }

  .yop-vs-mlp-trust-item {
    grid-template-columns: 34px 1fr;
    padding: 12px;
    border: 1px solid var(--yop-vs-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
  }

  .yop-vs-mlp-trust-item > span {
    width: 34px;
    height: 34px;
  }

  .yop-vs-mlp-trust-item small {
    max-width: none;
  }
}

/* ============================================================
   Mobile Dashboard
   ============================================================ */

@media (max-width: 760px) {
  .yop-vs-mlp-dashboard-wrap {
    width: 100%;
    margin-top: 4px;
  }

  .yop-vs-mlp-dashboard-wrap::before {
    right: -140px;
    top: -70px;
    width: 280px;
    height: 280px;
  }

  .yop-vs-mlp-dashboard {
    display: block !important;
    width: 100%;
    min-height: auto;
    max-width: 100%;
    border-width: 6px !important;
    border-radius: 22px !important;
    box-shadow: 0 22px 54px rgba(16, 16, 16, 0.14);
  }

  .yop-vs-mlp-dashboard-sidebar {
    display: none !important;
  }

  .yop-vs-mlp-dashboard-main {
    padding: 14px !important;
  }

  .yop-vs-mlp-dashboard-topbar {
    padding-bottom: 12px;
  }

  .yop-vs-mlp-dashboard-topbar strong {
    max-width: calc(100% - 44px);
    font-size: 15px !important;
    line-height: 1.25;
  }

  .yop-vs-mlp-avatar {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .yop-vs-mlp-dashboard-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin-top: 14px !important;
  }

  .yop-vs-mlp-dashboard-card {
    min-height: 96px !important;
    padding: 10px !important;
    border-radius: 13px !important;
  }

  .yop-vs-mlp-dashboard-card-head {
    gap: 6px;
    margin-bottom: 7px;
  }

  .yop-vs-mlp-dashboard-card-head span {
    width: 26px;
    height: 26px;
    border-radius: 9px;
  }

  .yop-vs-mlp-dashboard-card small {
    font-size: 8.8px !important;
    line-height: 1.15;
  }

  .yop-vs-mlp-dashboard-card strong {
    font-size: 17px !important;
  }

  .yop-vs-mlp-dashboard-card a {
    margin-top: 6px;
    font-size: 8.8px !important;
    line-height: 1.2;
  }

  .yop-vs-mlp-dashboard-panels {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .yop-vs-mlp-dashboard-cards {
    grid-template-columns: 1fr !important;
  }

  .yop-vs-mlp-dashboard-card {
    min-height: auto !important;
  }
}

/* ============================================================
   Mobile Feature-Leiste
   ============================================================ */

@media (max-width: 760px) {
  .yop-vs-mlp-feature-strip {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 28px !important;
    border-radius: 20px !important;
  }

  .yop-vs-mlp-strip-item {
    min-height: 112px !important;
    padding: 16px 12px !important;
    border-right: 1px solid var(--yop-vs-border);
    border-bottom: 1px solid var(--yop-vs-border);
  }

  .yop-vs-mlp-strip-item:nth-child(2n) {
    border-right: 0;
  }

  .yop-vs-mlp-strip-item span {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .yop-vs-mlp-strip-item strong {
    font-size: 11.5px !important;
    line-height: 1.2;
  }

  .yop-vs-mlp-strip-item small {
    margin-top: 5px;
    font-size: 10px !important;
    line-height: 1.35;
  }
}

@media (max-width: 360px) {
  .yop-vs-mlp-feature-strip {
    grid-template-columns: 1fr !important;
  }

  .yop-vs-mlp-strip-item {
    border-right: 0 !important;
  }
}

/* ============================================================
   Mobile Sektionen und Module
   ============================================================ */

@media (max-width: 760px) {
  .yop-vs-mlp-section,
  .yop-vs-mlp-club-types,
  .yop-vs-mlp-pricing,
  .yop-vs-mlp-security {
    padding-top: 58px !important;
  }

  .yop-vs-mlp-section-head {
    margin-bottom: 24px !important;
  }

  .yop-vs-mlp-section-head h2,
  .yop-vs-mlp-pricing h2,
  .yop-vs-mlp-security h2,
  .yop-vs-mlp-final h2 {
    font-size: clamp(28px, 9vw, 38px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.055em !important;
  }

  .yop-vs-mlp-section-head p,
  .yop-vs-mlp-pricing p,
  .yop-vs-mlp-final p {
    max-width: 100%;
    margin-top: 12px;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  .yop-vs-mlp-module-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .yop-vs-mlp-module-card {
    min-height: auto !important;
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .yop-vs-mlp-module-top {
    margin-bottom: 18px;
  }

  .yop-vs-mlp-module-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .yop-vs-mlp-module-card h3 {
    font-size: 18px !important;
    line-height: 1.16;
  }

  .yop-vs-mlp-module-card p {
    font-size: 13px !important;
    line-height: 1.5;
  }

  .yop-vs-mlp-module-card li {
    font-size: 12px !important;
  }

  .yop-vs-mlp-module-card a {
    margin-top: 16px;
    font-size: 12px;
  }
}

/* ============================================================
   Mobile Vereinsarten
   ============================================================ */

@media (max-width: 760px) {
  .yop-vs-mlp-club-types-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .yop-vs-mlp-club-types-hero-card {
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .yop-vs-mlp-club-types-hero-card h3 {
    font-size: clamp(27px, 8vw, 35px) !important;
    line-height: 1.05;
  }

  .yop-vs-mlp-club-types-hero-card p:not(.yop-vs-mlp-club-types-kicker) {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .yop-vs-mlp-club-types-pills {
    gap: 8px;
  }

  .yop-vs-mlp-club-types-pills span {
    min-height: 28px;
    font-size: 10.5px;
  }

  .yop-vs-mlp-club-types-mini-dashboard {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 20px !important;
  }

  .yop-vs-mlp-club-types-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .yop-vs-mlp-club-type-card {
    min-height: auto !important;
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .yop-vs-mlp-club-type-card span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    margin-bottom: 14px;
  }

  .yop-vs-mlp-club-type-card h3 {
    font-size: 17px !important;
  }

  .yop-vs-mlp-club-type-card p {
    font-size: 12.5px !important;
    line-height: 1.5;
  }

  .yop-vs-mlp-club-types-benefits {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 14px;
  }

  .yop-vs-mlp-club-types-benefits > div {
    min-height: auto;
    padding: 18px !important;
    border-radius: 18px !important;
  }
}

/* ============================================================
   Mobile Pricing
   ============================================================ */

@media (max-width: 760px) {
  .yop-vs-mlp-pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .yop-vs-mlp-price-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .yop-vs-mlp-price-card,
  .yop-vs-mlp-price-card.is-featured {
    width: 100%;
    padding: 24px !important;
    border-radius: 24px !important;
    transform: none !important;
  }

  .yop-vs-mlp-price-card > strong {
    font-size: 34px !important;
  }

  .yop-vs-mlp-price-card .yop-vs-mlp-btn {
    margin-top: 20px;
  }

  .yop-vs-mlp-check-list {
    gap: 7px;
  }

  .yop-vs-mlp-check-list li,
  .yop-vs-mlp-price-card li {
    font-size: 12px !important;
  }
}

/* ============================================================
   Mobile Security, Stats und CTA
   ============================================================ */

@media (max-width: 760px) {
  .yop-vs-mlp-security-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    min-height: auto;
    padding: 26px !important;
    border-radius: 26px !important;
  }

  .yop-vs-mlp-security-copy {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .yop-vs-mlp-security-icon {
    width: 72px;
    height: 84px;
    border-radius: 22px;
    font-size: 40px;
  }

  .yop-vs-mlp-security p {
    font-size: 13px !important;
    line-height: 1.55;
  }

  .yop-vs-mlp-security-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .yop-vs-mlp-security-card {
    min-height: auto;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .yop-vs-mlp-security-card span {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .yop-vs-mlp-security-card strong {
    font-size: 13px;
  }

  .yop-vs-mlp-security-card small {
    font-size: 11.5px;
  }

  .yop-vs-mlp-trust {
    padding-top: 24px;
  }

  .yop-vs-mlp-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .yop-vs-mlp-stat {
    min-height: auto;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .yop-vs-mlp-stat strong {
    font-size: 24px !important;
  }

  .yop-vs-mlp-final {
    padding-top: 28px !important;
    padding-bottom: 56px !important;
  }

  .yop-vs-mlp-final-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 26px !important;
    border-radius: 24px !important;
  }

  .yop-vs-mlp-final .yop-vs-mlp-btn-primary {
    width: 100%;
    min-width: 0;
  }
}

/**
 * Vereinssuite Module Landingpage Mobile Polish 1.4.3
 *
 * YOPT_DEV_STAMP_START
 * {
 *   "project": "vereinssuite",
 *   "plugin": "yop-vereinssuite",
 *   "legacy_project_name": "vereinsmanager",
 *   "exclusive_platform": "vereinssuite.de",
 *   "deployment_model": "exclusive_saas_cloud",
 *   "module": "website_marketing",
 *   "feature": "modules_landingpage",
 *   "sub_feature": "mobile_polish_final",
 *   "file": "assets/css/yop-vs-modules-landingpage.css",
 *   "file_role": "public_landingpage_styles",
 *   "object_role": "asset",
 *   "development_status": "review",
 *   "development_phase": 17,
 *   "version": "0.1.0-beta.1.4.3",
 *   "last_updated": "2026-06-17",
 *   "last_change": "Final mobile polish for Module landingpage: spacing, card density, pricing, security and CTA readability.",
 *   "area": "asset",
 *   "review_note": "Mobile CSS only. Public marketing page. No forms, no user input, no uploads, no club data.",
 *   "supports_saas": true,
 *   "supports_self_hosted": false,
 *   "supports_multi_tenant": true,
 *   "requires_active_club_context": false,
 *   "uses_platform_database": false,
 *   "uses_club_database": false,
 *   "uses_separate_club_database": false,
 *   "stores_club_id": false,
 *   "requires_license_check": false,
 *   "requires_plan_check": false,
 *   "requires_module_check": false,
 *   "requires_permission_check": false,
 *   "requires_audit_log": false,
 *   "handles_personal_data": false,
 *   "handles_sensitive_data": false,
 *   "handles_child_data": false,
 *   "handles_health_data": false,
 *   "handles_payment_data": false,
 *   "handles_documents": false,
 *   "handles_uploads": false,
 *   "supports_gutenberg": true,
 *   "supports_elementor": true
 * }
 * YOPT_DEV_STAMP_END
 */

@media (max-width: 760px) {
  .yop-vs-mlp {
    background:
      radial-gradient(circle at 90% 3%, rgba(255, 90, 0, 0.12), transparent 34%),
      linear-gradient(180deg, #fff8f3 0%, #ffffff 26%, #fbfbfb 72%, #ffffff 100%);
  }

  .yop-vs-mlp-hero {
    padding-top: 30px !important;
  }

  .yop-vs-mlp-hero-copy {
    text-align: left;
  }

  .yop-vs-mlp-h1 {
    max-width: 330px;
  }

  .yop-vs-mlp-subline {
    max-width: 350px;
  }

  .yop-vs-mlp-actions {
    max-width: 350px;
  }

  .yop-vs-mlp-trust-row {
    max-width: 350px;
  }

  .yop-vs-mlp-dashboard {
    margin-top: 4px;
  }

  .yop-vs-mlp-feature-strip {
    box-shadow: 0 10px 26px rgba(16, 16, 16, 0.055) !important;
  }

  .yop-vs-mlp-strip-item {
    min-height: 96px !important;
  }

  .yop-vs-mlp-strip-item small {
    display: none;
  }

  .yop-vs-mlp-section-head {
    max-width: 350px;
  }

  .yop-vs-mlp-module-card,
  .yop-vs-mlp-club-type-card,
  .yop-vs-mlp-price-card,
  .yop-vs-mlp-security-card,
  .yop-vs-mlp-stat {
    box-shadow: 0 8px 22px rgba(16, 16, 16, 0.055) !important;
  }

  .yop-vs-mlp-module-card::after,
  .yop-vs-mlp-club-type-card::after {
    width: 100px;
    height: 100px;
    right: -42px;
    top: -42px;
  }

  .yop-vs-mlp-module-card ul,
  .yop-vs-mlp-price-card ul {
    margin-top: 14px;
  }

  .yop-vs-mlp-club-types-hero-card {
    background:
      radial-gradient(circle at 92% 92%, rgba(255, 90, 0, 0.12), transparent 34%),
      linear-gradient(135deg, #fff8f3 0%, #ffffff 74%);
  }

  .yop-vs-mlp-club-types-mini-dashboard {
    box-shadow: 0 8px 22px rgba(16, 16, 16, 0.055);
  }

  .yop-vs-mlp-pricing h2 {
    max-width: 350px;
  }

  .yop-vs-mlp-price-card.is-featured {
    border-width: 1px;
    box-shadow: 0 12px 30px rgba(255, 90, 0, 0.13) !important;
  }

  .yop-vs-mlp-price-badge {
    top: -12px;
  }

  .yop-vs-mlp-security-panel {
    background:
      radial-gradient(circle at 92% 10%, rgba(255, 90, 0, 0.20), transparent 36%),
      linear-gradient(135deg, #101010 0%, #181818 100%);
  }

  .yop-vs-mlp-security-icon {
    margin-bottom: 2px;
  }

  .yop-vs-mlp-security-grid {
    gap: 10px !important;
  }

  .yop-vs-mlp-stat {
    grid-template-columns: 42px 1fr;
    gap: 5px 12px;
  }

  .yop-vs-mlp-stat span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .yop-vs-mlp-final-panel {
    background:
      radial-gradient(circle at 92% 25%, rgba(255, 90, 0, 0.18), transparent 36%),
      linear-gradient(135deg, #101010 0%, #181818 100%);
  }

  .yop-vs-mlp-final h2 {
    max-width: 340px;
  }

  .yop-vs-mlp-final p {
    max-width: 340px;
  }
}

@media (max-width: 390px) {
  .yop-vs-mlp-container {
    width: min(100% - 22px, 1440px) !important;
  }

  .yop-vs-mlp-h1 {
    font-size: clamp(31px, 13vw, 41px) !important;
  }

  .yop-vs-mlp-section-head h2,
  .yop-vs-mlp-pricing h2,
  .yop-vs-mlp-security h2,
  .yop-vs-mlp-final h2 {
    font-size: clamp(26px, 9vw, 34px) !important;
  }

  .yop-vs-mlp-dashboard-main {
    padding: 12px !important;
  }

  .yop-vs-mlp-feature-strip {
    grid-template-columns: 1fr !important;
  }

  .yop-vs-mlp-strip-item {
    min-height: 76px !important;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 10px;
  }

  .yop-vs-mlp-strip-item span {
    margin-bottom: 0;
  }

  .yop-vs-mlp-module-card,
  .yop-vs-mlp-club-types-hero-card,
  .yop-vs-mlp-club-type-card,
  .yop-vs-mlp-price-card,
  .yop-vs-mlp-security-panel,
  .yop-vs-mlp-final-panel {
    padding: 20px !important;
  }
}

.yop-vs-mlp-module-price {
  margin: 0 0 10px;
  color: var(--yop-vs-orange, #ff5a00);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.yop-vs-mlp-module-price span {
  color: var(--yop-vs-muted, #6d6d6d);
  font-size: 12px;
  font-weight: 700;
}

.yop-vs-mlp-addon-pricing {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--yop-vs-border, #e9e9e9);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.yop-vs-mlp-addon-pricing-head h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 950;
}

.yop-vs-mlp-addon-pricing-head p {
  margin: 0;
  color: var(--yop-vs-muted, #6d6d6d);
}

.yop-vs-mlp-addon-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.yop-vs-mlp-addon-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--yop-vs-border, #e9e9e9);
  border-radius: 14px;
  background: #ffffff;
}

.yop-vs-mlp-addon-price-card strong {
  font-size: 14px;
  font-weight: 900;
}

.yop-vs-mlp-addon-price-card span {
  color: var(--yop-vs-orange, #ff5a00);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .yop-vs-mlp-addon-pricing-grid {
    grid-template-columns: 1fr;
  }
}
