/* Scoped pricing table styles (prevents header/footer CSS conflicts) */
.pricing-compare {
  --navy: #1a2b5e;
  --navy-dark: #111d45;
  --navy-glow: #1e3270;
  --orange: #f47920;
  --orange-lt: #f9a55a;
  --orange-bg: #fff3e8;
  --orange-rim: #f4c89a;
  --white: #ffffff;
  --surface: #f5f7fc;
  --border: #dce2f0;
  --text: #1e2a45;
  --muted: #7482a0;
  --green: #16a34a;
  --red: #dc2626;
  --row-alt: #eef1f9;
  --pc-label-col: 230px;
  --pc-data-col: calc((100% - var(--pc-label-col)) / 4);
  --pc-hl-left: calc(var(--pc-label-col) + var(--pc-data-col));
  --pc-center-bg: linear-gradient(92deg, #051157, #7f460fd4);

  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--surface);
  color: var(--text);
}

.pricing-compare,
.pricing-compare *,
.pricing-compare *::before,
.pricing-compare *::after {
  box-sizing: border-box;
}

.pricing-compare * {
  margin: 0;
  padding: 0;
}

/* ── PAGE WRAPPER ── */
.pricing-compare .page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* ── TITLE ── */
.pricing-compare .page-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 5pc !important;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.pricing-compare .page-title span {
  color: var(--orange);
  text-decoration: underline;
}

/* ── OUTER CARD ── */
.pricing-compare .card {
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 8px 48px rgba(26, 43, 94, 0.13),
    0 2px 8px rgba(26, 43, 94, 0.06);
  overflow: visible;
  position: relative;
  isolation: isolate;
  border: 1px solid var(--border);
}

.pricing-compare .card::before {
  content: "";
  position: absolute;
  top: -22px;
  bottom: -22px;
  left: var(--pc-hl-left);
  width: var(--pc-data-col);

  border-radius: 22px;
  background-color: #051157;
  background-image: var(--pc-center-bg) !important;
  border: 1px solid rgba(244, 121, 32, 0.95);
  box-shadow:
    0 44px 140px rgba(17, 29, 69, 0.34),
    0 28px 80px rgba(2, 8, 24, 0.24),
    0 18px 44px rgba(244, 121, 32, 0.16);

  z-index: 0;
  pointer-events: none;
}

.pricing-compare .card > * {
  position: relative;
  z-index: 1;
}

/* ── STICKY HEADER ── */
.pricing-compare .thead {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: var(--pc-label-col) repeat(4, 1fr);
  background: var(--navy-dark);
  border-bottom: none;
  box-shadow: 0 14px 26px rgba(17, 29, 69, 0.18);
  isolation: isolate;
}

.pricing-compare .thead::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pc-hl-left);
  width: var(--pc-data-col);
  background-color: #051157;
  background-image: var(--pc-center-bg);
  border-left: 1px solid rgba(244, 121, 32, 0.95);
  border-right: 1px solid rgba(244, 121, 32, 0.95);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  z-index: 0;
  pointer-events: none;
}

.pricing-compare .th {
  padding: 20px 14px;
  text-align: center;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: rgb(255 255 255);

  border-left: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.pricing-compare .th:first-child {
  border-left: none;
  color: #f47920;
  text-align: left;
}

.pricing-compare .th.hl + .th {
  border-left: none;
}

/* Highlighted column header */
.pricing-compare .th.hl {
  background: transparent;
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  font-size: 17px;
  position: relative;
  padding-top: 34px;
  border-left: none;
  border-right: none;
  box-shadow: none;
}
.pricing-compare .th.hl .badge {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: #f47920;
  color: #ffffff;
  border: 1px solid rgba(244, 121, 32, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow:
    0 18px 36px rgba(17, 29, 69, 0.18),
    0 10px 22px rgba(244, 121, 32, 0.18);
  z-index: 10;
}

/* ── SECTION LABEL ── */
/* Make the BillingParadise column "pop" */
.pricing-compare .th.hl,
.pricing-compare .cell.hl,
.pricing-compare .cta-cell.hl {
  position: relative;
  z-index: 2;
}

.pricing-compare .cell.hl,
.pricing-compare .cta-cell.hl {
  border-right: none;
}

.pricing-compare .section-label {
  display: grid;
  grid-template-columns: var(--pc-label-col) repeat(4, 1fr);
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-glow) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-compare .section-label .sl-title {
  padding: 9px 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-lt);
  grid-column: 1 / -1;
}

/* ── ROWS ── */
.pricing-compare .row {
  display: grid !important;
  grid-template-columns: var(--pc-label-col) repeat(4, 1fr) !important;
  margin: 0 !important;
  transition: background 0.14s;
}
.pricing-compare .row::before,
.pricing-compare .row::after {
  content: none !important;
  display: none !important;
}
.pricing-compare .row:nth-child(even) {
  background: linear-gradient(
    90deg,
    var(--row-alt) 0,
    var(--row-alt) var(--pc-hl-left),
    transparent var(--pc-hl-left),
    transparent calc(var(--pc-hl-left) + var(--pc-data-col)),
    var(--row-alt) calc(var(--pc-hl-left) + var(--pc-data-col)),
    var(--row-alt) 100%
  );
}
.pricing-compare .row:nth-child(odd) {
  background: linear-gradient(
    90deg,
    var(--white) 0,
    var(--white) var(--pc-hl-left),
    transparent var(--pc-hl-left),
    transparent calc(var(--pc-hl-left) + var(--pc-data-col)),
    var(--white) calc(var(--pc-hl-left) + var(--pc-data-col)),
    var(--white) 100%
  );
}

/* Feature label cell */
.pricing-compare .label {
  padding: 13px 18px 13px 20px;
  font-size: 15px;
  white-space: normal;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
  border-right: 2px solid #fbcfaf;
  line-height: 1.35;
}
.pricing-compare .label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.pricing-compare .label .info {
  margin-left: auto;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid #151f36;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--muted);
  flex-shrink: 0;
  cursor: default;
  transition:
    border-color 0.2s,
    color 0.2s;
}

/* Data cells */
.pricing-compare .cell {
  padding: 13px 10px;
  text-align: center;
  font-size: 14px;
  color: #000000;
  border-left: 1px solid #f479202b;
  border-top: 1px solid #f479202b;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  font-weight: 400;
}

.pricing-compare .cell.hl + .cell {
  border-left: none;
}

/* Keep row separators, but remove them inside the highlighted column */
.pricing-compare .label {
  border-top: 1px solid #f479202b;
}

/* Highlighted (BillingParadise) column */
.pricing-compare .cell.hl {
  background: transparent;
  border-left: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}

/* Avoid a divider line between sticky header and first highlighted value */
.pricing-compare .thead + .row .cell.hl {
  border-top: none;
}
.pricing-compare .cell.hl::before {
  content: none;
}

/* Icons */
.pricing-compare .x-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fee2e2;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}
.pricing-compare .ok-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

/* ── CTA ROW ── */
.pricing-compare .cta-row {
  display: grid;
  grid-template-columns: var(--pc-label-col) repeat(4, 1fr);
  background: linear-gradient(
    90deg,
    var(--navy-dark) 0,
    var(--navy-dark) var(--pc-hl-left),
    transparent var(--pc-hl-left),
    transparent calc(var(--pc-hl-left) + var(--pc-data-col)),
    var(--navy-dark) calc(var(--pc-hl-left) + var(--pc-data-col)),
    var(--navy-dark) 100%
  );
  border-top: none;
}
.pricing-compare .cta-cell {
  padding: 22px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background: #ffffff;
}
.pricing-compare .cta-cell:first-child {
  border-left: none;
  background: #ffffff;
}

.pricing-compare .cta-cell.hl + .cta-cell {
  border-left: none;
}

.pricing-compare .cta-cell.hl {
  background: transparent;
  border-left: none;
}

.pricing-compare .btn-quote {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(244, 121, 32, 0.45);
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.18s;
}
.pricing-compare .btn-quote:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244, 121, 32, 0.5);
}

.pricing-compare .btn-quote-outline {
  background: #ffffff;
  color: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: none;
}

.pricing-compare .btn-quote-outline:hover {
  background: #ffffff;
  color: var(--orange);
  box-shadow: 0 8px 20px rgba(244, 121, 32, 0.18);
}

/* ── MOBILE ── */
@media (max-width: 1180px) {
  .pricing-compare {
    --pc-label-col: 200px;
  }

  .pricing-compare .page {
    padding: 36px 18px 72px;
  }

  .pricing-compare .card::before {
    top: -18px;
    bottom: -18px;
    border-radius: 18px;
  }

  .pricing-compare .th {
    min-height: 78px;
    padding: 18px 12px;
    font-size: 13px;
  }

  .pricing-compare .th.hl {
    padding-top: 32px;
    font-size: 15px;
  }

  .pricing-compare .th.hl .badge {
    top: -28px;
    font-size: 9px;
    padding: 6px 14px;
  }

  .pricing-compare .label {
    padding: 12px 16px 12px 18px;
    font-size: 14px;
  }

  .pricing-compare .cell {
    padding: 12px 9px;
    font-size: 13px;
  }

  .pricing-compare .btn-quote {
    padding: 12px 24px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .pricing-compare {
    --pc-label-col: 180px;
  }

  .pricing-compare .page {
    padding: 32px 14px 64px;
  }

  .pricing-compare .card {
    border-radius: 18px;
  }

  .pricing-compare .th {
    min-height: 72px;
    padding: 16px 10px;
    font-size: 12px;
    line-height: 1.3;
  }

  .pricing-compare .th.hl {
    font-size: 14px;
  }

  .pricing-compare .label {
    font-size: 13px;
    padding: 11px 14px 11px 16px;
  }

  .pricing-compare .cell {
    font-size: 12px;
    padding: 11px 8px;
  }

  .pricing-compare .cta-cell {
    padding: 18px 8px;
  }
}

.space {
  padding: 36px 0 56px;
}

.space .bg-color-sky-light {
}

.space .content-md.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.space .space-heading {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 900px;
}

.space .space-heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  color: #344d6c;
  margin-bottom: 12px;
}

.space .space-heading hr {
  width: min(560px, 100%);
  height: 1px;
  border: 0;
  background: #e2e7f0;
  margin: 0 auto 12px;
}

.space .space-heading h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 2.2vw, 44px);
  line-height: 1.25;
  font-weight: 700;
  color: #f2693a;
  margin: 0;
}

.space .plans-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -11px;
  margin-right: -11px;
}

.space .plan-col {
  width: 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 11px;
  padding-right: 11px;
  margin-bottom: 22px;
  display: flex;
}

.space .plan-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 14px 0 28px;
  background: #ffffff;
  border: 1px solid #edf1f7;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(26, 43, 94, 0.06);
  text-align: center;
}

.space .plan-card-header {
  margin: 0;
  padding: 0 24px;
}

.space .plan-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.space .plan-title-fte {
  color: #ee7e64;
}

.space .plan-title-comanaged {
  color: #4da6c9;
}

.space .plan-title-fullcycle {
  color: #34556d;
}

.space .plan-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.space .plan-media img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

.space .plan-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 26px 0;
}

.space .plan-copy {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #5f6f88;
  text-align: center;
}

.space .plan-cta {
  display: flex;
  justify-content: center;
}

.space .plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 42px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #24367c;
  color: #ffffff !important;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  text-transform: lowercase;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.space .plan-btn:hover,
.space .plan-btn:focus {
  background: #1b2a63;
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .space .plan-col {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .space {
    padding: 28px 0 44px;
  }

  .space .content-md.container {
    padding: 0 18px;
  }

  .space .space-heading {
    margin-bottom: 26px;
  }

  .space .plan-media {
    min-height: 320px;
  }

  .space .plan-card-content {
    padding: 0 20px;
  }

  .pricing-compare .card::before {
    display: none;
  }

  .pricing-compare .thead::after {
    display: none;
  }

  .pricing-compare .thead {
    position: static;
    box-shadow: none;
    overflow: hidden;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }

  .pricing-compare .thead,
  .pricing-compare .section-label,
  .pricing-compare .row,
  .pricing-compare .cta-row {
    grid-template-columns: 1fr;
  }

  .pricing-compare .row:nth-child(even),
  .pricing-compare .row:nth-child(odd),
  .pricing-compare .cta-row {
    background: transparent;
  }

  /* hide static col headers, show them inline */
  .pricing-compare .th:first-child {
    display: none;
  }
  .pricing-compare .th {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    display: block;
    padding: 12px 18px;
    font-size: 12px;
    min-height: 0;
  }
  .pricing-compare .th.hl {
    padding-top: 30px;
    font-size: 13px;
  }

  .pricing-compare .th.hl .badge {
    top: -12px;
  }

  .pricing-compare .section-label .sl-title {
    padding: 8px 18px;
  }

  .pricing-compare .label {
    background: var(--navy);
    color: #fff;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    padding: 10px 18px;
  }
  .pricing-compare .label .dot {
    background: var(--orange-lt);
  }
  .pricing-compare .label .info {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.4);
  }

  .pricing-compare .cell {
    border-left: none;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 11px 18px;
    gap: 4px;
    font-size: 12.5px;
  }

  .pricing-compare .th.hl,
  .pricing-compare .cell.hl,
  .pricing-compare .cta-cell.hl {
    background: var(--navy-dark);
    color: #ffffff;
  }

  .pricing-compare .cell.hl {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .pricing-compare .cell::before {
    content: attr(data-col);
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    min-width: 0;
    flex-shrink: 0;
  }
  .pricing-compare .cell.hl::before {
    color: var(--orange);
  }
  .pricing-compare .cell.hl::after {
    display: none;
  }

  .pricing-compare .cta-cell {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: none;
    justify-content: flex-start;
    padding: 14px 18px;
  }
  .pricing-compare .cta-cell:first-child {
    display: none;
  }
  .pricing-compare .cta-cell.hl {
    justify-content: center;
    padding: 20px 18px;
  }

  .pricing-compare .page {
    padding: 24px 10px 60px;
  }
  .pricing-compare .card {
    border-radius: 14px;
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .space .space-heading h2 {
    font-size: 22px;
  }

  .space .space-heading h3 {
    font-size: 28px;
  }

  .space .plans-grid {
    margin-left: 0;
    margin-right: 0;
  }

  .space .plan-col {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 18px;
  }

  .space .plan-card {
    padding-bottom: 24px;
  }

  .space .plan-card-header {
    padding: 0 18px;
  }

  .space .plan-media {
    min-height: 250px;
  }

  .space .plan-media img {
    max-width: 280px;
  }

  .space .plan-card-content {
    gap: 16px;
    padding: 0 18px;
  }

  .space .plan-copy {
    font-size: 13px;
  }

  .pricing-compare .page {
    padding: 22px 8px 48px;
  }

  .pricing-compare .page-title {
    font-size: 19px;
    margin-bottom: 24px;
  }

  .pricing-compare .th,
  .pricing-compare .label,
  .pricing-compare .cell,
  .pricing-compare .cta-cell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .pricing-compare .th.hl {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .pricing-compare .th.hl .badge {
    font-size: 8px;
    letter-spacing: 0.09em;
    padding: 5px 12px;
  }

  .pricing-compare .label {
    font-size: 11px;
  }

  .pricing-compare .cell {
    font-size: 12px;
  }

  .pricing-compare .cell::before {
    font-size: 9px;
  }

  .pricing-compare .btn-quote {
    width: 100%;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .space {
    padding: 24px 0 36px;
  }

  .space .content-md.container {
    padding: 0 14px;
  }

  .space .space-heading h2 {
    font-size: 20px;
  }

  .space .space-heading h3 {
    font-size: 24px;
  }

  .space .space-heading hr {
    margin-bottom: 10px;
  }

  .space .plan-card {
    border-radius: 14px;
  }

  .space .plan-title {
    font-size: 17px;
  }

  .space .plan-media {
    min-height: 210px;
  }

  .space .plan-media img {
    max-width: 220px;
  }

  .space .plan-btn {
    min-width: 116px;
    min-height: 40px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .pricing-compare .card {
    border-radius: 10px;
  }

  .pricing-compare .thead {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .pricing-compare .th {
    font-size: 11px;
  }

  .pricing-compare .th.hl {
    padding-top: 28px;
  }

  .pricing-compare .th.hl .badge {
    white-space: normal;
    text-align: center;
    max-width: calc(100% - 36px);
  }

  .pricing-compare .label .info {
    width: 15px;
    height: 15px;
    font-size: 8px;
  }

  .pricing-compare .page-title {
    font-size: 18px;
    margin-bottom: 22px;
  }
}

/* Keep shared header/footer CSS from flattening the pricing cards */
.space {
  padding: 36px 0 0px !important;
}

.space .content-md.container {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.space .space-heading {
  text-align: center !important;
  margin: 0 auto 34px !important;
  max-width: 900px !important;
}

.space .space-heading h2 {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(24px, 2vw, 38px) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #344d6c !important;
  margin-bottom: 12px !important;
  text-align: center !important;
}

.space .space-heading hr {
  width: min(560px, 100%) !important;
  height: 1px !important;
  border: 0 !important;
  background: #e2e7f0 !important;
  margin: 0 auto 12px !important;
}

.space .space-heading h3 {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(24px, 2.2vw, 44px) !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  color: #f2693a !important;
  margin: 0 !important;
  text-align: center !important;
}

.space .plans-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  margin-left: -11px !important;
  margin-right: -11px !important;
}

.space .plan-col {
  width: 33.333333% !important;
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
  padding-left: 11px !important;
  padding-right: 11px !important;
  margin-bottom: 22px !important;
  display: flex !important;
}

.space .plan-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-height: 100% !important;
  padding: 14px 0 28px !important;
  background: #ffffff !important;
  border: 1px solid #edf1f7 !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 34px rgba(26, 43, 94, 0.06) !important;
  text-align: center !important;
}

.space .plan-card-header {
  margin: 0 !important;
  padding: 0 24px !important;
}

.space .plan-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
}

.space .plan-title-fte {
  color: #ee7e64 !important;
}

.space .plan-title-comanaged {
  color: #4da6c9 !important;
}

.space .plan-title-fullcycle {
  color: #34556d !important;
}

.space .plan-media {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 400px !important;
}

.space .plan-media img {
  width: 100% !important;
  max-width: 360px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
}

.space .plan-card-content {
  display: flex !important;
  flex: 1 !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding: 8px 26px 0 !important;
}

.space .plan-copy {
  margin: 0 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: #5f6f88 !important;
  text-align: center !important;
}

.space .plan-cta {
  display: flex !important;
  justify-content: center !important;
}

.space .plan-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 126px !important;
  min-height: 42px !important;
  padding: 10px 24px !important;
  border-radius: 999px !important;
  background: #24367c !important;
  color: #ffffff !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: lowercase !important;
  box-shadow: none !important;
}

.space .plan-btn:hover,
.space .plan-btn:focus {
  background: #1b2a63 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

@media (max-width: 860px) {
  .space {
    padding: 28px 0 44px !important;
  }

  .space .content-md.container {
    padding: 0 18px !important;
  }

  .space .space-heading {
    margin-bottom: 26px !important;
  }

  .space .plan-col {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .space .plan-media {
    min-height: 320px !important;
  }

  .space .plan-card-content {
    padding: 0 20px !important;
  }
}

@media (max-width: 640px) {
  .space .space-heading h2 {
    font-size: 22px !important;
  }

  .space .space-heading h3 {
    font-size: 28px !important;
  }

  .space .plans-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .space .plan-col {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 18px !important;
  }

  .space .plan-card {
    padding-bottom: 24px !important;
  }

  .space .plan-card-header {
    padding: 0 18px !important;
  }

  .space .plan-media {
    min-height: 250px !important;
  }

  .space .plan-media img {
    max-width: 280px !important;
  }

  .space .plan-card-content {
    gap: 16px !important;
    padding: 0 18px !important;
  }

  .space .plan-copy {
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .space {
    padding: 24px 0 36px !important;
  }

  .space .content-md.container {
    padding: 0 14px !important;
  }

  .space .space-heading h2 {
    font-size: 20px !important;
  }

  .space .space-heading h3 {
    font-size: 24px !important;
  }

  .space .plan-card {
    border-radius: 14px !important;
  }

  .space .plan-title {
    font-size: 17px !important;
  }

  .space .plan-media {
    min-height: 210px !important;
  }

  .space .plan-media img {
    max-width: 220px !important;
  }

  .space .plan-btn {
    min-width: 116px !important;
    min-height: 40px !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 360px) {
  .pricing-compare .page {
    padding-left: 6px;
    padding-right: 6px;
  }

  .pricing-compare .th,
  .pricing-compare .label,
  .pricing-compare .cell,
  .pricing-compare .cta-cell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .pricing-compare .cell {
    font-size: 11.5px;
  }
}

@media (max-width: 980px) {
  .pricing-compare .page {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 28px;
  }

  .pricing-compare .card {
    min-width: 980px;
    overflow: visible;
  }

  .pricing-compare .card::before {
    display: block;
  }

  .pricing-compare .thead {
    position: sticky;
    top: 0;
    box-shadow: 0 14px 26px rgba(17, 29, 69, 0.18);
    overflow: visible;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .pricing-compare .thead::after {
    display: block;
  }

  .pricing-compare .thead,
  .pricing-compare .section-label,
  .pricing-compare .row,
  .pricing-compare .cta-row {
    grid-template-columns: var(--pc-label-col) repeat(4, 1fr);
  }

  .pricing-compare .row:nth-child(even) {
    background: linear-gradient(
      90deg,
      var(--row-alt) 0,
      var(--row-alt) var(--pc-hl-left),
      transparent var(--pc-hl-left),
      transparent calc(var(--pc-hl-left) + var(--pc-data-col)),
      var(--row-alt) calc(var(--pc-hl-left) + var(--pc-data-col)),
      var(--row-alt) 100%
    );
  }

  .pricing-compare .row:nth-child(odd) {
    background: linear-gradient(
      90deg,
      var(--white) 0,
      var(--white) var(--pc-hl-left),
      transparent var(--pc-hl-left),
      transparent calc(var(--pc-hl-left) + var(--pc-data-col)),
      var(--white) calc(var(--pc-hl-left) + var(--pc-data-col)),
      var(--white) 100%
    );
  }

  .pricing-compare .cta-row {
    background: linear-gradient(
      90deg,
      var(--navy-dark) 0,
      var(--navy-dark) var(--pc-hl-left),
      transparent var(--pc-hl-left),
      transparent calc(var(--pc-hl-left) + var(--pc-data-col)),
      var(--navy-dark) calc(var(--pc-hl-left) + var(--pc-data-col)),
      var(--navy-dark) 100%
    );
  }

  .pricing-compare .th:first-child {
    display: flex;
  }

  .pricing-compare .th {
    display: flex;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    min-height: 72px;
  }

  .pricing-compare .th.hl .badge {
    top: -28px;
    white-space: nowrap;
    max-width: none;
  }

  .pricing-compare .label {
    background: transparent;
    color: var(--navy);
    border-right: 2px solid #fbcfaf;
    border-bottom: 0;
    font-size: 13px;
  }

  .pricing-compare .label .dot {
    background: var(--orange);
  }

  .pricing-compare .label .info {
    width: 17px;
    height: 17px;
    font-size: 9px;
    border-color: #151f36;
    color: var(--muted);
  }

  .pricing-compare .cell {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-left: 1px solid #f479202b;
    padding: 11px 8px;
  }

  .pricing-compare .cell::before {
    content: none;
  }

  .pricing-compare .cta-cell {
    justify-content: center;
  }

  .pricing-compare .cta-cell:first-child {
    display: flex;
  }

  .pricing-compare .btn-quote {
    width: auto;
  }
}

/* ── ENTRANCE ANIMATION ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pricing-compare .card {
  animation: fadeUp 0.5s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

/* Scoped AR rate cards */
.ar-rate-section {
  padding: 48px 0 40px;
}

.ar-rate-section .container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.ar-rate-section .row-eq-height {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  max-width: 1320px;
  margin: 0 auto;
}

.ar-rate-section br {
  display: none;
}

.ar-rate-section .col-md-3.col-xs-12.bodbr.efft {
  width: calc(25% - 24px);
  margin: 12px;
  padding: 28px 22px 24px;
  min-height: 485px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  border: 1px solid #e3e8f1;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  text-align: center;
}

.ar-rate-section .card-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fff4ea;
  color: #24356f;
  font-size: 18px;
}

.ar-rate-section .text-primary {
  color: #f06417 !important;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 22px;
}

.ar-rate-section .tik {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  width: 100%;
}

.ar-rate-section .tik li {
  position: relative;
  padding-left: 30px;
  text-align: left;
  margin-bottom: 16px;
  color: #2f3b52;
  font-size: 15px;
  line-height: 1.55;
}

.ar-rate-section .tik li:last-child {
  margin-bottom: 0;
}

.ar-rate-section .tik li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #1393ff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.ar-rate-section .col {
  color: #2f3b52;
  line-height: 1.65;
  font-size: 15px;
  margin: 0;
}

.ar-rate-section p.header-main {
  margin-top: auto !important;
  padding-top: 28px;
  border-top: 1px solid #e9edf4;
  color: #98a2b3;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.ar-rate-section .text-center {
  margin-top: 18px;
}

.ar-rate-section .btn.btn-sm.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid #24356f;
  border-radius: 10px;
  background: #24356f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  box-shadow: none;
}

.ar-rate-section .btn.btn-sm.btn-primary:hover,
.ar-rate-section .btn.btn-sm.btn-primary:focus {
  background: #1a2854;
  border-color: #1a2854;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .ar-rate-section .container {
    max-width: 1080px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .ar-rate-section .col-md-3.col-xs-12.bodbr.efft {
    width: calc(50% - 24px);
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .ar-rate-section {
    padding: 32px 0 16px;
  }

  .ar-rate-section .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .ar-rate-section .row-eq-height {
    max-width: 100%;
    margin: 0 auto;
  }

  .ar-rate-section .col-md-3.col-xs-12.bodbr.efft {
    width: 100%;
    min-height: 0;
    margin: 0 0 18px;
    padding: 24px 18px 20px;
  }

  .ar-rate-section .col-md-3.col-xs-12.bodbr.efft:last-child {
    margin-bottom: 0;
  }

  .ar-rate-section .text-primary {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .ar-rate-section .card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    font-size: 17px;
  }

  .ar-rate-section .tik {
    margin-bottom: 22px;
  }

  .ar-rate-section .tik li,
  .ar-rate-section .col,
  .ar-rate-section p.header-main {
    font-size: 14px;
  }
}

/* Mobile breakpoint */
@media (max-width: 480px) {
  .acc-trigger {
    padding: 14px 14px;
    gap: 10px;
  }
  .acc-question {
    font-size: 13.5px;
  }
  .acc-inner {
    padding: 0 14px 16px;
    gap: 10px;
  }
  .page-title {
    padding: 28px 0 24px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .ar-rate-section {
    padding: 28px 0 12px;
  }

  .ar-rate-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ar-rate-section .col-md-3.col-xs-12.bodbr.efft {
    padding: 22px 16px 18px;
    border-radius: 16px;
  }

  .ar-rate-section .text-primary {
    font-size: 18px;
  }

  .ar-rate-section .card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    font-size: 16px;
  }

  .ar-rate-section .tik li {
    padding-left: 26px;
    margin-bottom: 14px;
  }

  .ar-rate-section p.header-main {
    padding-top: 22px;
  }

  .ar-rate-section .btn.btn-sm.btn-primary {
  min-height: 44px;
  font-size: 13px;
  }
}

.pricing-boost-strip {
  padding: 22px 0 26px;
  background: #ffffff;
}

.pricing-boost-strip__inner {
  width: min(96%, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #ffffff;
  border-top: 1px solid #dfe5ec;
  border-bottom: 1px solid #dfe5ec;
}

.pricing-boost-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  min-height: 102px;
}

.pricing-boost-card + .pricing-boost-card {
  border-left: 1px solid #dfe5ec;
}

.pricing-boost-card__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #95a0ad;
  font-size: 38px;
  line-height: 1;
}

.pricing-boost-card__text {
  margin: 0;
  color: #5d6978;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.pricing-boost-card__text strong {
  color: #526171;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .pricing-boost-strip__inner {
    width: min(94%, 1080px);
  }

  .pricing-boost-card {
    padding: 18px 20px;
    gap: 16px;
  }

  .pricing-boost-card__text {
    font-size: 16px;
  }
}

@media (max-width: 860px) {
  .pricing-boost-strip {
    padding: 18px 0 22px;
  }

  .pricing-boost-strip__inner {
    width: min(94%, 760px);
    grid-template-columns: 1fr;
  }

  .pricing-boost-card {
    padding: 20px 18px;
    min-height: 0;
  }

  .pricing-boost-card + .pricing-boost-card {
    border-left: 0;
    border-top: 1px solid #dfe5ec;
  }
}

@media (max-width: 480px) {
  .pricing-boost-strip__inner {
    width: calc(100% - 24px);
  }

  .pricing-boost-card {
    align-items: flex-start;
    gap: 14px;
    padding: 18px 14px;
  }

  .pricing-boost-card__icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .pricing-boost-card__text {
    font-size: 15px;
    line-height: 1.5;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #eef0f6;
  --surface: #ffffff;
  --surface-open: #fff8f4;
  --accent: #f06417;
  --accent-light: #fde8d8;
  --navy: #1a2854;
  --navy-light: #2e4080;
  --text: #1a2854;
  --muted: #4a5578;
  --border: #c8cedf;
  --section-rule: #b0bacf;
}

.page-wrap {
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 65px;
}

@media (max-width: 991px) {
  .page-wrap {
    width: calc(100% - 48px);
    padding: 0;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-wrap {
    width: calc(100% - 28px);
  }
}

/* Page title */
.page-title {
  padding: 40px 0 36px;
  text-align: center;
}
.page-title h1 {
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  color: #f2693a;
  font-size: clamp(20px, 3.2vw, 30px);
}

/* Section */
.faq-section {
  margin-bottom: 30px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
}
.section-label h2 {
  font-size: clamp(1rem, 3.5vw, 22px);
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  white-space: normal;
  word-break: break-word;
  flex: 1 1 auto;
}
.section-label::after {
  content: "";
  flex: 0 0 40px;
  height: 2px;
}

.accordion {
  margin: 0px;
}
/* Accordion item */
.accordion {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 10px;
  transition: box-shadow 0.25s ease;
}
.accordion:hover {
  box-shadow: 0 4px 18px rgba(26, 40, 84, 0.1);
}
.accordion.open {
  background: var(--surface-open);
  border-color: #f8b48a;
  box-shadow: 0 4px 20px rgba(240, 100, 23, 0.12);
}

.acc-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  font-family: "DM Sans", sans-serif;
}
.acc-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.acc-q-label {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
  background: var(--navy);
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1.6;
}
.acc-question {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.acc-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.3s ease;
}
.acc-icon svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.accordion.open .acc-icon {
  background: var(--accent);
  transform: none;
}
.accordion.open .acc-icon svg {
  stroke: #fff;
  transform: rotate(180deg);
}

/* Answer panel */
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion.open .acc-body {
  max-height: 400px;
}
.acc-inner {
  padding: 0 20px 20px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.acc-a-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
  background: var(--accent);
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1.6;
  margin-top: 1px;
}
.acc-answer {
  font-size: 14px;
  color: #000000;
  line-height: 1.65;
  font-family: "Poppins", sans-serif !important;
}

@media (max-width: 480px) {
  .acc-trigger {
    padding: 14px 14px;
    gap: 10px;
  }
  .acc-question {
    font-size: 13.5px;
  }
  .acc-inner {
    padding: 0 14px 16px;
    gap: 10px;
  }
  .page-title {
    padding: 28px 0 0px;
    margin-bottom: 0px;
  }
}
.accordion {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.4s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .page-title h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  .section-label h2 {
    font-size: clamp(1rem, 4.5vw, 18px);
  }
  .section-label {
    margin-bottom: 1px;
  }
}

@media (max-width: 480px) {
  .page-title h1 {
    font-size: 24px;
    line-height: 1.25;
  }
  .section-label h2 {
    font-size: clamp(0.95rem, 5vw, 16px);
  }
  .section-label {
    margin-bottom: 1px;
  }
}
.faq-section:nth-child(1) .accordion:nth-child(1) {
  animation-delay: 0.05s;
}
.faq-section:nth-child(2) .accordion:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-section:nth-child(3) .accordion:nth-child(1) {
  animation-delay: 0.15s;
}
.faq-section:nth-child(3) .accordion:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-section:nth-child(3) .accordion:nth-child(3) {
  animation-delay: 0.25s;
}
.faq-section:nth-child(3) .accordion:nth-child(4) {
  animation-delay: 0.3s;
}

.rcm-form-list {
  list-style: disc;
  padding: 0;
  font-size: 15px;
  text-align: left;
  gap: 30px;
  font-weight: 600;
  font-family: "Poppins" !important;
  color: #fd7d00;
  justify-content: center;
  margin: 0;
  display: flex;
  margin-top: 10px;
}

.rcm-form-para {
  font-weight: 700;
  font-family: "Poppins" !important;
  color: #273271;
  margin-top: 10px;
}
