/* =====================================================================
   SOLUTIONS / PACKAGES PAGE  (builds on style.css tokens)
   ===================================================================== */

.pkg-grid { display: grid; gap: 24px; }
.pkg-grid-3 { grid-template-columns: repeat(3, 1fr); margin-bottom: 24px; }
.pkg-grid-4 { grid-template-columns: repeat(4, 1fr); }

.pkg-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 24px 26px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.pkg-primary { border-color: #dfe4ec; }
.pkg-primary.has-badge { border-top: 3px solid var(--gold); }

.pkg-badge {
  position: absolute; top: 0; right: 22px; transform: translateY(-50%);
  background: var(--gold); color: var(--navy-deep); font-size: 11px; font-weight: 800;
  letter-spacing: .5px; padding: 6px 14px; border-radius: 6px; box-shadow: var(--shadow-sm);
}
.pkg-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: 26px; margin: 6px auto 18px;
}
.pkg-icon-sm { width: 56px; height: 56px; font-size: 22px; }
.pkg-card h3 { font-family: var(--serif); font-size: 18px; color: var(--navy); text-align: center; margin-bottom: 10px; }
.pkg-tagline { text-align: center; font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.pkg-features { margin-bottom: 22px; }
.pkg-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink); margin-bottom: 11px; }
.pkg-features li i { color: #1f9d55; font-size: 12px; margin-top: 4px; flex: none; }
.pkg-link {
  margin-top: auto; color: var(--navy); font-weight: 700; font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 8px; transition: gap .2s, color .2s;
}
.pkg-link:hover { color: var(--gold); gap: 13px; }

/* Future solutions */
.future-sol-sec { background: var(--bg-soft); }
.future-sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.future-sol { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.future-sol-icon { width: 48px; height: 48px; flex: none; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); font-size: 20px; }
.future-sol h4 { font-family: var(--serif); font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.future-sol p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.soon-pill { display: inline-block; background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 7px; }

/* Compare table */
.compare-wrap { overflow-x: auto; margin-top: 40px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.compare-table-2 { width: 100%; border-collapse: collapse; min-width: 860px; }
.compare-table-2 thead th {
  background: var(--bg-soft); color: var(--navy); font-size: 12px; font-weight: 700;
  padding: 16px 12px; text-align: center; line-height: 1.3; border-bottom: 2px solid var(--line); vertical-align: bottom;
}
.compare-table-2 thead th:first-child { text-align: left; }
.compare-table-2 td { padding: 12px; text-align: center; border-bottom: 1px solid var(--line); font-size: 13px; }
.compare-table-2 tbody tr:last-child td { border-bottom: 0; }
.compare-table-2 tbody tr:hover { background: var(--bg-soft); }
.cmp-feature { text-align: left; font-weight: 600; color: var(--ink); white-space: nowrap; }
.cmp-yes { color: #1f9d55; }
.cmp-no { color: #c5cbd6; }

@media (max-width: 1024px) {
  .pkg-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .future-sol-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .pkg-grid-3, .pkg-grid-4 { grid-template-columns: 1fr; }
}
