/* ========== VM-SOCLE ========== */
.vm-socle {
  background: #2B2B2B;
  border-radius: 20px;
  padding: 36px 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
  margin: 32px 0;
}
.vm-socle__top {
  margin-bottom: 28px;
}
.vm-socle__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #75999B;
  margin: 0 0 8px;
}
.vm-socle__headline {
  font-size: 20px;
  font-weight: 700;
  color: #FAF8F5;
  margin: 0;
}
.vm-socle__chain {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}
.vm-socle__step {
  flex: 1 1 160px;
  min-width: 0;
  background: #383838;
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 12px;
}
.vm-socle__step--accent {
  background: #3D2218;
}
.vm-socle__arrow {
  width: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 12px;
}
.vm-socle__arrow::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #4A6B6A;
}
.vm-socle__step-num {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #4A6B6A;
  display: block;
  margin-bottom: 8px;
}
.vm-socle__step-num--accent {
  color: #FE6038;
}
.vm-socle__step-title {
  font-size: 14px;
  font-weight: 700;
  color: #FAF8F5;
  margin: 0 0 4px;
}
.vm-socle__step-desc {
  font-size: 13px;
  color: #A09890;
  margin: 0;
  line-height: 1.5;
}
.vm-socle__stat {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.vm-socle__stat-item {
  flex: 1 1 120px;
  padding: 20px 16px;
}
.vm-socle__stat-val {
  font-family: 'Courier New', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #FAF8F5;
  display: block;
  margin-bottom: 4px;
}
.vm-socle__stat-label {
  font-size: 12px;
  color: #75999B;
  line-height: 1.4;
}
.vm-socle__stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  margin: 16px 0;
}

/* ========== VM-PREREQS ========== */
.vm-prereqs {
  background: #F5F2ED;
  border-radius: 20px;
  overflow: hidden;
  margin: 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.vm-prereqs__header {
  background: #EDE8E0;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(43,43,43,0.08);
}
.vm-prereqs__title {
  font-size: 16px;
  font-weight: 700;
  color: #2B2B2B;
  margin: 0 0 4px;
}
.vm-prereqs__sub {
  font-size: 13px;
  color: #5C5652;
  margin: 0;
}
.vm-prereqs__body {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.vm-prereqs__col {
  flex: 1 1 220px;
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid rgba(43,43,43,0.08);
}
.vm-prereqs__col:last-child {
  border-right: none;
}
.vm-prereqs__col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5C5652;
  margin: 0 0 14px;
}
.vm-prereqs__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(43,43,43,0.06);
}
.vm-prereqs__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.vm-prereqs__key {
  font-size: 11px;
  font-weight: 600;
  color: #4A6B6A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vm-prereqs__val {
  font-size: 14px;
  color: #2B2B2B;
  font-family: 'Courier New', monospace;
}
.vm-prereqs__val--up {
  color: #2B2B2B;
  font-weight: 600;
}
.vm-prereqs__tip {
  background: #FAF8F5;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #2B2B2B;
  margin-bottom: 8px;
  line-height: 1.45;
  border: 1px solid rgba(43,43,43,0.08);
}
.vm-prereqs__tip:last-child {
  margin-bottom: 0;
}
.vm-prereqs__tip--accent {
  border-color: #F0B49A;
  background: #FEF6F2;
  color: #8B3A22;
  font-weight: 600;
}

/* ========== VM-TYPES ========== */
.vm-types {
  background: #1A1A1A;
  border-radius: 20px;
  padding: 32px 28px;
  margin: 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.vm-types__intro {
  margin-bottom: 24px;
}
.vm-types__intro-label {
  font-size: 13px;
  font-weight: 600;
  color: #75999B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.vm-types__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.vm-types__card {
  flex: 1 1 200px;
  min-width: 0;
  border-radius: 14px;
  padding: 20px 18px;
}
.vm-types__card--muted {
  background: #2B2B2B;
}
.vm-types__card--featured {
  background: #2E1E14;
  border: 1px solid rgba(254,96,56,0.25);
}
.vm-types__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 4px;
}
.vm-types__card-name {
  font-size: 17px;
  font-weight: 700;
  color: #FAF8F5;
  margin: 0;
}
.vm-types__card-price {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #75999B;
  margin: 0;
}
.vm-types__card--featured .vm-types__card-price {
  color: #F0B49A;
}
.vm-types__card-fit {
  font-size: 13px;
  color: #A09890;
  margin: 0 0 14px;
  line-height: 1.45;
}
.vm-types__card-tag {
  display: inline-block;
  background: #FE6038;
  color: #FAF8F5;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.vm-types__card-limits {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
}
.vm-types__limits-label {
  font-size: 11px;
  font-weight: 600;
  color: #4A6B6A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.vm-types__limit-item {
  font-size: 13px;
  color: #A09890;
  margin: 0 0 5px;
  line-height: 1.4;
}
.vm-types__card--featured .vm-types__limit-item {
  color: #D4C8C0;
}

/* ========== VM-CRITERES ========== */
.vm-criteres {
  background: #F5F2ED;
  border-radius: 20px;
  overflow: hidden;
  margin: 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.vm-criteres__band {
  background: #4A6B6A;
  padding: 14px 28px;
}
.vm-criteres__band-text {
  font-size: 13px;
  font-weight: 700;
  color: #FAF8F5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
.vm-criteres__list {
  padding: 8px 0;
}
.vm-criteres__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(43,43,43,0.07);
}
.vm-criteres__row:last-child {
  border-bottom: none;
}
.vm-criteres__num {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #4A6B6A;
  min-width: 24px;
  padding-top: 2px;
}
.vm-criteres__content {
  flex: 1 1 260px;
  min-width: 0;
}
.vm-criteres__name {
  font-size: 16px;
  font-weight: 700;
  color: #2B2B2B;
  margin: 0 0 4px;
}
.vm-criteres__detail {
  font-size: 14px;
  color: #2B2B2B;
  margin: 0;
  line-height: 1.5;
}
.vm-criteres__impact {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  align-self: center;
}
.vm-criteres__impact--high {
  background: #2B2B2B;
  color: #FAF8F5;
}
.vm-criteres__impact--med {
  background: #EDE8E0;
  color: #5C5652;
}

/* ========== VM-ERREURS ========== */
.vm-erreurs {
  background: #2B2B2B;
  border-radius: 20px;
  overflow: hidden;
  margin: 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.vm-erreurs__header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.vm-erreurs__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #75999B;
  margin: 0 0 6px;
}
.vm-erreurs__title {
  font-size: 18px;
  font-weight: 700;
  color: #FAF8F5;
  margin: 0;
  line-height: 1.35;
}
.vm-erreurs__items {
  padding: 0;
}
.vm-erreurs__item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.vm-erreurs__item:last-child {
  border-bottom: none;
}
.vm-erreurs__item-left {
  flex: 2 1 240px;
  min-width: 0;
}
.vm-erreurs__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #FAF8F5;
  margin: 0 0 6px;
}
.vm-erreurs__item-desc {
  font-size: 14px;
  color: #A09890;
  margin: 0;
  line-height: 1.55;
}
.vm-erreurs__item-right {
  flex: 1 1 120px;
  min-width: 0;
  background: #383838;
  border-radius: 10px;
  padding: 14px 16px;
}
.vm-erreurs__item-key {
  font-size: 11px;
  font-weight: 600;
  color: #75999B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}
.vm-erreurs__item-data {
  font-family: 'Courier New', monospace;
  font-size: 15px;
  color: #FAF8F5;
  font-weight: 700;
  margin: 0 0 2px;
}
.vm-erreurs__item-data--bad {
  color: #FE6038;
}
.vm-erreurs__item-data--good {
  color: #75999B;
}

/* ========== VM-CONFIG ========== */
.vm-config {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.vm-config__terminal {
  flex: 2 1 300px;
  min-width: 0;
  background: #1A1A1A;
  border-radius: 16px;
  overflow: hidden;
}
.vm-config__term-bar {
  background: #2B2B2B;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vm-config__term-dot {
  width: 10px;
  height: 10px;
  background: #FE6038;
  border-radius: 50%;
  flex-shrink: 0;
}
.vm-config__term-title {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #75999B;
}
.vm-config__term-body {
  padding: 20px 20px 20px;
}
.vm-config__term-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: baseline;
}
.vm-config__term-line:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.vm-config__term-line--accent .vm-config__term-key {
  color: #FE6038;
}
.vm-config__term-key {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #4A6B6A;
  min-width: 90px;
  flex-shrink: 0;
}
.vm-config__term-val {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #D4C8C0;
  line-height: 1.5;
}
.vm-config__aside {
  flex: 1 1 180px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vm-config__aside-block {
  background: #F5F2ED;
  border-radius: 12px;
  padding: 16px 18px;
}
.vm-config__aside-block--sep {
  background: #EDE8E0;
}
.vm-config__aside-label {
  font-size: 11px;
  font-weight: 700;
  color: #4A6B6A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}
.vm-config__aside-val {
  font-family: 'Courier New', monospace;
  font-size: 26px;
  font-weight: 700;
  color: #2B2B2B;
  margin: 0 0 4px;
}
.vm-config__aside-note {
  font-size: 13px;
  color: #2B2B2B;
  margin: 0;
  line-height: 1.5;
}

/* ========== VM-BUDGET ========== */
.vm-budget {
  background: #F5F2ED;
  border-radius: 20px;
  overflow: hidden;
  margin: 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.vm-budget__header {
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(43,43,43,0.08);
}
.vm-budget__title {
  font-size: 16px;
  font-weight: 700;
  color: #2B2B2B;
  margin: 0;
}
.vm-budget__tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.vm-budget__tier {
  flex: 1 1 220px;
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid rgba(43,43,43,0.08);
}
.vm-budget__tier:last-child {
  border-right: none;
}
.vm-budget__tier--mid {
  background: #FAF8F5;
}
.vm-budget__tier-top {
  margin-bottom: 10px;
}
.vm-budget__tier-name {
  font-size: 13px;
  font-weight: 700;
  color: #4A6B6A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}
.vm-budget__tier-range {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #2B2B2B;
  margin: 0;
}
.vm-budget__tier-profile {
  font-size: 14px;
  font-weight: 600;
  color: #2B2B2B;
  margin: 0 0 6px;
}
.vm-budget__tier-fit {
  font-size: 13px;
  color: #5C5652;
  margin: 0 0 12px;
  line-height: 1.45;
}
.vm-budget__tier-note {
  font-size: 12px;
  color: #2B2B2B;
  background: #EDE8E0;
  border-radius: 8px;
  padding: 8px 10px;
  margin: 0;
  line-height: 1.5;
}
.vm-budget__tier--mid .vm-budget__tier-note {
  background: #F0E8DE;
  color: #8B3A22;
}
.vm-budget__footer {
  background: #2B2B2B;
  padding: 16px 28px;
}
.vm-budget__footer-text {
  font-size: 13px;
  color: #A09890;
  margin: 0;
  line-height: 1.5;
}

/* ========== VM-SOLUTIONS ========== */
.vm-solutions {
  margin: 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.vm-solutions__label {
  font-size: 11px;
  font-weight: 700;
  color: #75999B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}
.vm-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .vm-solutions__grid {
    grid-template-columns: 1fr;
  }
}
.vm-solutions__card {
  background: #FAF8F5;
  border: 1px solid #EBECDB;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vm-solutions__card--featured {
  background: #282120;
  border-color: transparent;
}
.vm-solutions__tier {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #75999B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}
.vm-solutions__tier--featured {
  color: #FE6038;
}
.vm-solutions__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #282120;
  margin: 0 0 4px;
  line-height: 1.3;
}
.vm-solutions__card--featured .vm-solutions__card-title {
  color: #FAF8F5;
}
.vm-solutions__card-sub {
  font-size: 13px;
  color: #75999B;
  margin: 0;
  font-weight: 600;
}
.vm-solutions__card--featured .vm-solutions__card-sub {
  color: #8A7E78;
}
.vm-solutions__card-desc {
  font-size: 14px;
  color: #584C4C;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.vm-solutions__card--featured .vm-solutions__card-desc {
  color: #C8BFBA;
}
.vm-solutions__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.vm-solutions__provider {
  font-size: 12px;
  font-weight: 600;
  color: #584C4C;
  background: #EBECDB;
  border-radius: 6px;
  padding: 4px 10px;
}
.vm-solutions__provider--partner {
  background: rgba(117,153,155,0.15);
  border: 1px solid rgba(117,153,155,0.35);
  color: #A8CED0;
  text-decoration: none;
}
.vm-solutions__provider--partner:hover {
  text-decoration: none;
}
.vm-solutions__cta-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #A8CED0;
  text-decoration: none;
  border: 1px solid rgba(117,153,155,0.45);
  border-radius: 8px;
  padding: 8px 14px;
  transition: background 0.15s;
}
.vm-solutions__cta-link:hover {
  background: rgba(117,153,155,0.12);
  text-decoration: none;
}

/* ========== VM-MIGRATION ========== */
.vm-migration {
  background: #1A1A1A;
  border-radius: 20px;
  padding: 32px 28px 24px;
  margin: 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.vm-migration__header {
  margin-bottom: 26px;
}
.vm-migration__label {
  font-size: 11px;
  font-weight: 700;
  color: #4A6B6A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 6px;
}
.vm-migration__title {
  font-size: 18px;
  font-weight: 700;
  color: #FAF8F5;
  margin: 0;
}
.vm-migration__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 24px;
}
.vm-migration__step {
  flex: 1 1 150px;
  min-width: 0;
  background: #2B2B2B;
  border-radius: 12px;
  padding: 16px 16px;
}
.vm-migration__step--accent {
  background: #2E1E14;
  border: 1px solid rgba(254,96,56,0.2);
}
.vm-migration__connector {
  width: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-migration__connector::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #4A6B6A;
}
.vm-migration__step-tag {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #4A6B6A;
  display: block;
  margin-bottom: 8px;
}
.vm-migration__step--accent .vm-migration__step-tag {
  color: #FE6038;
}
.vm-migration__step-name {
  font-size: 15px;
  font-weight: 700;
  color: #FAF8F5;
  margin: 0 0 6px;
}
.vm-migration__step-desc {
  font-size: 12px;
  color: #A09890;
  margin: 0;
  line-height: 1.5;
}
.vm-migration__signals {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}
.vm-migration__signals-label {
  font-size: 11px;
  font-weight: 600;
  color: #75999B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.vm-migration__signals-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vm-migration__signal {
  background: #2B2B2B;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: #D4C8C0;
}

/* ========== VM-CONCLUSION ========== */
.vm-conclusion {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  margin: 32px 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.vm-conclusion__left {
  flex: 2 1 280px;
  min-width: 0;
  background: #2B2B2B;
  padding: 32px 28px;
}
.vm-conclusion__label {
  font-size: 11px;
  font-weight: 700;
  color: #75999B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}
.vm-conclusion__title {
  font-size: 18px;
  font-weight: 700;
  color: #FAF8F5;
  margin: 0 0 22px;
  line-height: 1.35;
}
.vm-conclusion__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vm-conclusion__point {
  font-size: 14px;
  color: #D4C8C0;
  padding-left: 16px;
  border-left: 2px solid #4A6B6A;
  line-height: 1.45;
}
.vm-conclusion__right {
  flex: 1 1 240px;
  min-width: 0;
  background: #F5F2ED;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vm-conclusion__cta-label {
  font-size: 11px;
  font-weight: 700;
  color: #4A6B6A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.vm-conclusion__cta-text {
  font-size: 14px;
  color: #2B2B2B;
  margin: 0 0 20px;
  line-height: 1.6;
}
.vm-conclusion__cta-link {
  font-size: 15px;
  font-weight: 600;
  color: #2B2B2B;
  margin: 0;
}
.vm-conclusion__link {
  color: #8B3A22;
  text-decoration: underline;
}
