/* ============================================================
   PRICING PAGE
   Plan cards + "included in every hire" + free Work Passport.
   Uses shared tokens from base.css; this file is page-specific only.
   ============================================================ */

/* ---- Hero ------------------------------------------------- */
.hero { padding: var(--hero-pad-t) 0 18px; text-align: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; margin-top: 14px; }
.hero p.lede { font-size: 1.15rem; color: var(--muted); margin: 18px auto 0; max-width: 52ch; }
.icp {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 20px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem; font-size: .86rem; color: #3a3c49;
}
.icp b { color: var(--ink); }

section.block { padding: var(--sec-pad-tight) 0; }

/* ---- Plan cards ------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 30px 26px; display: flex; flex-direction: column;
}
.plan.popular {
  border: 2px solid var(--blue);
  box-shadow: 0 36px 70px -34px rgba(26, 60, 242, .5);
  transform: translateY(-10px); z-index: 2; padding-top: 48px;
}
.plan .pop {
  position: absolute; top: 0; left: 0; right: 0; background: var(--blue); color: #fff;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  text-align: center; padding: .5rem; border-radius: 20px 20px 0 0;
}
.plan .pname { font-size: 1.4rem; font-weight: 700; }
.plan .pblurb { color: var(--muted); font-size: .88rem; margin-top: 6px; min-height: 2.6em; }
.plan .price { display: flex; align-items: baseline; gap: .3rem; margin: 20px 0 8px; }
.plan .price .amt {
  font-family: var(--display); font-weight: 800; font-size: 3rem;
  letter-spacing: -.02em; line-height: 1;
}
.plan .price .unit { color: var(--muted); font-size: .92rem; font-weight: 500; }
.plan .perline {
  display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start;
  background: var(--verified-tint); color: #0a6b4a; font-weight: 600; font-size: .84rem;
  padding: .4rem .7rem; border-radius: 999px;
}
.plan .perline .pc { color: var(--verified); font-weight: 800; }
.plan .builtfor {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin: 14px 0 18px;
}
.plan ul { list-style: none; display: grid; gap: 10px; margin: 4px 0 24px; }
.plan li { display: flex; gap: .6rem; font-size: .9rem; align-items: flex-start; }
.plan li .ck { color: var(--verified); font-weight: 800; flex: none; }
.plan .cta { margin-top: auto; }
.plan .cta .btn { width: 100%; }
@media (max-width: 880px) {
  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan.popular { transform: none; }
}

/* ---- Section heading -------------------------------------- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; margin-top: 10px; }
.sec-head p { color: var(--muted); margin-top: 12px; }

/* ---- Included in every hire ------------------------------- */
.incl {
  max-width: 980px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 30px; box-shadow: 0 30px 60px -38px rgba(13, 13, 18, .25);
}
.incl .ih { text-align: center; margin-bottom: 22px; }
.incl .ih .lbl {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--verified);
}
.incl .ih h3 { font-size: 1.35rem; font-weight: 800; margin-top: 8px; }
.incl .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.chk { display: flex; gap: 12px; align-items: flex-start; background: var(--paper-2); border-radius: 14px; padding: 16px 18px; }
.chk .ci {
  width: 34px; height: 34px; border-radius: 10px; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.05rem; flex: none;
}
.chk .cn { font-weight: 600; font-size: .95rem; }
.chk .cd { color: var(--muted); font-size: .8rem; margin-top: 2px; }
.optional {
  margin-top: 16px; display: flex; align-items: center; gap: 14px;
  border: 1.5px dashed var(--line); border-radius: 14px; padding: 16px 18px; flex-wrap: wrap;
}
.optional .oi {
  width: 34px; height: 34px; border-radius: 10px; background: var(--paper-2);
  display: grid; place-items: center; font-size: 1.05rem; flex: none;
}
.optional .ot b { font-weight: 600; }
.optional .ot span { display: block; color: var(--muted); font-size: .82rem; margin-top: 1px; }
.optional .op { margin-left: auto; font-family: var(--display); font-weight: 800; font-size: 1.3rem; white-space: nowrap; }
.optional .op .u { font-family: var(--body); font-weight: 500; font-size: .74rem; color: var(--muted); }
@media (max-width: 760px) {
  .incl .grid { grid-template-columns: 1fr; }
  .optional .op { margin-left: 0; }
}

/* ---- Free Work Passport band ------------------------------ */
.passport {
  max-width: 980px; margin: 24px auto 0; background: var(--ink); color: #fff;
  border-radius: 20px; padding: 26px 30px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.passport .pi {
  width: 52px; height: 52px; border-radius: 14px; background: var(--verified); color: #fff;
  display: grid; place-items: center; font-size: 1.5rem; flex: none;
}
.passport h3 { font-size: 1.2rem; font-weight: 700; }
.passport p { color: #b9bccb; font-size: .92rem; margin-top: 4px; max-width: 62ch; }
.passport .free { margin-left: auto; font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: #7be0b3; }
@media (max-width: 760px) { .passport .free { margin-left: 0; } }

/* ---- FAQ -------------------------------------------------- */
.faq { max-width: 780px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa button {
  width: 100%; text-align: left; background: none; border: 0;
  font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
  padding: 20px 2px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.qa button .pl { color: var(--blue); font-size: 1.3rem; flex: none; transition: transform .2s; }
.qa.open button .pl { transform: rotate(45deg); }
.qa .a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.qa.open .a { max-height: 320px; }
.qa .a p { color: var(--muted); font-size: .96rem; padding: 0 2px 20px; }

/* ---- Final CTA -------------------------------------------- */
.final {
  background: linear-gradient(120deg, #1A3CF2 0%, #3b2bd0 60%, #6c2bb0 100%);
  color: #fff; border-radius: 28px; padding: 54px 48px; text-align: center; max-width: 900px; margin: 0 auto;
}
.final h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 800; }
.final p { color: rgba(255, 255, 255, .88); margin: 14px auto 24px; font-size: 1.06rem; max-width: 46ch; }
.final-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
