/* ==========================================================================
   KunwarTrust — Public / marketing pages
   ========================================================================== */

body.landing { background: #fff; }

/* ---------------------------------------------------------- top bar -- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

/* Co-branded lock-up: KunwarTrust × ARMOUR1X */
.cobrand { display: flex; align-items: center; gap: 16px; }

/* .brand / .brand-mark / .brand-name / .brand-sub live in base.css — the
   portal sidebar uses the same lock-up and does not load this stylesheet. */

.cobrand-x { color: var(--ink-400); font-size: 18px; font-weight: 300; }

.mainnav { display: flex; align-items: center; gap: 4px; }
.mainnav a {
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
}
.mainnav a:hover { background: var(--blue-50); color: var(--blue-600); }
.mainnav a[aria-current="page"] { color: var(--blue-600); background: var(--blue-50); }

.topbar-cta { display: flex; align-items: center; gap: 10px; }

/* Pure-CSS mobile menu (checkbox toggle — no JS) */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

/* ------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 460px at 88% 8%, rgba(20, 102, 204, .10), transparent 62%),
    linear-gradient(180deg, #f7faff 0%, #eef4fd 100%);
  border-bottom: 1px solid var(--line-soft);
}

.hero .shell {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
  padding-block: 68px 76px;
}

.hero-title {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.02;
  color: var(--navy-900);
  text-transform: uppercase;
}
.hero-title .accent { color: var(--blue-600); }

.hero-kicker {
  margin-top: 12px;
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: -.01em;
}

.hero-copy {
  margin-top: 16px;
  max-width: 30ch;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.42;
  color: var(--ink-700);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 28px;
  max-width: 520px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
}
.hero-points .ico { color: var(--blue-600); }

.hero-founder {
  margin-top: 20px;
  max-width: 48ch;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-500);
}
.hero-founder b { color: var(--navy-800); font-weight: 700; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Hero artwork — CSS/SVG composition, no external assets */
.hero-art { position: relative; }

.hero-art-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(150deg, #dbe8fb 0%, #eaf1fd 48%, #f6f9ff 100%);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero-art-frame svg { width: 100%; height: 100%; }

.hero-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  color: var(--blue-600);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
}
.hero-float-a { top: 8%;  right: -14px; }
.hero-float-b { bottom: 16%; left: -18px; }

/* -------------------------------------------------- feature ribbon -- */

.ribbon {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
.ribbon .shell {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding-block: 22px;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 18px;
  border-left: 1px solid var(--line-soft);
}
.ribbon-item:first-child { border-left: 0; padding-left: 0; }
.ribbon-item .ico { color: var(--navy-700); }
.ribbon-item strong { display: block; font-size: 14px; color: var(--ink-900); }
.ribbon-item span { font-size: 12.5px; color: var(--ink-500); }

/* ----------------------------------------------------------- blocks -- */

.section { padding-block: 76px; }
.section-tint { background: var(--canvas); }

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.02em;
}
.section-head p { margin-top: 12px; font-size: 17px; color: var(--ink-500); }

/* ----------------------------------------------------------- steps -- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 14px;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-100);
  letter-spacing: -.02em;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-500); }

/* ------------------------------------------------------------ plans -- */

.plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--blue-100);
  box-shadow: var(--shadow-md);
}

.plan-featured {
  border-color: var(--blue-500);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.plan-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: var(--r-pill);
  background: var(--blue-600);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--navy-900);
  text-transform: uppercase;
}
.plan-kind {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-400);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
}
.plan-price b {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy-900);
}
.plan-price s { font-size: 14px; color: var(--ink-400); }

.plan-note {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-500);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 22px 0 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
}
.plan-features .ico { color: var(--green-600); margin-top: 2px; }
.plan-features .base { font-weight: 700; color: var(--ink-900); }

.plan .btn { margin-top: auto; }

.plans-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 22px;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
}
.plans-foot .ico { color: var(--blue-600); }

/* ------------------------------------------------------- stats band -- */

.statband {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--r-xl);
  color: #fff;
  overflow: hidden;
}
.statband-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 38px 26px;
}
.statband-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-inline: 20px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.statband-item:first-child { border-left: 0; }
.statband-item .ico-tile {
  background: rgba(255, 255, 255, .12);
  color: #a9c9f4;
}
.statband-item b {
  display: block;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.15;
}
.statband-item span { font-size: 13px; color: rgba(255, 255, 255, .72); }

/* -------------------------------------------------------- assurance -- */

.assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.assurance-item { display: flex; align-items: flex-start; gap: 14px; }
.assurance-item strong {
  display: block;
  font-size: 15.5px;
  color: var(--navy-800);
  margin-bottom: 3px;
}
.assurance-item span { font-size: 13.5px; color: var(--ink-500); }

/* -------------------------------------------------------- final cta -- */

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 34px 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, #fff 0%, var(--blue-50) 100%);
  box-shadow: var(--shadow-sm);
}
.cta-strip h2 { font-size: 25px; letter-spacing: -.02em; }
.cta-strip p { margin-top: 4px; color: var(--ink-500); }

/* ------------------------------------------------------------- FAQ -- */

.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 4px 20px;
  box-shadow: var(--shadow-xs);
}
.faq details[open] { border-color: var(--blue-100); }
.faq summary {
  padding: 16px 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--blue-600);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 18px; font-size: 14.5px; color: var(--ink-500); }

/* ---------------------------------------------------------- footer -- */

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .68);
  padding-block: 56px 26px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.site-footer h4 {
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: rgba(255, 255, 255, .55); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255, 255, 255, .68); }
.footer-links a:hover { color: #fff; }
.footer-blurb { margin-top: 16px; max-width: 40ch; line-height: 1.65; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { color: rgba(255, 255, 255, .5); }
.footer-bottom a:hover { color: #fff; }

/* ------------------------------------------------------------- auth -- */

.auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}

.auth-aside {
  position: relative;
  overflow: hidden;
  padding: 56px 60px;
  color: #fff;
  background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-600) 100%);
  display: flex;
  flex-direction: column;
}
.auth-aside .brand-name,
.auth-aside .brand-sub { color: #fff; }
.auth-aside .brand-sub { color: rgba(255, 255, 255, .6); }
.auth-aside h2 {
  margin-top: auto;
  font-size: 32px;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 15ch;
}
.auth-aside p { margin-top: 14px; color: rgba(255, 255, 255, .72); max-width: 42ch; }
.auth-aside-list { margin-top: 30px; display: grid; gap: 14px; }
.auth-aside-list li { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.auth-aside-list .ico { color: #8fbaf0; }
.auth-aside-stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.auth-aside-stats b { display: block; font-size: 24px; color: #fff; }
.auth-aside-stats span { font-size: 12.5px; color: rgba(255, 255, 255, .6); }

.auth-panel {
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: #fff;
}
.auth-form { width: 100%; max-width: 420px; }
.auth-form h1 { font-size: 28px; letter-spacing: -.02em; }
.auth-form > p { margin-top: 8px; color: var(--ink-500); }

.field { display: block; margin-top: 20px; }
.field > span {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-900);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(20, 102, 204, .12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-hint { margin-top: 6px; font-size: 12.5px; color: var(--ink-400); }

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--ink-500);
}
.check-row input { margin-top: 3px; accent-color: var(--blue-600); }

.auth-alt {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
  font-size: 14px;
  color: var(--ink-500);
}

/* ------------------------------------------------------- responsive -- */

@media (max-width: 1080px) {
  .hero .shell { grid-template-columns: 1fr; gap: 44px; padding-block: 48px 56px; }
  .hero-copy { max-width: 46ch; }
  .ribbon .shell { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .ribbon-item:nth-child(3n+1) { border-left: 0; padding-left: 0; }
  .statband-inner { grid-template-columns: repeat(3, 1fr); gap: 24px 8px; }
  .statband-item:nth-child(3n+1) { border-left: 0; }
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .assurance { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
}

@media (max-width: 860px) {
  .mainnav,
  .topbar-cta .btn-ghost { display: none; }
  .nav-toggle-label {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    cursor: pointer;
    color: var(--navy-800);
  }
  .nav-toggle:checked ~ .mainnav {
    display: grid;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 12px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-toggle:checked ~ .mainnav a { padding: 12px 10px; }
  .topbar .shell { position: relative; min-height: 68px; }
  .cobrand-x, .cobrand .brand:last-child .brand-sub { display: none; }
}

@media (max-width: 720px) {
  .section { padding-block: 52px; }
  .hero-points { grid-template-columns: 1fr; }
  .ribbon .shell { grid-template-columns: repeat(2, 1fr); }
  .ribbon-item { border-left: 0; padding-left: 0; }
  .statband-inner { grid-template-columns: repeat(2, 1fr); padding: 28px 20px; }
  .statband-item { border-left: 0; padding-inline: 0; }
  .plans, .steps, .assurance { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 26px 22px; }
  .cobrand .brand:last-child { display: none; }
}

/* ==========================================================================
   Pricing page — packages, module builder, industry solutions
   ========================================================================== */

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-800);
}

.trustrow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 44px;
  margin-top: 34px;
}
.trustrow-item { display: flex; align-items: center; gap: 12px; }
.trustrow-item strong { display: block; font-size: 14px; color: var(--ink-900); }
.trustrow-item span { font-size: 12.5px; color: var(--ink-500); }

/* numbered content block */
.pblock {
  padding: 30px;
  margin-bottom: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.pblock-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 24px;
  flex-wrap: wrap;
}
.pblock-head h2 { font-size: 22px; letter-spacing: -.02em; }
.pblock-head .note { font-size: 13px; color: var(--ink-500); }
.pblock-sub { margin: 6px 0 24px; font-size: 13.5px; color: var(--ink-500); }

/* circular icon on package cards */
.plan-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 18px auto 2px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
}
.plan-centered { text-align: center; }
.plan-centered .plan-price { justify-content: center; }
.plan-centered .plan-features li { text-align: left; }

/* elite bespoke band */
.elite {
  display: flex;
  align-items: center;
  gap: 18px 24px;
  flex-wrap: wrap;
  padding: 22px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
}
.elite-crown {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  color: #ffc53d;
}
.elite h3 { color: #fff; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.elite p { margin-top: 4px; font-size: 13.5px; color: rgba(255, 255, 255, .72); }
.elite-price { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -.01em; white-space: nowrap; }

/* ---------------------------------------------- module builder -- */
/* The running tally is pure CSS: each checked module bumps two counters
   (`picked` and `total`), and the summary card renders them via content(). */

.modgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: picked 0 total 0;
}

.mod { position: relative; }

.mod-cb {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 17px;
  height: 17px;
  margin: 0;
  transform: translateY(-50%);
  accent-color: var(--blue-600);
  cursor: pointer;
}

.mod-face {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 13px 44px 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease;
}
.mod-face:hover { border-color: var(--blue-500); background: var(--blue-50); }
.mod-face .ico { color: var(--blue-600); flex: none; }
.mod-face .grow { min-width: 0; }
.mod-face b { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-900); }
.mod-face span { font-size: 12.5px; color: var(--ink-500); }
.mod-custom .mod-face span { color: var(--blue-600); font-weight: 700; }

.mod-cb:checked + .mod-face {
  border-color: var(--blue-600);
  background: var(--blue-50);
  box-shadow: inset 0 0 0 1px var(--blue-600);
}
.mod-cb:focus-visible + .mod-face {
  outline: 3px solid rgba(20, 102, 204, .45);
  outline-offset: 2px;
}

.mod-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  background: var(--blue-50);
}
.mod-count { font-size: 12.5px; color: var(--ink-500); }
.mod-count::after { content: counter(picked) " modules selected"; }
.mod-total { font-size: 17px; font-weight: 800; letter-spacing: -.01em; color: var(--navy-900); }
.mod-total::after { content: "Total: \20B9" counter(total); }
.mod-summary .btn { margin-top: 9px; }

/* Per-module counter weights. Incremented on the label rather than the
   input: labels are always in-flow boxes, so the counters resolve even
   where a replaced element might not generate one. */
#m01:checked + .mod-face { counter-increment: picked 1 total 2000; }
#m02:checked + .mod-face { counter-increment: picked 1 total 2500; }
#m03:checked + .mod-face { counter-increment: picked 1 total 3000; }
#m04:checked + .mod-face { counter-increment: picked 1 total 2500; }
#m05:checked + .mod-face { counter-increment: picked 1 total 5000; }
#m06:checked + .mod-face { counter-increment: picked 1 total 6000; }
#m07:checked + .mod-face { counter-increment: picked 1 total 5000; }
#m08:checked + .mod-face { counter-increment: picked 1 total 8000; }
#m09:checked + .mod-face { counter-increment: picked 1 total 7500; }
#m10:checked + .mod-face { counter-increment: picked 1 total 5000; }
#m11:checked + .mod-face { counter-increment: picked 1 total 5000; }
#m12:checked + .mod-face { counter-increment: picked 1 total 6000; }
#m13:checked + .mod-face { counter-increment: picked 1 total 6000; }
#m14:checked + .mod-face { counter-increment: picked 1 total 10000; }
#m15:checked + .mod-face { counter-increment: picked 1 total 12000; }
#m16:checked + .mod-face { counter-increment: picked 1 total 10000; }
#m17:checked + .mod-face { counter-increment: picked 1 total 8000; }
#m18:checked + .mod-face { counter-increment: picked 1 total 8000; }
#m19:checked + .mod-face { counter-increment: picked 1 total 15000; }
#m20:checked + .mod-face { counter-increment: picked 1 total 20000; }
#m21:checked + .mod-face { counter-increment: picked 1 total 50000; }
#m22:checked + .mod-face { counter-increment: picked 1 total 10000; }
#m23:checked + .mod-face { counter-increment: picked 1; }
/* ------------------------------------------ industry solutions -- */

.solgrid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.sol {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.sol:hover { border-color: var(--blue-500); box-shadow: var(--shadow-xs); }
.sol .ico { color: var(--blue-600); flex: none; }
.sol b { display: block; font-size: 13.5px; color: var(--ink-900); }
.sol span { font-size: 13px; font-weight: 700; color: var(--blue-600); }
.sol-all { justify-content: center; text-align: center; font-weight: 700; color: var(--blue-600); }

/* --------------------------------------------- compliance note -- */

.compliance {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  background: var(--blue-50);
}
.compliance .ico-tile { background: #fff; }
.compliance strong { display: block; margin-bottom: 3px; font-size: 14.5px; color: var(--navy-800); }
.compliance p { font-size: 13px; color: var(--ink-500); max-width: 80ch; }

@media (max-width: 1080px) {
  .modgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .solgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .modgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pblock { padding: 22px 18px; }
}
@media (max-width: 560px) {
  .modgrid, .solgrid { grid-template-columns: minmax(0, 1fr); }
  .elite { padding: 20px; }
}