/* =====================================================
   ACCESSIBILITY MONITOR PRICING PAGE STYLES
   Consolidated CSS for the monitor pricing page
   ===================================================== */

/* =====================================================
   CSS VARIABLES FOR PRICING
   ===================================================== */
:root {
  /* Radio Switch Variables */
  --radio-switch-width: 275px;
  --radio-switch-height: 46px;
  --radio-switch-padding: 3px;
  --radio-switch-radius: 50em;
  --radio-switch-animation-duration: 0.3s;

  /* Pricing Card Variables (pd6) */
  --pd6-color-primary-hsl: 250, 84%, 54%;
  --pd6-color-bg-hsl: 0, 0%, 100%;
  --pd6-color-contrast-high-hsl: 230, 7%, 23%;
  --pd6-color-contrast-higher-hsl: 230, 13%, 9%;
  --pd6-color-contrast-low-hsl: 240, 4%, 65%;
  --pd6-color-bg-dark-hsl: 240, 4%, 95%;
  --pd6-color-bg-light-hsl: 0, 0%, 100%;
  --pd6-color-white-hsl: 0, 0%, 100%;
  --pd6-color-primary-darker-hsl: 250, 84%, 38%;
  --pd6-color-primary-light-hsl: 250, 84%, 60%;
  --pd6-color-bg-lighter-hsl: 0, 0%, 100%;
  --pd6-color-black-hsl: 230, 13%, 9%;

  /* Spacing */
  --pd6-space-3xs: 0.25rem;
  --pd6-space-2xs: 0.375rem;
  --pd6-space-xs: 0.5rem;
  --pd6-space-sm: 0.75rem;
  --pd6-space-md: 1.25rem;

  /* Typography */
  --pd6-text-3xl: 2.488rem;
  --pd6-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    --pd6-space-3xs: 0.375rem;
    --pd6-space-2xs: 0.5625rem;
    --pd6-space-xs: 0.15rem;
    --pd6-space-sm: 1.125rem;
    --pd6-space-md: 2rem;
    --pd6-text-3xl: 1.8rem;
    --pd6-text-sm: 1rem;
  }
}

/* =====================================================
     PRICING SECTION LAYOUT
     ===================================================== */
.roxo-pricing-section {
  background-color: white;
  padding-top: 160px;
  padding-bottom: 100px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 600px, #ffffff 0%),
    #dad6e8 no-repeat center top / cover;
  position: relative;
}

.moni-pricing {
  background:
    linear-gradient(to bottom, rgba(200, 216, 204, 1) 755px, #ffffff 0%),
    #edf5ef no-repeat center top / cover;
}

@media (max-width: 767px) {
  .roxo-pricing-section {
    padding-bottom: 0;
  }
}

/* Container */
.container.roxo-con-res {
  max-width: 1440px;
}

@media (max-width: 1200px) {
  .container.roxo-con-res {
    max-width: 1155px;
  }
}

/* Wrapper */
.roxo-wrap {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 720px) and (min-width: 100px) {
  .roxo-wrap {
    padding: 0 !important;
  }
}

/* =====================================================
     PRICING HEADER
     ===================================================== */
.roxo-pricing-ct-container {
  color: white !important;
  margin-bottom: 45px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: -36px;
}

.roxo-pricing-left {
  max-width: 60%;
}

.roxo-pricing-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roxo-pricing-h1-b {
  color: #3b3f44 !important;
  font-weight: 700;
  font-size: 3rem;
}

.roxo-pricing-h1-s {
  color: #3b3f44 !important;
  font-weight: 400 !important;
  font-size: 24px;
}

.roxo-pricing-h1-p {
  color: #3b3f44 !important;
  font-weight: 400 !important;
  font-size: 1.2rem;
  margin: 8px 0;
}

.roxo-pricing-label {
  font-size: 0.9rem;
  color: #3b3f44;
}

@media (max-width: 700px) {
  .roxo-pricing-ct-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    top: 0;
    margin-bottom: 20px;
    gap: 16px;
  }

  .roxo-pricing-right {
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    order: -1;
  }

  .roxo-pricing-left {
    width: 100%;
    padding: 8px 0;
    line-height: 1.5;
  }
}

/* =====================================================
     PRODUCT DROPDOWN (AI-Widget, Monitor, PDF)
     ===================================================== */
.roxo-pricing-dropdown {
  position: relative;
}

.roxo-dropdown-btn {
  background-color: #8e56dc;
  color: white;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
    0 1px 3px hsla(250, 84%, 38%, 0.25),
    0 2px 6px hsl(250deg 62.86% 2.64% / 48%),
    0 6px 10px -2px hsl(0deg 0% 0% / 17%);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.roxo-moni-bt-drop {
  background-color: #2b814f;
}

.roxo-dropdown-btn span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roxo-dropdown-btn svg:last-child {
  margin-left: auto;
}

.roxo-dropdown-btn svg {
  transition: transform 0.3s;
}

.roxo-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  color: white;
  border-radius: 5px;
  margin-top: 8px;
  display: none;
  flex-direction: column;
  width: 150px;
  padding: 8px 8px;
  list-style: none;
  order: 444;
  z-index: 1;
}

.roxo-dropdown-menu li {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.roxo-dropdown-menu li:hover {
  background-color: #e7ddf5;
  border-radius: 6px;
}

.roxo-hover-moni li:hover {
  background-color: #edf5ef;
  border-radius: 6px;
}

.roxo-dropdown-menu li a {
  text-decoration: none;
  color: #3b3f44;
  font-size: 14px;
}

.roxo-pricing-dropdown.open .roxo-dropdown-menu {
  display: flex;
  left: -5px;
}

.roxo-pricing-dropdown.open .roxo-dropdown-btn svg:last-child {
  transform: rotate(180deg);
}

/* Dropdown Colors */
.svg-drop-pricing {
  width: 18px;
  height: auto;
}

.roxo-moni-bt-drop .moni-svg-d-p path {
  fill: white;
}

.roxo-dropdown-menu .moni-svg-d-p path {
  fill: #3b3f44;
}

.color-moni-d-l {
  color: #2b814f !important;
}

.color-moni-d-l:hover {
  color: #2b814f !important;
}

.color-ai-moni-d-l:hover {
  color: #3b3f44 !important;
}

/* =====================================================
     BLUR WRAPPER
     ===================================================== */
.roxo-contact-blur-wrapper {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 1em 4em 4em;
  position: relative;
}

.bg-pricing-moni-blur {
  padding: 3em 2em 4em;
}

@media (max-width: 650px) {
  .roxo-contact-blur-wrapper {
    padding: 2em 1em 4em;
  }
}

/* =====================================================
     RADIO SWITCH (Monthly/Yearly Toggle)
     ===================================================== */
.radio-switch {
  position: relative;
  display: inline-block;
  display: inline-flex !important;
  padding: var(--radio-switch-padding);
  border-radius: calc(var(--radio-switch-radius) * 1.4);
  background-color: #ffffff;
}

.moni-radio-switch {
  left: -504px;
  top: -98px;
}

.radio-switch:focus-within,
.radio-switch:active {
  box-shadow: 0 0 0 2px hsla(var(--ri5-color-contrast-higher-hsl), 0.15);
}

.radio-switch__item {
  position: relative;
  display: inline-block;
  height: calc(var(--radio-switch-height) - 2 * var(--radio-switch-padding));
  width: calc(var(--radio-switch-width) * 0.5 - var(--radio-switch-padding));
}

.radio-switch__label {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: var(--radio-switch-radius);
  cursor: pointer;
  font-size: var(--ri5-text-sm);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all var(--radio-switch-animation-duration);
}

.radio-switch__input:checked ~ .radio-switch__label {
  color: white;
}

.radio-switch__input:focus ~ .radio-switch__label {
  background-color: hsla(var(--ri5-color-primary-hsl), 0.6);
}

.radio-switch__label :not(*):focus-within,
.radio-switch__input:focus ~ .radio-switch__label {
  background-color: transparent;
}

.moni-pricing .radio-switch__marker {
  background-color: #2b814f;
}

.radio-switch__marker {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -100%;
  border-radius: var(--radio-switch-radius);
  background-color: #8e56dc;
  height: calc(var(--radio-switch-height) - 2 * var(--radio-switch-padding));
  width: calc(var(--radio-switch-width) * 0.5 - var(--radio-switch-padding));
  box-shadow:
    0 0.9px 1.5px rgba(0, 0, 0, 0.03),
    0 3.1px 5.5px rgba(0, 0, 0, 0.08),
    0 14px 25px rgba(0, 0, 0, 0.12);
  transition: -webkit-transform var(--radio-switch-animation-duration);
  transition: transform var(--radio-switch-animation-duration);
  transition:
    transform var(--radio-switch-animation-duration),
    -webkit-transform var(--radio-switch-animation-duration);
}

.radio-switch__input:checked ~ .radio-switch__marker {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.switch-what-saved {
  font-size: 0.7rem;
  margin-left: 5px;
}

/* Radio Switch Responsive */
@media (max-width: 1299px) {
  .moni-radio-switch {
    left: -310px;
  }
}

@media (max-width: 1023px) {
  .moni-radio-switch {
    left: -250px;
  }
}

@media (max-width: 831px) {
  .moni-radio-switch {
    top: -80px;
    left: 0px;
  }
}

/* =====================================================
     PRICING CARDS (P-TABLE)
     ===================================================== */
.p-table {
  margin-bottom: 40px;
}

.p-table__item {
  background-color: hsl(0deg 0% 100%);
  border-radius: 0.5em;
  border: 1px solid rgba(185, 185, 185, 1);
  padding: var(--pd6-space-md);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.p-table__item--popular {
  background-color: hsl(0deg 0% 100%);
  border: 1px solid rgba(185, 185, 185, 1);
  min-height: 400px !important;
  transform: translateY(-50px);
  margin-bottom: -50px !important;
}

.p-table__item--popular-border-no {
  border: 1px solid rgba(185, 185, 185, 1);
}

.moni-pricing-wrap {
  min-height: 700px;
}

.moni-custom-card .pd6-margin-bottom-2xs {
  margin-bottom: 35px;
}

.p-table__title {
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
  margin-top: 20px;
}

.roxo-pack-p {
  font-size: 1rem;
  letter-spacing: 0.02rem;
  color: #525252;
  margin-top: 30px;
}

/* Pricing Icons */
.ai-widget-pricing-icon {
  height: 40px;
  margin-top: 15px;
}

.moni-pricing-icon {
  height: 33px;
}

/* Pricing Price */
.p-table__price-wrapper {
  position: relative;
  overflow: hidden;
}

.p-table__price span {
  font-size: var(--pd6-text-3xl);
  font-weight: bold;
}

.p-table__price i {
  color: hsl(0deg 0% 31.36%);
  font-size: 0.85rem;
}

.p-table--has-switch .p-table__price-wrapper {
  position: relative;
  overflow: hidden;
}

.p-table--has-switch .p-table__price {
  will-change: transform;
  transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.p-table--has-switch .p-table__price[data-transition-delay="2nd"] {
  transition-delay: 0.1s;
}

.p-table--has-switch .p-table__price[data-transition-delay="3rd"] {
  transition-delay: 0.2s;
}

.p-table--has-switch .p-table__price--month {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.p-table--has-switch .p-table__price--year {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.p-table--yearly .p-table__price--month {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.p-table--yearly .p-table__price--year {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* Pricing Cards Responsive */
@media (max-width: 1190px) {
  .p-table__item--popular {
    min-height: 320px !important;
  }

  .roxo-pricing-2 {
    margin-top: 62px;
  }

  .moni-pricing-wrap {
    min-height: 280px;
  }

  .moni-free-key-features {
    margin-top: 1rem;
  }

  .moni-free-key-features__list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 1023px) {
  .roxo-pricing-1 {
    margin-top: -28px;
  }
}

/* =====================================================
     MONITOR KEY FEATURES
     ===================================================== */
.moni-free-key-features {
  margin-top: 1.5rem;
}

.moni-free-key-features__title {
  font-size: 16px;
  font-weight: 500;
  color: rgba(59, 63, 68, 1);
  margin-bottom: 0.5rem;
}

.moni-free-key-features__divider {
  margin: 0 0 1rem 0;
}

.moni-free-key-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.moni-free-key-features__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #3b3f44;
  margin-bottom: 1.35rem;
}

.moni-free-key-features__list li:last-child {
  margin-bottom: 0;
}

.moni-free-key-features__list li svg {
  flex-shrink: 0;
}

/* =====================================================
     MONITOR CTA BUTTON
     ===================================================== */
.moni-p-call {
  background-color: #2b814f !important;
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
    0 1px 3px hsl(145.12deg 50% 33.73% / 28%),
    0 2px 6px hsl(145.12deg 50% 33.73% / 13%),
    0 6px 10px -2px hsl(145.12deg 50% 33.73% / 24%) !important;
}

.moni-p-call:hover {
  background-color: #2b814f;
}

/* =====================================================
     PD6 BUTTONS
     ===================================================== */
.pd6-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--pd6-color-bg-dark-hsl));
  color: hsl(var(--pd6-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--pd6-space-2xs) var(--pd6-space-sm);
  border-radius: 0.25em;
}

.pd6-btn:focus-visible {
  box-shadow:
    0px 0px 0px 2px hsl(var(--pd6-color-bg-hsl)),
    0px 0px 0px 4px hsla(var(--pd6-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.pd6-btn:active {
  transform: translateY(2px);
}

.pd6-btn--primary {
  background: #8e56dc;
  color: hsl(var(--pd6-color-white-hsl));
  border: 2px solid transparent;
  transition: all 400ms ease-in-out;
  box-shadow:
    inset 0px 1px 0px hsla(var(--pd6-color-white-hsl), 0.15),
    0px 1px 3px hsl(0deg 0% 52.04% / 25%),
    0px 2px 6px hsl(0deg 0% 39.44% / 10%),
    0px 6px 10px -2px hsl(0deg 0% 37.72% / 25%);
}

.pd6-btn--primary:hover {
  background: #8e56dc;
  color: white !important;
  box-shadow:
    inset 0px 1px 0px hsla(var(--pd6-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--pd6-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--pd6-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--pd6-color-primary-darker-hsl), 0.25);
}

.pd6-btn--primary:focus {
  box-shadow:
    inset 0px 1px 0px hsla(var(--pd6-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--pd6-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--pd6-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--pd6-color-primary-darker-hsl), 0.25),
    0px 0px 0px 2px hsl(var(--pd6-color-bg-hsl)),
    0px 0px 0px 4px #8e56dc;
}

.pd6-btn--subtle {
  background: #8e56dc;
  border: 2px solid transparent;
  color: white;
  box-shadow:
    inset 0px 1px 0px hsla(var(--pd6-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--pd6-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--pd6-color-black-hsl), 0.2),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025),
    0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.pd6-btn--subtle:hover {
  background: #8e56dc;
  color: white !important;
  box-shadow:
    inset 0px 1px 0px hsla(var(--pd6-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--pd6-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--pd6-color-black-hsl), 0.2),
    0 0.1px 0.3px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.12);
}

.pd6-btn--subtle:focus {
  box-shadow:
    inset 0px 1px 0px hsla(var(--pd6-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--pd6-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--pd6-color-black-hsl), 0.2),
    0 0.1px 0.3px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.12),
    0px 0px 0px 2px hsl(var(--pd6-color-bg-hsl)),
    0px 0px 0px 4px hsl(var(--pd6-color-contrast-high-hsl));
}

.pd6-btn--md {
  font-size: 0.9rem;
  letter-spacing: 0.03rem;
}

.pd6-btn:focus-visible {
  outline: 2px solid black;
  outline-offset: 3px;
}

/* =====================================================
     PD6 UTILITY CLASSES
     ===================================================== */
.pd6-width-100\% {
  width: 100%;
}

.pd6-margin-top-auto {
  margin-top: auto;
}

.pd6-margin-bottom-md {
  margin-bottom: 0px !important;
  margin-top: 20px;
}

.pd6-margin-bottom-md-small {
  margin-top: 23.5px;
}

.pd6-margin-bottom-md-custom {
  margin-top: 40.5px;
}

.pd6-margin-bottom-sm {
  margin-bottom: var(--pd6-space-sm);
}

.pd6-margin-bottom-2xs {
  margin-bottom: var(--pd6-space-2xs);
}

.pd6-items-center {
  align-items: center;
}

.pd6-justify-between {
  justify-content: space-between;
}

.pd6-flex {
  display: flex;
}

.pd6-gap-sm {
  gap: var(--pd6-space-sm);
}

.pd6-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.pd6-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.pd6-sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.pd6-sr-only:focus-visible ~ .radio-switch__label {
  outline: 2px solid black;
  outline-offset: 10px;
}

.pd6-justify-center {
  justify-content: center;
}

@media (min-width: 1190px) {
  .pd6-col-4\@md {
    grid-column-end: span 4;
  }
}

/* =====================================================
     AI PRICING DROPDOWN (Page Count Selector)
     ===================================================== */
.ai-pricing-dropdown {
  min-width: 500px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
}

.ai-pricing-label-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.ai-pricing-label {
  font-weight: 600;
  font-size: 1rem;
}

.ai-pricing-deco {
  width: 74px;
  height: auto;
  margin-top: -2px;
  margin-left: -10px;
}

.ai-custom-dropdown {
  position: relative;
  width: 187px;
  z-index: 20;
}

.moni-drop-down-pricing {
  width: 200px !important;
}

.ai-dropdown-toggle {
  width: 100%;
  padding: 8px 12px;
  font-size: 1rem;
  text-align: left;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-dropdown-arrow {
  width: 16px;
  height: 9px;
  transition: transform 0.3s ease;
  margin-right: 15px;
}

.moni-pricing-drop-pack {
  margin-right: 7px !important;
}

.ai-dropdown-list {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  list-style: none;
  padding: 0;
  margin-top: 5px;
  z-index: 30;
}

.ai-dropdown-list li {
  padding: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.ai-dropdown-list li:hover,
.ai-dropdown-list li:focus {
  background: #f0f0f0;
}

.ai-custom-dropdown[aria-expanded="true"] .ai-dropdown-arrow {
  transform: rotate(180deg);
}

.ai-dropdown-text {
  color: #6a6a6a;
  font-size: 0.9rem;
}

@media (min-width: 1300px) {
  .ai-custom-dropdown {
    width: 208px !important;
  }
}

@media (max-width: 600px) {
  .ai-dropdown-arrow {
    margin-right: 4px;
  }

  .ai-dropdown-toggle {
    width: 76%;
    padding: 8px 11px;
  }
}

/* =====================================================
     COMPLIANCE COVERAGE BANNER
     ===================================================== */
.compliance-coverage-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 15px 30px;
  border: 0.78px solid rgba(185, 185, 185, 1);
  border-radius: 12px;
  margin-top: 20px;
}

.compliance-coverage-text {
  flex: 1;
  max-width: 500px;
}

.compliance-coverage-title {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(59, 63, 68, 1);
}

.compliance-coverage-description {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(82, 82, 82, 1);
}

.compliance-coverage-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.compliance-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-logo-image {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .compliance-coverage-content {
    padding: 24px;
    gap: 35px;
  }

  .compliance-coverage-title {
    font-size: 32px;
  }

  .compliance-coverage-logos {
    gap: 28px;
  }

  .compliance-logo-image {
    max-width: 100px;
  }
}

@media (max-width: 900px) {
  .compliance-coverage-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 30px;
  }

  .compliance-coverage-text {
    max-width: 100%;
  }

  .compliance-coverage-title {
    font-size: 28px;
  }

  .compliance-coverage-logos {
    justify-content: center;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .compliance-coverage-content {
    padding: 16px;
    gap: 24px;
  }

  .compliance-coverage-title {
    font-size: 24px;
  }

  .compliance-coverage-description {
    font-size: 15px;
  }

  .compliance-coverage-logos {
    gap: 20px;
  }

  .compliance-logo-image {
    max-width: 90px;
  }
}

/* =====================================================
     CROSS TABLE (Comparison Table)
     ===================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Cross Table Buttons */
.cd-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375em;
  font-size: 1em;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: 0.2s;
  will-change: transform;
  font-weight: 400;
}

.cd-btn:focus-visible {
  outline: none;
}

.cd-btn:active {
  transform: translateY(2px);
}

.cd-btn--primary {
  background: #8e56dc;
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
    0 1px 3px hsla(250, 84%, 38%, 0.25),
    0 2px 6px hsla(250, 84%, 38%, 0.1),
    0 6px 10px -2px hsla(250, 84%, 38%, 0.25);
  color: hsl(0, 0%, 100%);
}

.cd-btn--primary:hover {
  background: #8e56dc;
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
    0 1px 2px hsla(250, 84%, 38%, 0.25),
    0 1px 4px hsla(250, 84%, 38%, 0.1),
    0 3px 6px -2px hsla(250, 84%, 38%, 0.25);
}

.cd-btn--primary:focus-visible {
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
    0 1px 2px hsla(250, 84%, 38%, 0.25),
    0 1px 4px hsla(250, 84%, 38%, 0.1),
    0 3px 6px -2px hsla(250, 84%, 38%, 0.25),
    0 0 0 2px hsl(0, 0%, 100%),
    0 0 0 4px #8e56dc;
}

a.cd-btn.cd-btn--primary:focus-visible {
  outline: 2px solid black;
  outline-offset: 3px;
}

/* Cross Table Icons */
.cd-icon {
  --size: 1em;
  font-size: var(--size);
  height: 1em;
  width: 1em;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.cd-icon use {
  color: inherit;
  fill: currentColor;
}

/* Cross Table Component */
.cross-table {
  position: relative;
  z-index: 1;
  width: 100%;
}

.cross-table .cd-btn {
  width: 100%;
}

.cross-table__icon {
  --size: 20px;
}

.cross-table__icon--red {
  color: hsl(342, 89%, 48%);
}

.cross-table__icon--green {
  color: hsl(170, 78%, 36%);
}

/* Cross Table Mobile */
@media not all and (min-width: 42.5rem) {
  .cross-table {
    display: block;
    overflow: hidden;
  }

  .cross-table .cd-btn {
    font-size: 0.9375rem;
  }

  .cross-table__header {
    position: absolute;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 0;
    border: 0;
    white-space: nowrap;
  }

  .cross-table__body {
    position: relative;
    display: flex;
    max-width: 100%;
    overflow: auto;
    padding: 32px 0 1rem;
    margin-left: 10px;
    margin-bottom: 80px;
  }

  .cross-table__body::-webkit-scrollbar {
    height: 10px;
  }

  .cross-table__body::-webkit-scrollbar-track {
    background-color: hsl(240, 4%, 95%);
    border-radius: 50em;
  }

  .cross-table__body::-webkit-scrollbar-thumb {
    background-color: hsla(230, 13%, 9%, 0.2);
    border: 2px solid transparent;
    background-clip: content-box;
    border-radius: 50em;
  }

  .cross-table__body::-webkit-scrollbar-thumb:hover {
    background-color: hsla(230, 13%, 9%, 0.3);
  }

  .cross-table__body::after {
    content: "";
    display: block;
    height: 1px;
    padding-left: 1px;
  }

  .cross-table__row {
    display: flex;
    flex-direction: column;
    width: 260px;
    flex-shrink: 0;
    margin-right: 1rem;
  }

  .cross-table__cell {
    --cell-border-width: 1px;
    display: flex;
    padding: 0.5rem 0.75rem;
    justify-content: space-between;
    align-items: center;
    min-height: 54px;
    text-align: left;
    line-height: 1;
    font-size: 1rem;
    background-color: hsl(0, 0%, 100%);
    border-top-width: var(--cell-border-width);
    border-left-width: var(--cell-border-width);
    border-right-width: var(--cell-border-width);
    border-style: solid;
    border-color: hsla(230, 13%, 9%, 0.1);
  }

  .cross-table__cell:first-child {
    border-left-width: var(--cell-border-width);
    border-top-width: var(--cell-border-width);
    border-radius: 0.375em 0.375em 0 0;
    background-color: #c8d8cc;
    font-weight: 500;
    color: #2b814f;
  }

  .cross-table__cell:last-child {
    border-right-width: var(--cell-border-width);
    border-bottom-width: var(--cell-border-width);
    border-radius: 0 0 0.375em 0.375em;
  }

  .cross-table__label {
    display: inline;
    margin-right: 0.75rem;
  }

  .cross-table__row--w-full {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
  }

  .cross-table__row--w-full .cross-table__cell {
    border: none;
    background-color: transparent;
    font-weight: normal;
    min-height: 0;
    height: 32px;
    padding: 0 0.75rem;
    font-size: 0.9375rem;
    color: hsl(225, 4%, 47%);
    min-width: 300px;
  }
}

/* Cross Table Desktop */
@media (min-width: 42.5rem) {
  .cross-table {
    font-size: 0.9375rem;
  }

  .cross-table__row .cross-table__cell:first-child {
    border-left-width: 0;
    font-weight: 400;
  }

  .cross-table__row .cross-table__cell:last-child {
    border-right-width: 0;
  }

  .cross-table__header .cross-table__cell {
    border-top-width: 0;
  }

  .cross-table__header
    .cross-table__cell:nth-child(2)
    .cross-table__description {
    min-height: 37px;
  }

  .cross-table__row--w-full {
    background-color: #c8d8cc;
  }

  .moni-cross-table-features {
    background-color: #c8d8cc !important;
  }

  .cross-table__row--w-full .cross-table__cell {
    font-weight: 500;
  }

  .cross-table__description {
    font-weight: 400 !important;
  }

  .cross-table__cell {
    border: 1px solid hsl(240, 4%, 90%);
    border-bottom-width: 0;
    padding: 0.75rem;
    width: 26%;
    text-align: center;
  }

  .cross-table__cell:first-child {
    text-align: left;
  }

  .cross-table__label {
    display: none;
  }

  .cross-table__description {
    color: hsl(225, 4%, 47%);
  }
}

/* Cross Table Utilities */
.cd-link {
  color: #8e56dc;
  text-decoration: none;
  background-image: linear-gradient(
    to right,
    #8e56dc 50%,
    hsla(250, 84%, 54%, 0.2) 50%
  );
  background-size: 200% 1px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  transition: background-position 0.2s;
  font-weight: 400;
}

.cd-link:hover {
  background-position: 0% 100%;
}

.link-to-moni-c {
  color: #2b814f;
  background-image: linear-gradient(
    to right,
    #2b814f 50%,
    hsla(145, 50%, 34%, 0.2) 50%
  );
}

.cd-margin-bottom-2xs {
  margin-bottom: 0.75rem;
}

/* =====================================================
     PRICING SECTION TITLES
     ===================================================== */
.roxo-pricing-2nd {
  color: #3b3f44;
  text-align: left;
  padding-bottom: 88px;
  font-size: 2.2rem;
}

.p-under-moni-com {
  text-align: center;
}

@media (max-width: 767px) {
  .roxo-pricing-2nd {
    font-size: 1.7rem !important;
    padding-bottom: 40px;
  }
}

/* =====================================================
     UNDERSTANDING PRICING STRUCTURE SECTION
     ===================================================== */
.moni-p-dot-bg {
  background: rgba(200, 216, 204, 1);
}

.cbox-2.process-step.moni-p-dott.border-gr-moni:hover
  .cbox-2-ico.bg--theme.color--white.moni-p-dot-bg {
  border-color: #2b814f;
}

.border-gr-moni .cbox-2-line {
  background-color: rgba(200, 216, 204, 1);
}

.p-pricing--how {
  color: #525252;
}

/* =====================================================
     MONITOR PRICING STEPS SECTION (3 Steps)
     ===================================================== */
.monitor-pricing-steps {
  background-color: #ffffff;
  padding: 120px 20px;
  --hj3-color-primary-hsl: 250, 84%, 54%;
  --hj3-color-contrast-lower-hsl: 240, 4%, 85%;
  --hj3-color-contrast-medium-hsl: 225, 4%, 47%;
  --hj3-color-contrast-high-hsl: 230, 7%, 23%;
  --hj3-color-contrast-higher-hsl: 230, 13%, 9%;
  --hj3-color-bg-dark-hsl: 240, 4%, 95%;
  --hj3-color-bg-hsl: 0, 0%, 100%;
  --hj3-color-accent-hsl: 342, 89%, 48%;
  --hj3-color-white-hsl: 0, 0%, 100%;
  --hj3-space-xs: 0.5rem;
  --hj3-space-sm: 0.75rem;
  --hj3-space-lg: 2rem;
  --hj3-space-md: 1.25rem;
  --hj3-text-sm: 0.833rem;
}

.monitor-pricing-steps-content {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.monitor-steps-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.monitor-steps-title {
  white-space: nowrap;
  color: #3b3f44;
  font-family: "Inter", sans-serif;
  font-size: 34px !important;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.monitor-steps-title-highlight {
  color: rgba(43, 129, 79, 1);
  display: inline-block;
}

.monitor-steps-description {
  color: #73757d;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
}

@media (min-width: 64rem) {
  .monitor-pricing-steps {
    --hj3-space-xs: 0.75rem;
    --hj3-space-sm: 1.125rem;
    --hj3-space-lg: 3.125rem;
    --hj3-space-md: 2rem;
    --hj3-text-sm: 1rem;
  }
}

/* Monitor How It Works Steps */
.monitor-hiw-v3 {
  --hiw-v3-bullet-size: 40px;
  --hiw-v3-bullet-font-size: 16px;
  --hiw-v3-bullet-margin-right: var(--hj3-space-sm);
  --hiw-v3-gap-y: var(--hj3-space-lg);
  counter-reset: list-items;
  margin: 0;
  padding: 0;
  list-style: none;
}

.monitor-hiw-v3__item {
  position: relative;
  counter-increment: list-items;
}

.monitor-hiw-v3__item:not(:last-child) {
  padding-bottom: var(--hiw-v3-gap-y);
}

.monitor-hiw-v3__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: var(--hiw-v3-bullet-size);
  left: calc(var(--hiw-v3-bullet-size) / 2 - 2px);
  width: 4px;
  height: calc(100% - var(--hiw-v3-bullet-size) / 2);
  background: linear-gradient(
    to bottom,
    hsla(var(--hj3-color-bg-dark-hsl), 0) 0%,
    hsla(var(--hj3-color-bg-dark-hsl), 1)
      calc(100% - var(--hiw-v3-bullet-size) / 2)
  );
}

.monitor-hiw-v3__item:nth-last-child(2)::before {
  background: linear-gradient(
    to bottom,
    rgba(43, 129, 79, 0) 0%,
    rgba(43, 129, 79, 1) calc(100% - var(--hiw-v3-bullet-size) / 2)
  );
}

.monitor-hiw-v3__title-wrapper {
  position: relative;
  margin-bottom: 8px;
}

.monitor-hiw-v3__title {
  margin: 0;
  padding-left: calc(
    var(--hiw-v3-bullet-size) + var(--hiw-v3-bullet-margin-right)
  );
  font-size: 20px;
  font-weight: 700;
  color: #3b3f44;
  line-height: 1.3;
}

.monitor-hiw-v3__bullet {
  position: relative;
  display: inline-flex;
  margin-left: calc(-1 * var(--hiw-v3-bullet-size));
  left: calc(-1 * var(--hiw-v3-bullet-margin-right));
}

.monitor-hiw-v3__content-text {
  margin-left: 5px;
}

.monitor-hiw-v3__bullet::before {
  content: "X";
  display: inline-flex;
  width: var(--hiw-v3-bullet-size);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}

.monitor-hiw-v3__bullet::after {
  content: counter(list-items);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: var(--hiw-v3-bullet-size);
  height: var(--hiw-v3-bullet-size);
  background-color: hsl(var(--hj3-color-bg-dark-hsl));
  border-radius: 50%;
  font-size: var(--hiw-v3-bullet-font-size);
  font-weight: 600;
  color: hsla(var(--hj3-color-contrast-high-hsl), 1);
}

.monitor-hiw-v3__item:last-child .monitor-hiw-v3__bullet::after {
  background-color: rgba(43, 129, 79, 1);
  color: hsl(var(--hj3-color-white-hsl));
}

.monitor-hiw-v3__content {
  padding-left: calc(
    var(--hiw-v3-bullet-size) + var(--hiw-v3-bullet-margin-right)
  );
  color: hsla(var(--hj3-color-contrast-medium-hsl), 1);
  font-size: 18px;
  line-height: 1.7;
}

/* Monitor Pricing Steps Responsive */
@media (max-width: 1024px) {
  .monitor-pricing-steps-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .monitor-steps-intro {
    margin-top: 0;
    gap: 16px;
  }

  .monitor-steps-description {
    font-size: 17px;
    max-width: 100%;
  }

  .monitor-hiw-v3__title {
    font-size: 19px;
  }

  .monitor-hiw-v3__content {
    font-size: 17px;
  }
}

@media (max-width: 820px) {
  .monitor-pricing-steps {
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  .monitor-steps-intro {
    gap: 14px;
  }

  .monitor-steps-title {
    font-size: 32px !important;
    line-height: 1.25;
  }

  .monitor-steps-description {
    font-size: 16px;
    line-height: 1.65;
  }

  .monitor-hiw-v3 {
    --hiw-v3-bullet-size: 38px;
    --hiw-v3-bullet-font-size: 15px;
  }

  .monitor-hiw-v3__title {
    font-size: 18px;
    line-height: 1.35;
  }

  .monitor-hiw-v3__content {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .monitor-pricing-steps {
    padding: 60px 20px;
  }

  .monitor-steps-intro {
    gap: 12px;
  }

  .monitor-steps-title {
    font-size: 24px !important;
    line-height: 1.3;
  }

  .monitor-steps-title-highlight {
    display: inline;
  }

  .monitor-steps-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .monitor-hiw-v3 {
    --hiw-v3-bullet-size: 36px;
    --hiw-v3-bullet-font-size: 14px;
    --hiw-v3-gap-y: var(--hj3-space-md);
  }

  .monitor-hiw-v3__title {
    font-size: 17px;
  }

  .monitor-hiw-v3__content {
    font-size: 15px;
    line-height: 1.6;
  }
}
