/* ==== Pricing Philosophy (pp2) — fully scoped, unified brand color ==== */
.pp2 {
  --pp2-ink: #0f172a;
  --pp2-muted: #5b6778;
  --pp2-bg: #f2fdf9;          /* soft mint background */
  --pp2-card: #ffffff;
  --pp2-ring: #e6ebf2;
  --pp2-green: #12616E;       /* unified brand color */

  padding: 56px 16px 64px;
  background: var(--pp2-bg);
  font-family: 'Montserrat', sans-serif;

  position: relative;
  isolation: isolate;
  width: 100%;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.pp2 .pp2-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 920px) {
  .pp2 .pp2-wrap { grid-template-columns: 1fr; }
}

/* Left column */
.pp2 .pp2-h2 {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: clamp(22px, 3.8vw, 34px);
  color: var(--pp2-ink);
}

.pp2 .pp2-lead {
  margin: 0 0 18px;
  color: var(--pp2-muted);
  font-size: clamp(14px, 2.2vw, 16.5px);
  line-height: 1.75;
}

.pp2 .pp2-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.pp2 .pp2-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--pp2-ink);
  font-size: 15.5px;
  line-height: 1.6;
}

.pp2 .pp2-list strong { font-weight: 700; }

.pp2 .pp2-ico {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 2px;
  color: var(--pp2-green);
}

.pp2 .pp2-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Right card (flat, clean design) */
.pp2 .pp2-card {
  background: var(--pp2-card);
  border-radius: 14px;
  padding: 22px 22px 18px;
  border: 0;
  box-shadow: none;
}

.pp2 .pp2-h3 {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 800;
  color: var(--pp2-ink);
}

.pp2 .pp2-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--pp2-ring);
}

.pp2 .pp2-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pp2 .pp2-item-title {
  font-weight: 700;
  color: var(--pp2-ink);
  margin-bottom: 4px;
}

.pp2 .pp2-item-text {
  color: var(--pp2-muted);
  font-size: 15px;
  line-height: 1.6;
}
