/* mod_kw_catalog – planes */

.kw-planes-wrap {
  --plane-bg: #1e231e;
  --plane-border: rgba(255,255,255,0.07);
  --plane-green: #8bc34a;
  --plane-text: #e8e8e8;
  --plane-muted: #888;
  --plane-cross: #555;
  --plane-value: #fff;
}

/* Card */
.plane-card {
  background: var(--plane-bg);
  border: 1px solid var(--plane-border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--plane-text);
  font-family: var(--font-sans, sans-serif);
}

/* Header */
.plane-header {
  margin-bottom: 1.25rem;
}
.plane-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.3rem;
}
.plane-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: var(--plane-green);
  margin: 0 0 0.6rem;
}
.plane-description {
  font-size: 13px;
  color: var(--plane-muted);
  line-height: 1.6;
  margin: 0;
}

/* Feature list */
.plane-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  border-top: 1px solid var(--plane-border);
  padding-top: 1rem;
}

.plane-feature {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0.35rem 0;
  font-size: 13px;
  border-bottom: 1px solid var(--plane-border);
}
.plane-feature:last-child {
  border-bottom: none;
}

/* Riga con valore (item_value presente) */
.plane-feature.has-value {
  justify-content: space-between;
}
.plane-feature.has-value .feature-label {
  color: var(--plane-muted);
}
.plane-feature.has-value .feature-val {
  font-weight: 700;
  color: var(--plane-value);
  white-space: nowrap;
}

/* Riga con icona check/cross */
.plane-feature.has-check .feature-icon {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.plane-feature.has-check .feature-icon.check { color: var(--plane-green); }
.plane-feature.has-check .feature-icon.cross { color: var(--plane-cross); }
.plane-feature.has-check .feature-text {
  color: var(--plane-text);
}
.plane-feature.has-check.is-cross .feature-text {
  color: var(--plane-muted);
}

/* Footer con bottone */
.plane-footer {
  margin-top: auto;
}
.plane-footer .btn {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  border-color: var(--plane-green);
  color: var(--plane-green);
}
.plane-footer .btn:hover,
.plane-footer .btn:focus {
  background: var(--plane-green);
  color: #1a1f1a;
}

/* Gap tra le card */
.kw-planes-wrap .row {
  row-gap: 1.5rem;
}
