/* Milorium — pricing page (calorize-style: clean light base, green accents). */
.navright { display: flex; align-items: center; gap: 16px; }
.navlink { font-weight: 700; font-size: 15px; color: var(--ink); }
.navlink:hover { color: var(--green); text-decoration: none; }

.phead { text-align: center; padding: 56px 0 0; }
.phead h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 900; letter-spacing: -1.1px; margin: 0 0 12px; }
.phead p { color: var(--muted); font-size: 18px; max-width: 44ch; margin: 0 auto 28px; }

/* Period toggle */
.toggle { display: inline-flex; gap: 4px; padding: 5px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; }
.toggle button { font: inherit; font-size: 15px; font-weight: 700; cursor: pointer; border: 0; background: transparent; color: var(--muted); padding: 9px 20px; border-radius: 999px; }
.toggle button.on { background: var(--grad); color: #fff; }

/* Plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 44px 0 18px; align-items: start; }
.plan {
  position: relative; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
}
.plan.pop { border: 2px solid var(--green-bright); box-shadow: 0 20px 50px rgba(52,199,89,.16); }
.badge-pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 12.5px; font-weight: 800; letter-spacing: .3px;
  padding: 6px 15px; border-radius: 999px; white-space: nowrap;
}
.pname { font-size: 21px; font-weight: 900; letter-spacing: -0.4px; }
.pdesc { color: var(--muted); font-size: 15px; margin-top: 3px; }
.pprice { margin: 18px 0 22px; display: flex; align-items: baseline; gap: 4px; }
.pprice .amt { font-size: 40px; font-weight: 900; letter-spacing: -1.5px; }
.pprice .per { color: var(--muted); font-size: 16px; font-weight: 700; }

.feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.feats li { position: relative; padding-left: 30px; font-size: 15.5px; font-weight: 500; line-height: 1.45; }
.feats li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-bright) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-11'/%3E%3C/svg%3E") center/13px no-repeat;
}

.pcta { margin-top: 26px; text-align: center; font-weight: 800; font-size: 15px; padding: 14px; border-radius: var(--radius); }
.pcta.solid { background: var(--grad); color: #fff; }
.pcta.ghost { background: var(--card); color: var(--muted); border: 1px solid var(--line); }

.pnote { text-align: center; color: var(--muted); font-size: 14px; padding: 18px 0 64px; }

@media (max-width: 800px) {
  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan.pop { order: -1; }
}
