/* Hero Section - Centered header (light background) */
.lottie-svg-hero-section {
  padding-top: 120px;
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
}

.lottie-svg-hero-section::after,
.lottie-svg-hero-section::before {
  display: none;
}

.lottie-svg-hero-section.steep-curve::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-color: #ffffff;
  clip-path: polygon(
    0 100%,
    0 40%,
    10% 35%,
    20% 30%,
    30% 25%,
    40% 20%,
    50% 15%,
    60% 12%,
    70% 10%,
    80% 8%,
    90% 5%,
    100% 0%,
    100% 100%
  );
  z-index: 1;
  pointer-events: none;
}

.lottie-svg-hero-section.smooth-steep::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 180px;
  background: #ffffff;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,180 Q200,40 1440,0 L1440,180 Z' fill='black'/%3E%3C/svg%3E");
  mask-size: cover;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,180 Q200,40 1440,0 L1440,180 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  z-index: 1;
  pointer-events: none;
}

.lottie-svg-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.lottie-svg-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: auto;
  padding-top: 35px;
  text-align: center;
}

.hero-header-block {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 48px;
}

.lottie-svg-title {
  color: #3b3f44;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

@media (max-width: 750px) {
  .lottie-svg-title {
    font-size: 2.4rem !important;
  }
}

.lottie-svg-description {
  margin: 0 auto;
  color: #707070;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.lottie-svg-cta-button {
  min-width: 180px;
  background: #8d56db;
  color: #fff;
  text-decoration: none;
  padding: 9px 28px;
  font-family: inherit;
  /* box-shadow:
    0 4px 15px rgba(141, 86, 219, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.1); */
  border-radius: 35px;
  font-weight: 500;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.lottie-svg-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  border-radius: 35px;
  pointer-events: none;
}

.lottie-svg-cta-button:hover {
  background: #7a4bc7;
  text-decoration: none;
  color: #fff;

  box-shadow:
    0 6px 20px rgba(141, 86, 219, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.15);
}

.lottie-svg-cta-button:active {
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(141, 86, 219, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-cta-outline {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 19px;
  border-radius: 35px;
  font-weight: 500;
  font-size: 18px;
  color: #3b3f44;
  background: #fff;
  border: 1.17px solid #b8b6be;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero-cta-outline-label {
  font-size: 16px;
  font-weight: 500;
  color: #3b3f44;
}
.hero-cta-outline-icon {
  margin-left: 4px;
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease-in-out;
}

.hero-cta-outline:hover .hero-cta-outline-icon {
  transform: scale(1.08);
}

.hero-cta-outline:hover {
  color: #3b3f44;
  text-decoration: none;
  background: #f0f0f0;
}

.hero-cta-outline:focus-visible {
  outline: 2px solid #8d56db;
  outline-offset: 2px;
}

.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 500;
  color: #525252;
}

.hero-features .hero-check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Widget placeholders: always a single row */
.hero-widget-placeholders {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 32px);
  margin-top: 48px;
  padding: 0 clamp(16px, 3vw, 24px);
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-widget-placeholder {
  flex: 0 0 auto;
  width: min(420px, 85vw);
  min-width: 280px;
  max-width: 420px;
  height: auto;
  aspect-ratio: 320 / 280;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.roxo-wrap-widget {
  margin: 0 auto;
  max-width: 1442px;
  padding-inline: 20px;
}

.roxo-wrap-content {
  margin-left: 55px;
}

.roxo-title.wija-colors-heading-widget {
  margin-top: 85px;
  margin-bottom: 20px;
  color: #3b3f44;
  font-size: 34px;
  text-align: left;
  font-weight: 500;
  line-height: 1.2;
}

.ln7-container.ln7-max-width-adaptive-md {
  max-width: 1442px;
}

.roxo-tabs-p {
  max-width: 760px;
  color: #3b3f44;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

/* Roxo wrap widget responsive styles */
@media (max-width: 1200px) {
  .roxo-wrap-content {
    margin-left: 40px;
  }

  .roxo-title.wija-colors-heading-widget {
    font-size: 32px;
    margin-top: 70px;
  }

  .roxo-tabs-p {
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .roxo-wrap-content {
    margin-left: 30px;
  }

  .roxo-title.wija-colors-heading-widget {
    font-size: 30px;
    margin-top: 60px;
  }

  .roxo-tabs-p {
    font-size: 16px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .roxo-wrap-widget {
    padding-inline: 16px;
  }

  .roxo-wrap-content {
    margin-left: 0;
    text-align: center;
  }

  .roxo-title.wija-colors-heading-widget {
    font-size: 28px;
    margin-top: 50px;
    text-align: center;
  }

  .roxo-tabs-p {
    font-size: 16px;
    text-align: center;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .roxo-wrap-widget {
    padding-inline: 12px;
  }

  .roxo-title.wija-colors-heading-widget {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .roxo-tabs-p {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 1330px) {
  .hero-widget-placeholders {
    padding: 0 20px;
    gap: clamp(12px, 1.5vw, 20px);
    max-width: 100%;
  }

  .hero-widget-placeholder {
    width: min(380px, calc((100vw - 48px - 40px) / 3));
    min-width: 260px;
    max-width: 380px;
  }
}

@media (max-width: 820px) {
  .hero-widget-placeholders {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 24px;
    padding: 0 20px;
  }

  .hero-widget-placeholder {
    width: 100%;
    max-width: 400px;
    min-width: unset;
  }
}

.hero-ratings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 16px 20px;
}

.hero-ratings-item {
  font-size: 14px;
  color: #4a4a4a;
}

.hero-trusted {
  width: 97%;
  padding: 32px 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.hero-trusted-title {
  font-size: 15px;
  font-weight: 400;
  color: #757575;
  margin-bottom: 24px;
}

.hero-trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  gap: 24px;
  margin: 0 auto;
}

.hero-trusted-logos .hero-trusted-logo {
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-trusted-logo-placeholder {
  width: 100px;
  height: 36px;
  background: #e0e0e0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #6b6b6b;
}

.lottie-svg-animation-wrapper {
  display: none;
}

.lottie-svg-animation-container {
  width: 100%;
  height: 550px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1600px) {
  .lottie-svg-animation-container {
    max-width: 800px;
    height: 580px;
  }
}

@media (max-width: 1450px) {
  .lottie-svg-animation-container {
    max-width: 750px;
    height: 550px;
  }
}

@media (max-width: 1350px) {
  .lottie-svg-animation-container {
    max-width: 700px;
    height: 520px;
  }
}

@media (max-width: 1250px) {
  .lottie-svg-animation-container {
    max-width: 650px;
    height: 480px;
  }
}

@media (max-width: 1150px) {
  .lottie-svg-animation-container {
    max-width: 600px;
    height: 450px;
  }
}

@media (max-width: 1050px) {
  .lottie-svg-animation-container {
    max-width: 550px;
    height: 400px;
  }
}

@media (max-width: 1208px) {
  .lottie-svg-animation-container {
    max-width: 650px;
    height: 480px;
  }
}

@media (max-width: 1200px) {
  .lottie-svg-animation-container {
    max-width: 700px;
    height: 400px;
  }
}

@media (max-width: 1100px) {
  .lottie-svg-animation-container {
    max-width: 650px;
    height: 370px;
  }

  .lottie-svg-hero-section::after,
  .lottie-svg-hero-section::before {
    display: none;
  }

  .lottie-svg-hero-section {
    padding-bottom: 100px;
  }

  .lottie-svg-content-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding-top: 20px;
  }

  .lottie-svg-title {
    font-size: 42px;
  }

  .lottie-svg-description {
    margin: 30px auto;
    max-width: 65%;
    font-size: 18px;
  }

  .lottie-svg-animation-wrapper {
    width: 100%;
    align-items: center;
    margin: 0 auto;
    margin-left: 0;
    padding-bottom: 20px;
  }

  .lottie-svg-animation-container {
    max-width: 100%;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1000px) {
  .lottie-svg-animation-container {
    max-width: 600px;
  }
}

@media (max-width: 900px) {
  .lottie-svg-animation-container {
    max-width: 550px;
  }
}

@media (max-width: 800px) {
  .lottie-svg-animation-container {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .lottie-svg-hero-section {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .lottie-svg-container {
    padding: 0 15px;
  }

  .lottie-svg-content-wrapper {
    gap: 24px;
    padding-top: 40px;
  }

  .hero-header-block {
    margin-bottom: -18px;
  }

  .lottie-svg-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .lottie-svg-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .lottie-svg-cta-button,
  .hero-cta-outline {
    width: 100%;

    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    height: 48px;
    box-sizing: border-box;
  }

  .hero-features {
    display: none;
  }

  .hero-features li {
    font-size: 16px;
  }

  .hero-widget-placeholders {
    margin-top: 32px;
    gap: 16px;
    padding: 0 15px;
    flex-direction: column;
    align-items: center;
  }

  .hero-widget-placeholder {
    width: 100%;
    max-width: 400px;
    min-width: unset;
    margin-inline: auto;
  }

  .hero-ratings {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }

  .hero-trusted {
    margin-top: 32px;
    padding: 24px 15px;
  }

  .hero-trusted-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .rtaf-content-wrapper {
    padding-inline: 0px !important;
  }
  .lottie-svg-hero-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .lottie-svg-container {
    padding: 0 10px;
  }

  .lottie-svg-content-wrapper {
    gap: 20px;
    padding-top: 32px;
  }

  .lottie-svg-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .lottie-svg-description {
    font-size: 15px;
    line-height: 1.4;
    max-width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .lottie-svg-cta-button,
  .hero-cta-outline {
    padding: 10px 20px;
    font-size: 13px;

    height: 44px;
    box-sizing: border-box;
  }

  .hero-features {
    max-width: 260px;
  }

  .hero-features li {
    font-size: 15px;
  }

  .hero-widget-placeholders {
    padding: 0 12px;
    gap: 14px;
  }

  .hero-widget-placeholder {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    margin-inline: auto;
  }
}

.lottie-svg-size-small .lottie-svg-animation-container {
  max-width: 300px;
}

.lottie-svg-size-medium .lottie-svg-animation-container {
  max-width: 500px;
}

.lottie-svg-size-large .lottie-svg-animation-container {
  max-width: 700px;
}

.lottie-svg-size-xl .lottie-svg-animation-container {
  max-width: 800px;
}

@media (max-width: 1200px) {
  .roxo-wrap {
    padding-top: 0 !important;
    position: relative;
    z-index: 10;
  }
}

@media (max-width: 1100px) {
  .roxo-wrap {
    padding-top: 0 !important;
    position: relative;
    z-index: 10;
  }
}

@media (max-width: 779px) {
  .ln7-margin-bottom-md {
    padding-inline: 20px !important;
  }

  .widget-stats {
    display: none !important;
  }
}

@media (max-width: 730px) {
  .roxo-wrap {
    padding-top: 0 !important;
    position: relative;
    z-index: 10;
  }
}

@media (max-width: 400px) {
  .roxo-wrap {
    padding-top: 0 !important;
    position: relative;
    z-index: 10;
  }
}

/* Accessibility checker steps section (shared with accessibility-checker page) */
.accessibility-checker-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;
}

@media (min-width: 64rem) {
  .accessibility-checker-steps {
    --hj3-space-xs: 0.75rem;
    --hj3-space-sm: 1.125rem;
    --hj3-space-lg: 3.125rem;
    --hj3-space-md: 2rem;
    --hj3-text-sm: 1rem;
  }
}

#timing-tab-1-panel-1 {
  padding: 0px !important;
}

.accessibility-checker-steps-content {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.steps-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.steps-title {
  max-width: 370px;
  color: #3b3f44;
  font-family: "Inter", sans-serif;
  font-size: 34px !important;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.steps-title-highlight {
  color: #8e56dc;
  display: inline-block;
}

.steps-description {
  color: #3b3f44;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* Video thumbnail in steps section - reuse checker styles */
.accessibility-checker-features-section {
  display: grid;
  max-width: 420px;
}

.features-image-wrapper {
  position: relative;
  width: 100%;
  align-self: start;
  overflow: hidden;
}

.features-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.features-video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.features-video-play-button:hover,
.features-video-play-button:focus {
  transform: translate(-50%, -50%) scale(1.1);
}

.features-video-play-button:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 50%;
}

.features-video-play-icon {
  width: 56px;
  height: 56px;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.features-video-play-button:hover .features-video-play-icon,
.features-video-play-button:focus .features-video-play-icon {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .features-video-play-icon {
    width: 40px;
    height: 40px;
  }
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
}

.video-modal-container {
  position: relative;
  width: 90%;
  max-width: min(1200px, calc((90vh - 100px) * 16 / 9));
  max-height: 90vh;
  background: #1e1e23;
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: scale(0.98);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.video-modal.active .video-modal-container {
  transform: scale(1);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-shrink: 0;
  min-height: 0;
}

.video-modal-title {
  color: #ffffff;
  font-size: 22px !important;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.video-modal-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.video-modal-close:focus {
  outline: 2px solid #8e56dc;
  outline-offset: 2px;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #000000;
  border-radius: 8px;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.video-modal-content iframe,
.video-modal-content video,
.video-modal-content .html5-main-video,
.video-modal-content .video-stream {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .video-modal {
    padding: 12px;
  }

  .video-modal-container {
    width: 100%;
    max-width: min(100%, calc((100vh - 90px) * 16 / 9));
    max-height: calc(100vh - 24px);
    padding: 16px;
  }

  .video-modal-header {
    margin-bottom: 12px;
  }

  .video-modal-title {
    font-size: 20px !important;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .video-modal {
    padding: 8px;
  }

  .video-modal-container {
    width: 100%;
    max-width: min(100%, calc((100vh - 80px) * 16 / 9));
    max-height: calc(100vh - 16px);
    padding: 12px;
    border-radius: 12px;
  }

  .video-modal-header {
    margin-bottom: 10px;
  }

  .video-modal-title {
    font-size: 18px !important;
    line-height: 1.2;
  }

  .video-modal-close {
    padding: 6px;
  }

  .video-modal-close svg {
    width: 20px;
    height: 20px;
  }

  .video-modal-content {
    border-radius: 6px;
  }
}

.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;
}

.hiw-v3__item {
  position: relative;
  counter-increment: list-items;
}

.hiw-v3__item:not(:last-child) {
  padding-bottom: var(--hiw-v3-gap-y);
}

.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)
  );
}

.hiw-v3__item:nth-last-child(2)::before {
  background: linear-gradient(
    to bottom,
    rgba(142, 86, 220, 0) 0%,
    rgba(142, 86, 220, 1) calc(100% - var(--hiw-v3-bullet-size) / 2)
  );
}

.hiw-v3__title-wrapper {
  position: relative;
  margin-bottom: var(--hj3-space-xs);
}

.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;
}

.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));
}

.hiw-v3__bullet::before {
  content: "X";
  display: inline-flex;
  width: var(--hiw-v3-bullet-size);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}

.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);
}

.hiw-v3__item:last-child .hiw-v3__bullet::after {
  background-color: rgba(142, 86, 220, 1);
  color: hsl(var(--hj3-color-white-hsl));
}

.hiw-v3__content {
  padding-left: calc(
    var(--hiw-v3-bullet-size) + var(--hiw-v3-bullet-margin-right)
  );
  color: #73757d;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .ln7-margin-bottom-md {
    padding-inline: 55px;
  }

  .accessibility-checker-steps {
    padding: 100px 24px;
  }
  .accessibility-checker-steps-content {
    gap: 64px;
  }
  .steps-title {
    white-space: normal;
    font-size: 32px !important;
  }
  .steps-description {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .accessibility-checker-steps {
    padding: 80px 20px;
  }
  .accessibility-checker-steps-content {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .steps-intro {
    margin-top: 0;
    gap: 16px;
  }
  .steps-description {
    font-size: 17px;
    max-width: 100%;
  }
  .hiw-v3__title {
    font-size: 19px;
  }
  .hiw-v3__content {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .accessibility-checker-steps {
    padding: 64px 20px;
  }
  .accessibility-checker-steps-content {
    gap: 48px;
  }
  .steps-intro {
    gap: 14px;
  }
  .steps-title {
    font-size: 32px !important;
    line-height: 1.25;
  }
  .steps-description {
    font-size: 16px;
    line-height: 1.65;
  }
  .hiw-v3 {
    --hiw-v3-bullet-size: 38px;
    --hiw-v3-bullet-font-size: 15px;
  }
  .hiw-v3__title {
    font-size: 18px;
    line-height: 1.35;
  }
  .hiw-v3__content {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 640px) {
  .accessibility-checker-steps {
    padding: 56px 16px;
  }
  .accessibility-checker-steps-content {
    gap: 40px;
  }
  .steps-title {
    font-size: 28px !important;
  }
  .steps-description {
    font-size: 15px;
  }
  .hiw-v3 {
    --hiw-v3-bullet-size: 36px;
    --hiw-v3-bullet-font-size: 14px;
    --hiw-v3-gap-y: var(--hj3-space-md);
  }
  .hiw-v3__title {
    font-size: 17px;
  }
  .hiw-v3__content {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .accessibility-checker-steps {
    padding: 48px 16px;
  }
  .accessibility-checker-steps-content {
    gap: 36px;
  }
  .steps-intro {
    gap: 12px;
  }
  .steps-title {
    font-size: 24px !important;
    line-height: 1.3;
  }
  .steps-title-highlight {
    display: inline;
  }
  .steps-description {
    font-size: 14px;
    line-height: 1.6;
  }
  .hiw-v3 {
    --hiw-v3-bullet-size: 32px;
    --hiw-v3-bullet-font-size: 13px;
    --hiw-v3-gap-y: 1.25rem;
  }
  .hiw-v3__item:not(:last-child)::before {
    left: calc(var(--hiw-v3-bullet-size) / 2 - 1.5px);
    width: 3px;
  }
  .hiw-v3__title {
    font-size: 16px;
    line-height: 1.4;
    padding-left: calc(
      var(--hiw-v3-bullet-size) + var(--hiw-v3-bullet-margin-right)
    );
  }
  .hiw-v3__content {
    font-size: 14px;
    line-height: 1.6;
    padding-left: calc(
      var(--hiw-v3-bullet-size) + var(--hiw-v3-bullet-margin-right)
    );
  }
}

@media (max-width: 360px) {
  .accessibility-checker-steps {
    padding: 40px 12px;
  }
  .steps-title {
    font-size: 22px !important;
  }
  .steps-description {
    font-size: 13px;
  }
  .hiw-v3 {
    --hiw-v3-bullet-size: 30px;
    --hiw-v3-bullet-font-size: 12px;
  }
  .hiw-v3__title {
    font-size: 15px;
  }
  .hiw-v3__content {
    font-size: 13px;
  }
}

/* Widget stats section (dark bar with key statistics) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.widget-stats {
  background-color: #3b3f44;
  padding: 64px 24px;
}

.widget-stats-inner {
  max-width: 1550px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.widget-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.widget-stat-value {
  font-family: "Inter", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.widget-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
}

@media (max-width: 992px) {
  .widget-stats {
    padding: 56px 20px;
  }
  .widget-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 768px) {
  .widget-stats-inner {
    grid-template-columns: 1fr;
    max-width: 536px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    justify-items: start;
  }
}

@media (max-width: 480px) {
  .widget-stats {
    padding: 48px 16px;
  }
  .widget-stats-inner {
    gap: 32px;
    max-width: 300px;
  }
  .widget-stat-value {
    font-size: 2rem;
  }
  .widget-stat-label {
    font-size: 0.9375rem;
  }
}

/* Real-Time Accessibility Fixes Section */
.rtaf-section {
  position: relative;
  height: 450px;
  margin-top: 50px;
  background-color: #3b3f44;
  overflow: visible;
}

.rtaf-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rtaf-content-wrapper {
  padding-inline: 34px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.rtaf-text-content {
  flex: 0 0 40%;
  margin: 0 auto;
  margin-top: 50px;
  max-width: 40%;
  text-align: left;
}

.rtaf-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.rtaf-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #ebebeb;
  margin-bottom: 36px;
  max-width: 420px;
}

.rtaf-cta-button {
  display: inline-block;
  background-color: #8d56db;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.rtaf-cta-button:hover {
  background-color: #8d56db;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(141, 86, 219, 0.35);
}

.rtaf-cta-button:focus-visible {
  outline: 3px solid #8d56db;
  outline-offset: 3px;
}

.rtaf-animation-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 7rem;
}

.rtaf-animation-container {
  width: 100%;
  max-width: 700px;
  height: 500px;
  position: relative;
}

@media (max-width: 1200px) {
  .rtaf-content-wrapper {
    gap: 40px;
  }
  .rtaf-title {
    font-size: 38px;
  }
  .rtaf-animation-container {
    max-width: 600px;
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .rtaf-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .rtaf-text-content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .rtaf-description {
    margin-left: auto;
    margin-right: auto;
  }
  .rtaf-animation-wrapper {
    width: 100%;
    margin-top: 0;
  }
  .rtaf-animation-container {
    max-width: 50%;
    height: 252px;
  }
}

@media (max-width: 768px) {
  .rtaf-section {
    margin-top: 83px;
    padding: 0px 0 100px;
  }
  .rtaf-section::before,
  .rtaf-section::after {
    height: 50px;
  }
  .rtaf-title {
    font-size: 32px;
  }
  .rtaf-description {
    font-size: 16px;
  }
  .rtaf-animation-container {
    height: 363px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .rtaf-section {
    padding: 0px 0 90px;
  }
  .rtaf-section::before,
  .rtaf-section::after {
    height: 40px;
  }
  .rtaf-title {
    font-size: 28px;
  }
  .rtaf-description {
    font-size: 15px;
    max-width: 90%;
  }
  .rtaf-animation-container {
    height: auto;
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }
  .rtaf-container {
    padding: 0 15px;
  }
}

/* =====================================================
   WIDGET GUIDELINES SECTION
   ===================================================== */
.widget-guidelines {
  margin-top: 250px;
  margin-bottom: 100px;
  background-color: #ffffff;
}

.widget-guidelines-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.explore-tools-section {
  padding: 150px 20px !important;
}

.widget-guidelines-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.widget-guidelines-eyebrow {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(142, 86, 220, 1);
}

.widget-guidelines-title {
  padding-bottom: 20px;
  font-size: 44px !important;
  font-weight: 500 !important;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  color: rgba(59, 63, 68, 1);
  margin: 0;
}

.widget-guidelines-highlight {
  color: #8e56dc;
}

.widget-guidelines-tabs {
  display: flex;
  padding: 14px;
  background-color: rgba(248, 248, 248, 1);
  border: 1px solid rgba(142, 86, 220, 0.18);
  border-radius: 8px;
  justify-content: space-between;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
}

.widget-guidelines-tabs-list {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: space-between;
  white-space: nowrap;
  gap: 0;
  flex-wrap: nowrap;
  min-width: min-content;
}

.widget-guidelines-tabs-item {
  display: flex;
  flex-shrink: 0;
}

.widget-guidelines-tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  min-width: 0;
  width: 100%;
}

.widget-guidelines-tabs-wrapper[data-expanded="true"] .widget-guidelines-tabs {
  display: flex !important;
  overflow-y: auto;
  overflow-x: hidden;
}

.widget-guidelines-tabs-toggle-label-hidden {
  display: none;
}

.widget-guidelines-tabs-combobox {
  position: relative;
  outline: none;
}

.widget-guidelines-tabs-combobox:focus-visible {
  outline: 3px solid rgba(142, 86, 220, 0.4);
  outline-offset: 2px;
  border-radius: 10px;
}

.widget-guidelines-tabs-toggle {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(142, 86, 220, 0.3);
  background-color: #ffffff;
  color: #1f1f24;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.widget-guidelines-tabs-toggle-label {
  transition:
    color 0.2s ease,
    font-weight 0.2s ease;
}

.widget-guidelines-tabs-wrapper:has(.widget-guidelines-tab.is-active)
  .widget-guidelines-tabs-toggle-label {
  color: rgba(142, 86, 220, 1);
  font-weight: 600;
}

.widget-guidelines-tabs-toggle-flag:not(:empty) {
  margin-right: 8px;
}

.widget-guidelines-tabs-toggle-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-guidelines-tabs-toggle-flag .widget-guidelines-tab-icon,
.widget-guidelines-tabs-toggle-flag .widget-guidelines-tab-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.widget-guidelines-tabs-toggle-flag .widget-guidelines-tab-icon svg {
  width: 22px;
  height: 22px;
  transition: stroke 0.2s ease;
}

.widget-guidelines-tabs-wrapper:has(.widget-guidelines-tab.is-active)
  .widget-guidelines-tabs-toggle-flag
  .widget-guidelines-tab-icon
  svg {
  stroke: #8e56dc;
}

.widget-guidelines-tabs-toggle-flag .widget-guidelines-tab-flag-svg {
  width: 29px;
  height: 21px;
}

.widget-guidelines-tabs-toggle-flag .widget-guidelines-tab-flag-image {
  width: 29px;
  height: 21px;
}

.widget-guidelines-tab-flag-image {
  width: 31px;
  height: 23px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(31, 31, 36, 0.08);
  display: block;
}

.widget-guidelines-tabs-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.widget-guidelines-tabs-toggle-icon svg {
  transition: transform 0.2s ease;
}

.widget-guidelines-tabs-wrapper[data-expanded="true"]
  .widget-guidelines-tabs-toggle-icon
  svg {
  transform: rotate(180deg);
}

.widget-guidelines-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 26px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(188, 188, 188, 1);
  color: #4d3d6a;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.widget-guidelines-tab-label {
  font-size: 16px;
  font-weight: 500;
  color: #3b3f44;
}

.widget-guidelines-tab:focus-visible {
  outline: 3px solid rgba(142, 86, 220, 0.6);
  outline-offset: 2px;
}

.widget-guidelines-tab:hover {
  background-color: #ede6ff;
}

.widget-guidelines-tab.is-active {
  background-color: #e8e0f4;
  border-color: #8e56dc;
  color: #8e56dc;
}

.widget-guidelines-tab.is-active .widget-guidelines-tab-label {
  color: #8e56dc;
}

.widget-guidelines-tab.is-active .widget-guidelines-tab-icon svg {
  color: #8e56dc;
  stroke: #8e56dc;
}

.widget-guidelines-tab-icon svg {
  padding-bottom: 2px;
  width: 24px;
  height: 24px;
}

.widget-guidelines-tab-flag {
  display: inline-flex;
  align-items: center;
}

.widget-guidelines-tab-flag-svg {
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(31, 31, 36, 0.08);
  display: block;
}

.widget-guidelines-panel {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-inline: 29px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(142, 86, 220, 0.15);
}

.widget-guidelines-panel-content {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 28px;
}

.widget-guidelines-map {
  border-radius: 20px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-guidelines-map-graphic {
  margin-bottom: 0px;
  position: relative;
  font-size: 16px;
  color: rgba(31, 31, 36, 0.55);
  text-align: center;
  line-height: 1.7;
  width: 100%;
  height: 100%;
  background-image: url("/images/widget-categories-background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.widget-guidelines-map-image,
.widget-guidelines-map-overlay {
  display: block;
  width: 100%;
  margin-top: 83px;
  height: auto;
}

.widget-guidelines-map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  --overlay-transform: translate(-50%, -50%);
  --overlay-motion-offset: -32px;
  transform: var(--overlay-transform) translateY(var(--overlay-motion-offset));
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.widget-guidelines-map-overlay.is-visible {
  opacity: 1;
  --overlay-motion-offset: 0px;
}

.widget-guidelines-details {
  display: flex;
  flex-direction: column;
}

.widget-guidelines-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.widget-guidelines-card-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-guidelines-card-title {
  padding-top: 8px;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #8e56dc;
}

.widget-guidelines-card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.widget-guidelines-info-row {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 212, 212, 1);
  border-radius: 16px;
  overflow: hidden;
  background-color: transparent;
}

.widget-guidelines-overview {
  font-size: 18px;
  font-weight: 500;
  color: rgba(105, 105, 105, 1);
}

.widget-guidelines-info-item {
  min-height: 189px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
}

.widget-guidelines-info-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.widget-guidelines-info-item--primary {
  background-color: #ffffff;
}

.widget-guidelines-info-item--secondary {
  background-color: #f8f8f8;
}

.widget-guidelines-info-divider {
  width: 100%;
  height: 1px;
  background-color: #c2c2c2;
}

.widget-guidelines-info-heading {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f1f24;
}

.widget-guidelines-info-icon svg {
  padding-bottom: 5px;
  width: 26px;
  height: 26px;
  color: #828282;
}

.widget-guidelines-info-text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #3b3f44;
}

.widget-guidelines-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 7px;
  font-size: 16px;
  font-weight: 600;
  color: #8e56dc;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.widget-guidelines-link:hover {
  color: #6f42c1;
  transform: translateX(2px);
}

.widget-guidelines-link:focus-visible {
  outline: 3px solid rgba(142, 86, 220, 0.6);
  outline-offset: 2px;
  border-radius: 6px;
}

.widget-guidelines-link-icon svg {
  width: 16px;
  height: 16px;
}

.widget-guidelines-update-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.widget-guidelines-update-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 18px;
  border-radius: 999px;
  background-color: rgba(56, 161, 105, 0.15);
  color: #2f855a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.widget-guidelines-info-heading-text {
  font-size: 18px;
  font-weight: 500;
  color: #696969;
}

.widget-guidelines-update-badge-icon svg {
  display: block;
}

.widget-guidelines-update-badge-text {
  display: inline-flex;
  align-items: center;
}

.widget-guidelines-update-highlight {
  color: #8e56dc;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.widget-guidelines-update-highlight:hover {
  color: #6c3bbe;
}

.widget-guidelines-update-highlight:focus-visible {
  outline: 3px solid #8e56dc;
  outline-offset: 2px;
  border-radius: 2px;
}

.widget-guidelines-content-section[hidden] {
  display: none;
}

/* =====================================================
   HOME ACADEMY CTA SECTION
   ===================================================== */
.widget-academy-cta {
  background-color: #ffffff;
  padding: 80px 20px;
}

.widget-academy-cta-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.widget-academy-cta-content {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);

  align-items: center;
}

.widget-academy-cta-message {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 465px;
}

.widget-academy-eyebrow {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(70, 119, 86, 1);
}

.widget-academy-title {
  margin: 0;
  font-size: 44px !important;
  font-weight: 500 !important;
  line-height: 1.2;
  color: #3b3f44;
  font-family: "Inter", sans-serif;
}

.widget-academy-description {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #67686e;
}

.widget-academy-highlight {
  font-size: 19px;
  color: #8e56dc;
  font-weight: 400;
}

.widget-academy-cta-button {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 28px;
  border-radius: 30px;
  background-color: #8e56dc;
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  width: fit-content;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  box-shadow: 0 10px 28px rgba(142, 86, 220, 0.15);
}

.widget-academy-cta-button:hover {
  background-color: #7044b0;
  transform: translateY(-1px);
}

.widget-academy-cta-button:focus-visible {
  outline: 3px solid rgba(142, 86, 220, 0.5);
  outline-offset: 2px;
}

.widget-academy-visual-animation {
  margin: 0 auto;
  max-width: 520px;
  width: 100%;
}

.widget-academy-animation-container {
  width: 110%;
  height: auto;
}

.widget-academy-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.widget-academy-cta-container .widget-academy-cta-button {
  align-self: flex-start;
}

.widget-academy-benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background-color: #ffffff;
  padding: 28px 26px 28px 30px;
}

.widget-academy-benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 3px;
  height: 165px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #8e56dc 0%,
    #8e56dc 30%,
    rgba(59, 63, 68, 0.15) 30%,
    rgba(59, 63, 68, 0.15) 100%
  );
}

.widget-academy-benefit-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(31, 31, 36, 0.6);
}

.widget-academy-benefit-icon svg {
  width: 35px;
  height: 35px;
  stroke-width: 1.5;
}

.widget-academy-benefit-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.widget-academy-benefit-title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: #3b3f44;
  line-height: 1.3;
}

.widget-academy-benefit-text {
  margin: 0;
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.65;
}

/* =====================================================
   HOME GUIDELINES & ACADEMY RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 1300px) {
  .widget-guidelines-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(142, 86, 220, 0.3) transparent;
  }

  .widget-guidelines-tabs::-webkit-scrollbar {
    height: 6px;
  }

  .widget-guidelines-tabs::-webkit-scrollbar-track {
    background: transparent;
  }

  .widget-guidelines-tabs::-webkit-scrollbar-thumb {
    background-color: rgba(142, 86, 220, 0.3);
    border-radius: 3px;
  }

  .widget-guidelines-tabs-list {
    min-width: fit-content;
  }

  .widget-guidelines-tab {
    padding: 8px 28px;
    flex-shrink: 0;
  }
}

@media (max-width: 1200px) {
  .widget-guidelines {
    padding: 110px 32px;
  }

  .widget-guidelines-panel-content {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 24px;
  }

  .widget-guidelines-tabs-list {
    gap: 10px;
  }

  .widget-guidelines-tab {
    padding: 12px 20px;
  }
}

@media (max-width: 1024px) {
  .widget-guidelines {
    padding: 96px 24px;
  }

  .widget-guidelines-header {
    max-width: 100%;
  }

  .widget-guidelines-title {
    font-size: 32px !important;
  }

  .widget-guidelines-tabs-list {
    justify-content: flex-start;
  }

  .widget-guidelines-panel-content {
    grid-template-columns: 1fr;
  }

  .widget-guidelines-map {
    order: 2;
    display: none;
  }

  .widget-guidelines-details {
    order: 1;
  }

  .widget-academy-title {
    font-size: 32px !important;
  }

  .widget-academy-cta-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .widget-academy-visual-animation {
    order: -1;
  }
}

@media (max-width: 1080px) {
  .accessibility-panel-bg-single {
    top: -180px;
  }

  .widget-guidelines-tabs-toggle-label-hidden {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #3b3f44;
    line-height: 1.5;
  }

  .widget-guidelines-tabs-toggle {
    display: flex;
  }

  .widget-guidelines-tabs {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(142, 86, 220, 0.18);
    box-shadow: 0 16px 45px rgba(31, 31, 36, 0.12);
    display: none;
    max-height: 450px;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    white-space: normal;
    justify-content: flex-start;
    z-index: 5;
    -webkit-overflow-scrolling: touch;
  }

  .widget-guidelines-tabs-list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    gap: 8px;
  }

  .widget-guidelines-tab {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    font-size: 15px;
    flex-shrink: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 820px) {
  .widget-guidelines {
    padding: 80px 20px;
    margin-top: 283px;
  }

  .widget-guidelines-panel {
    padding: 24px;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .widget-academy-cta {
    padding: 100px 20px;
  }

  .widget-academy-cta-container {
    gap: 40px;
  }

  .widget-academy-benefit {
    padding: 22px 20px;
  }

  .widget-academy-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .widget-academy-cta-container .widget-academy-cta-button {
    width: 100%;
  }

  .widget-guidelines-info-item {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .moni-team-section {
    margin-top: 20px;
  }

  .explore-tools-section {
    padding: 80px 20px !important;
  }
  .accessibility-panel-bg-single {
    top: -150px;
  }
  .widget-guidelines-title {
    font-size: 28px !important;
  }

  .widget-guidelines-panel {
    padding: 20px;
  }

  .widget-guidelines-info-item {
    padding: 20px;
  }

  .widget-guidelines-info-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .widget-guidelines-update-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .widget-academy-title {
    font-size: 28px !important;
  }
}

@media (max-width: 480px) {
  .accessibility-panel-bg-single {
    top: -150px;
  }

  .solutions-tablist {
    width: 100%;
    max-width: 100%;
    padding: 4px;
    gap: 4px;
  }

  .solutions-tab {
    padding: 10px 12px;
    font-size: 14px;
    min-height: 44px; /* WCAG touch target size */
    flex: 1;
    min-width: 0; /* Allow flex shrinking */
  }

  .solutions-header h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  .solutions-header-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .widget-guidelines {
    margin-bottom: 0px;
    padding: 64px 16px;
    margin-top: 176px;
  }

  .widget-guidelines-header {
    gap: 14px;
  }

  .widget-guidelines-title {
    font-size: 28px !important;
  }

  .widget-guidelines-tabs {
    padding: 8px;
  }

  .widget-guidelines-tabs-list {
    gap: 6px;
  }

  .widget-guidelines-tab {
    padding: 10px 16px;
    font-size: 14px;
  }

  .widget-guidelines-info-item {
    padding: 18px;
  }

  .widget-guidelines-card-title {
    font-size: 18px;
  }

  .widget-guidelines-info-text {
    font-size: 15px;
  }

  .widget-academy-title {
    font-size: 28px !important;
  }

  .widget-academy-cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .solutions-tablist {
    padding: 3px;
    gap: 3px;
  }

  .solutions-tab {
    padding: 8px 10px;
    font-size: 13px;
    min-height: 44px; /* Maintain WCAG touch target size */
  }
}

@media (max-width: 320px) {
  .solutions-tablist {
    display: none;
  }

  .solutions-dropdown-wrapper {
    display: block;
  }

  .solutions-dropdown-label {
    text-align: left;
    font-size: 15px;
    margin-bottom: 6px;
  }

  .solutions-header h3 {
    font-size: 22px;
  }

  .solutions-header-title {
    font-size: 22px;
  }

  .solution-card-title {
    font-size: 16px !important;
  }

  .widget-academy-title {
    font-size: 22px !important;
  }

  .widget-guidelines-title {
    font-size: 22px !important;
  }

  .widget-guidelines-info-item {
    padding: 16px;
  }

  .widget-guidelines-tabs-toggle-label-hidden {
    font-size: 15px;
  }
}

/* Inline styles moved from EJS file */

/* Style block 1 */
/* Step Section Styles */
.step-section {
  background-color: transparent;
  width: 100%;
  margin-bottom: 200px;
}
@media (max-width: 769px) {
  .step-section {
    margin-bottom: 100px;
  }
}

.step-container {
  background-color: transparent;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
}

.step-header {
  text-align: center;
  margin-bottom: 80px;
}

.step-header-tag {
  background-color: rgba(142, 86, 220, 0.15);
  color: #8e56dc;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 30px;
}

.step-main-title {
  font-size: 48px;
  font-weight: 500;
  color: #3b3f44;
  margin: 0;
}

.step-content-wrapper {
  max-width: 1200px;
  width: 100%;
}

.step-items-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.step-item {
  flex: 1;
  text-align: center;
  max-width: 300px;
}

.step-tag {
  color: #8e56dc;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 15px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #3b3f44;
  margin-bottom: 20px;
  line-height: 1.3;
}

.step-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.step-arrow {
  flex-shrink: 0;
  width: 60px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
}

.step-arrow svg {
  width: 40px;
  height: 20px;
  fill: #999;
}

/* Remove arrow after last item */
.step-item:last-child + .step-arrow {
  display: none;
}

/* Mobile Responsive Styles for Step Section */
@media (max-width: 968px) {
  .step-container {
    padding: 60px 20px;
  }

  .step-main-title {
    font-size: 40px;
  }

  .step-items-container {
    gap: 20px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .step-container {
    padding: 50px 15px;
  }

  .step-main-title {
    font-size: 32px;
  }

  .step-items-container {
    flex-direction: column;
    gap: 20px;
  }

  .step-item {
    max-width: 100%;
    position: relative;
  }

  .step-arrow {
    width: 30px;
    height: 60px;
    margin: 0;
    transform: rotate(90deg);
  }

  .step-arrow svg {
    width: 20px;
    height: 40px;
  }

  /* Hide last arrow on mobile */
  .step-items-container .step-item:last-child ~ .step-arrow,
  .step-items-container .step-arrow:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .step-container {
    padding: 40px 15px;
  }

  .step-header {
    margin-bottom: 60px;
  }

  .step-main-title {
    font-size: 28px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 14px;
  }

  .step-items-container {
    gap: 20px;
  }
}

/* Desktop hover effects */
@media (min-width: 769px) {
  .step-item:hover .step-title {
    color: #8e56dc;
    transition: color 0.3s ease;
  }

  .step-item:hover .step-tag {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
  }
}

/* Style block 2 */
.roxo-pricing-section {
  background-color: white;
  padding-top: 100px;
  padding-bottom: 100px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 600px, #ffffff 0%),
    #8e56dc no-repeat center top / cover;
  position: relative;
}
.roxo-pricing-h1-s {
  color: #ffffff !important;
  font-weight: 400 !important;
  font-size: 1.5rem;
}
.roxo-pricing-h1-b {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 3rem;
}
.roxo-pricing-h1-p {
  color: #ffffff !important;
  font-weight: 400 !important;
  font-size: 1.2rem;
}

/* Style block 3 */
/* Modal styles with transitions */
.simple-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.simple-modal.show {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Position preservation class */
body.scroll-locked {
  overflow: hidden;
}

.modal-content {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  padding: 0;
  border-radius: 12px;
  width: 80%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.simple-modal.show .modal-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f8f8f8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1;
}

#modalTitle {
  margin: 0;
  font-size: 22px;
}

#closeModal {
  font-size: 28px;
  cursor: pointer;
  padding: 0 10px;
  transition: color 0.2s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
}

#closeModal:hover {
  color: #555;
  background-color: #f0f0f0;
}

#closeModal:focus-visible {
  outline: 2px solid #8d56db;
  outline-offset: 2px;
}

#modalContent {
  padding: 20px;
  line-height: 1.6;
  max-height: 400px;
}

#modalContent p {
  margin-bottom: 15px;
}

#modalContent p:last-child {
  margin-bottom: 0;
}

/* Info badge inside boxes */
.lita2-info-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #f0f4ff;
  color: #7540bf;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
  opacity: 0.9;
}

/* Button reset and styling */
.lita2-box {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 1px solid #dfe1e7;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  color: inherit;
}

.lita2-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Focus outline styles */
.lita2-box:focus {
  outline: none;
}

.lita2-box:focus-visible {
  outline: 3px solid #8d56db;
  outline-offset: 2px;
}

/* For screen readers only */
.lita2-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Hidden SEO content */
.lita2-feature-details {
  display: none;
}

.lita2-feature-details p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
  }

  #modalTitle {
    font-size: 20px;
  }

  #modalContent {
    padding: 20px;
  }
}

/* Style block 4 */
.link-to-comap:hover {
  background-color: #8e56dc !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* =====================================================
   WIDGET PRICING SECTION
   ===================================================== */
.widget-pricing-section {
  margin-top: 40px;
  padding: 100px 20px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 480px, #ffffff 0%), #8e56dc;
  position: relative;
}

.widget-pricing-container {
  margin: 0 auto;
}

.widget-pricing-header {
  margin: 0 auto;
  max-width: 1334px;
  text-align: left;
  margin-bottom: 56px;
}

.widget-pricing-subtitle {
  display: block;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  font-size: 1.25rem;
}

.widget-pricing-title {
  color: #ffffff;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 7px;
}

.widget-pricing-desc {
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

/* Pricing Wrapper */
.widget-pricing-wrapper {
  width: fit-content;
  margin: 0 auto;
  max-width: 1200px;
  -webkit-backdrop-filter: blur(20px);
  border: 0.82px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 30px 30px 2em;
  position: relative;
  backdrop-filter: blur(16.393112182617188px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Pricing Cards */
.widget-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.widget-pricing-card {
  background: #ffffff;
  border-radius: 16px;
  border: 0.78px solid rgba(185, 185, 185, 1);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.widget-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.widget-card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.widget-card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(59, 63, 68, 1);
}

.widget-card-desc {
  margin: 0 0 auto;
  font-size: 15px;
  color: rgba(82, 82, 82, 1);
  line-height: 1.55;
  padding-bottom: 20px;
}

.widget-card-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.widget-price-label {
  font-size: 14px;
  color: rgba(82, 82, 82, 1);
  font-weight: 400;
}

.widget-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  padding-bottom: 30px;
}

.widget-price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #3b3f44;
}

.widget-price-period {
  font-size: 1rem;
  color: #707070;
}

.widget-card-cta {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  padding: 6px 20px;
  border-radius: 6px;
  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);
}

.widget-card-cta:hover {
  background: rgba(142, 86, 220, 1);
  box-shadow: 0 6px 20px rgba(142, 86, 220, 0.1);
  color: #ffffff;
  text-decoration: none;
}

.widget-card-cta--primary {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  padding: 6px 20px;
  border-radius: 6px;
  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);
}

.widget-card-cta--primary:hover {
  background: rgba(142, 86, 220, 1);
  color: #ffffff;
  border-color: rgba(142, 86, 220, 1);
}

.widget-card-cta:focus-visible {
  outline: 3px solid rgba(142, 86, 220, 0.6);
  outline-offset: 2px;
}

/* Compliance Coverage Banner */
.widget-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: 0;
}

.widget-compliance-coverage-text {
  flex: 1;
  max-width: 500px;
}

.widget-compliance-coverage-title {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(59, 63, 68, 1);
}

.widget-compliance-coverage-description {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(82, 82, 82, 1);
}

.widget-compliance-coverage-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.widget-compliance-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-compliance-logo-image {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
  .widget-pricing-wrapper {
    padding: 24px;
    gap: 20px;
  }

  .widget-pricing-cards {
    gap: 18px;
  }

  .widget-pricing-card {
    padding: 28px 22px 32px;
    min-height: 323px;
  }

  .widget-price-amount {
    font-size: 2rem;
  }

  .widget-compliance-coverage-content {
    padding: 24px;
    gap: 35px;
  }

  .widget-compliance-coverage-title {
    font-size: 32px;
  }

  .widget-compliance-coverage-logos {
    gap: 28px;
  }

  .widget-compliance-logo-image {
    max-width: 100px;
  }
}

@media (max-width: 900px) {
  .widget-pricing-section {
    padding: 60px 20px 100px;
  }

  .widget-pricing-header {
    text-align: left;
    margin-bottom: 40px;
  }

  .widget-pricing-title {
    font-size: 2rem;
  }

  .widget-pricing-subtitle {
    font-size: 1.1rem;
  }

  .widget-pricing-wrapper {
    padding: 20px;
    gap: 20px;
  }

  .widget-pricing-cards {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .widget-pricing-card {
    min-height: 323px !important;
    padding: 28px 24px 32px;
  }

  .widget-compliance-coverage-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 30px;
  }

  .widget-compliance-coverage-text {
    max-width: 100%;
  }

  .widget-compliance-coverage-title {
    font-size: 28px;
  }

  .widget-compliance-coverage-logos {
    justify-content: center;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .widget-pricing-section {
    padding: 50px 16px 80px;
  }

  .widget-pricing-title {
    font-size: 1.75rem;
  }

  .widget-pricing-subtitle {
    font-size: 1rem;
  }

  .widget-pricing-desc {
    font-size: 0.95rem;
  }

  .widget-pricing-wrapper {
    padding: 16px;
    border-radius: 18px;
    gap: 16px;
  }

  .widget-pricing-cards {
    max-width: 100%;
    gap: 14px;
  }

  .widget-pricing-card {
    min-height: 323px;
    padding: 24px 20px 28px;
  }

  .widget-compliance-coverage-content {
    padding: 16px;
    gap: 24px;
  }

  .widget-compliance-coverage-title {
    font-size: 24px;
  }

  .widget-compliance-coverage-description {
    font-size: 15px;
  }

  .widget-compliance-coverage-logos {
    gap: 20px;
  }

  .widget-compliance-logo-image {
    max-width: 80px;
  }
}

/* =====================================================
   MONI TEAM SECTION
   ===================================================== */
.moni-team-section {
  position: relative;
}

.moni-team-content-wrapper {
  position: relative;
}

.moni-team-cta-button {
  position: relative;
  display: inline-block;
  margin: auto 0;
  padding: 9px 77px;
  background-color: #8e56dc;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.moni-team-cta-button:hover {
  background-color: #7d4bc7;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(142, 86, 220, 0.3);
}

.moni-team-cta-button:focus-visible {
  outline: 3px solid rgba(142, 86, 220, 0.6);
  outline-offset: 2px;
}

.moni-team-cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(142, 86, 220, 0.2);
}

/* Ensure consistent container alignment and text styling */
.moni-team-section .integrations-1-wrapper .row {
  margin: 0;
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0rem;
}

.moni-team-section .integrations-1-wrapper .col {
  display: flex;
  flex-direction: column;
}

.moni-team-section .integrations-1-wrapper .in_tool {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  width: 100%;
}

.moni-team-section .integrations-1-wrapper .in_tool-logo-wrap {
  flex-shrink: 0;
}

.moni-team-section .integrations-1-wrapper .in_tool-txt {
  flex: 1;
  text-align: left !important;
  min-width: 0;
}

.moni-team-section .integrations-1-wrapper .in_tool-txt h6 {
  text-align: left;
  font-size: 20px;
  margin: 0;
}

.moni-team-section .integrations-1-wrapper .in_tool-txt p {
  text-align: left;
  margin: 0;
}

@media (max-width: 768px) {
  .moni-team-cta-button {
    margin-top: 30px;
  }
}

/* ==============================================
   SETUP DIALOG OVERLAY
   ============================================== */

.setup-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.setup-dialog-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Hide global header when setup dialog is open */
body.setup-dialog-open .site-header {
  visibility: hidden;
  pointer-events: none;
}

.setup-dialog {
  display: flex;
  width: 100%;
  max-width: 1289px;
  min-height: 580px;
  max-height: 96vh;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e1e1e1;
  overflow: hidden;
  padding: 20px;
  gap: 20px;
}

/* ---- Sidebar ---- */

.setup-dialog-sidebar {
  display: flex;
  flex-direction: column;
  padding-top: 34px;
  padding-inline: 32px;
  border-radius: 16px;
  background-color: #f7f7f7;
}

.setup-dialog-sidebar-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  margin-bottom: 44px;
}

.setup-dialog-sidebar-logo-link {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.setup-dialog-sidebar-logo-link:hover {
  text-decoration: none;
  color: inherit;
}

.setup-dialog-sidebar-logo-link:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 2px;
  border-radius: 4px;
}

.setup-dialog-sidebar-logo {
  width: 121px;
  height: 28px;
  flex-shrink: 0;
}

.setup-dialog-sidebar-brand-sub {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3c4045;
  letter-spacing: 0.02em;
  margin-left: 31px;
}

/* Steps list */

.setup-dialog-steps {
  flex: 1;
}

.setup-dialog-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each step item with connector line */

.setup-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  position: relative;
}

/* Vertical connector line between steps */

.setup-step-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.setup-step-connector {
  width: 2px;
  height: 44px;
  background-color: #e0e0e0;
  margin-top: 8px;
}

.setup-step:last-child .setup-step-connector {
  visibility: hidden;
}

.setup-step.active .setup-step-connector {
  background-color: #c8b0e8;
}

.setup-step-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #3b3f44;
  background-color: transparent;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.setup-step.active .setup-step-icon {
  border-color: #8e56dc;
  color: #8e56dc;
}

.setup-step-icon svg {
  width: 31px;
  height: 31px;
}

.setup-step-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  padding-top: 2px;
}

.setup-step-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #170b28;
  line-height: 1.3;
}

.setup-step.active .setup-step-title {
  color: #8e56dc;
}

.setup-step-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #5c5c5c;
  line-height: 1.4;
}

/* Sidebar actions: Back + Exit */

.setup-dialog-sidebar-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  width: 100%;
}

.setup-dialog-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  margin-right: auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3c4045;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.setup-dialog-back:hover {
  color: #170b28;
  opacity: 0.8;
}

.setup-dialog-back:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Exit button */

.setup-dialog-exit {
  display: inline-block;
  width: fit-content;
  padding: 10px 0;
  margin-left: auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3c4045;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    text-decoration 0.2s ease;
  text-decoration: none;
}

.setup-dialog-exit:hover {
  color: #170b28;
  opacity: 0.8;
}

.setup-dialog-exit:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Main Content ---- */

.setup-dialog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 56px;
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
}

.setup-panels-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-height: 0;
  width: 100%;
}

.setup-dialog-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.setup-dialog-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #170b28;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.setup-dialog-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #5c5c5c;
  line-height: 1.55;
  max-width: 400px;
  margin: 0 0 28px 0;
}

/* Images row */

.setup-dialog-images {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  justify-content: center;
}

.setup-dialog-images img {
  object-fit: cover;
  border-radius: 16px;
}

/* Platform icons */

.setup-dialog-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.setup-dialog-platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.setup-dialog-platform-icon:hover {
  opacity: 1;
}

.setup-dialog-platform-icon img {
  height: 22px;
  width: auto;
}

.setup-dialog-platform-icon svg {
  width: 22px;
  height: 22px;
}

/* CTA Button */

.setup-dialog-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  padding: 10px 48px;
  background-color: #8e56dc;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
  margin-bottom: 28px;
}

.setup-dialog-cta:hover {
  background-color: #6a2fc4;
  box-shadow: 0 4px 20px rgba(123, 59, 214, 0.3);
  color: #ffffff;
  text-decoration: none;
}

.setup-dialog-cta:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 3px;
}

.setup-dialog-cta:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.setup-dialog-cta:disabled:hover {
  background-color: #8e56dc;
  box-shadow: none;
}

.setup-dialog-cta svg {
  width: 18px;
  height: 18px;
}

/* Segmented progress bar */

.setup-dialog-progress {
  display: flex;
  gap: 8px;
  width: 50%;
}

.setup-dialog-progress-segment {
  flex: 1;
  height: 5px;
  background-color: #e8e8e8;
  border-radius: 20px;
  overflow: hidden;
}

.setup-dialog-progress-segment.filled {
  background-color: #8e56dc;
}

/* ---- Step Panels ---- */

.setup-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.setup-panel.active {
  display: flex;
  flex: 1;
  min-height: 0;
  animation: setupSlideInForward 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.setup-panel.active.slide-back {
  animation-name: setupSlideInBack;
}

.setup-panel.active.no-animate {
  animation: none;
}

@keyframes setupSlideInForward {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes setupSlideInBack {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .setup-panel.active,
  .setup-panel.active.slide-back {
    animation: none;
  }
}

/* Panel top area (steps 2 & 3 headings) */

.setup-panel-top {
  max-width: 400px;
  text-align: left;
  margin-bottom: 28px;
}

.setup-panel-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #3b3f44;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.setup-panel-subheading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #707070;
  margin: 0;
  line-height: 1.5;
}

.setup-panel-divider {
  border-top: 2px solid #b5b5b5;
  margin: 16px 0 0 0;
}

/* Panel footer (CTA + progress) - pinned to bottom on all steps */

.setup-panel-footer {
  margin-top: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 24px;
}

/* Step 1: content area fills space above footer, content centered */

.setup-panel-step1-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
}

/* Step 3: content area fills space above footer, scrolls if needed */

.setup-panel-step3-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  overflow-y: auto;
}

/* ---- Step 2: Wrapper (panel top + site fields), fills space above footer ---- */

.setup-panel-step2-body {
  flex: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

/* ---- Step 2: Site fields ---- */

.setup-site-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.setup-site-row {
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.setup-site-input-wrap {
  flex: 1;
  min-width: 0;
}

.setup-remove-domain {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: 0;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  background: transparent;
  color: #555;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.setup-remove-domain:hover {
  border-color: #8e56dc;
  color: #8e56dc;
  background-color: rgba(142, 86, 220, 0.08);
}

.setup-remove-domain:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 2px;
}

.setup-remove-domain svg {
  width: 20px;
  height: 20px;
}

.setup-site-input {
  width: 100%;
  padding: 8px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease;
}

.setup-site-input::placeholder {
  color: #707070;
}

.setup-site-input:focus {
  border-color: #8e56dc;
}

.setup-site-input:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 1px;
}

.setup-site-error {
  display: block;
  margin-top: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #b71c1c;
  min-height: 1.4em;
}

.setup-site-error:empty {
  margin-top: 0;
  min-height: 0;
}

.setup-add-another {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
  max-width: 420px;
  padding: 8px 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #8e56dc;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.setup-add-another:hover {
  color: #5c28b0;
}

.setup-add-another:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 2px;
  border-radius: 4px;
}

.setup-add-another svg {
  width: 18px;
  height: 18px;
}

.setup-add-another:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  color: #9e9e9e;
}

.setup-add-another:disabled:hover {
  color: #9e9e9e;
}

/* ---- Step 3: Customize Layout ---- */

.setup-customize-layout {
  display: flex;
  gap: 20px;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.setup-customize-settings {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.setup-customize-previews {
  width: 230px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border: 0.54px solid #dddddd;
  gap: 14px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

/* Appearance cards */

.setup-appearance-card {
  border: 0.54px solid #dddddd;
  border-radius: 12px;
  padding: 0;
  margin: 0;
}

.setup-appearance-card-header {
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  background-color: #f4f4f4;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #170b28;
  border-bottom: 1px solid #f0f0f0;
}

.setup-appearance-card-icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.setup-appearance-card-body {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.setup-field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.setup-field-label {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
}

.setup-color-picker {
  height: 38px;
  min-width: 120px;
  box-sizing: border-box;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 5px;
  cursor: pointer;
  background: none;
}

.setup-color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
}

.setup-color-picker::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}

.setup-color-picker:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 1px;
}

.setup-restore-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #555555;
  background-color: #ffffff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 4px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.setup-restore-default:hover {
  border-color: #8e56dc;
  color: #8e56dc;
}

.setup-restore-default:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 2px;
}

/* Select */

.setup-select {
  min-width: 120px;
  box-sizing: border-box;
  padding: 6px 28px 6px 10px;
  font-size: 15px;
  font-weight: 500;
  color: #5d5f63;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
}

.setup-select:focus {
  border-color: #8e56dc;
}

.setup-select:focus-visible {
  outline: 2px solid #8e56dc;
  outline-offset: 1px;
}

/* Contrast warnings */

.setup-contrast-warning {
  width: fit-content;
  margin-top: -4px;
  margin-bottom: 4px;
}

.setup-contrast-warning small {
  white-space: nowrap;
  color: #856404;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Preview boxes */

.setup-preview-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.setup-preview-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #170b28;
}

.setup-preview-frame {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.setup-preview-frame--btn {
  position: relative;
  overflow: hidden;
}

/* Widget preview SVG container */

.widget-svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.widget-svg-container svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 313px;
}

/* Trigger button preview (window SVG container) */

.window-svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.window-svg-container svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  .setup-dialog {
    flex-direction: column;
    max-height: 80vh;
    min-height: auto;
  }

  .setup-dialog-sidebar {
    width: 100%;
    min-width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 20px;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    gap: 16px;
  }

  .setup-dialog-sidebar-header {
    margin-bottom: 0;
  }

  .setup-dialog-steps {
    display: none;
  }

  .setup-dialog-exit {
    margin-top: 0;
    margin-left: auto;
  }

  .setup-dialog-content {
    padding: 32px 24px;
  }

  .setup-dialog-title {
    font-size: 22px;
  }

  .setup-dialog-images {
    display: none;
  }

  .setup-dialog-cta {
    max-width: 320px;
  }

  .setup-customize-layout {
    flex-direction: column;
  }

  .setup-customize-previews {
    width: 100%;
    flex-direction: row;
  }

  .setup-customize-previews .setup-preview-box {
    flex: 1;
  }

  .setup-field-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .setup-dialog-overlay {
    padding: 12px;
  }

  .setup-dialog-images {
    flex-direction: column;
    align-items: center;
  }

  .setup-dialog-platforms {
    gap: 14px;
    flex-wrap: wrap;
  }

  .setup-dialog-cta {
    max-width: 100%;
  }

  .setup-customize-previews {
    flex-direction: column;
  }

  .setup-panel-step2-body {
    max-width: 100%;
  }

  .setup-site-row {
    max-width: 100%;
  }

  .setup-add-another {
    max-width: 100%;
  }
}

/* Accessibility Widget Main Heading */
.widget-lita2-header-section {
  max-width: 800px;
  margin-bottom: 60px;
  margin-top: 10px;
  width: 100%;
  text-align: left;
}

.accessibility-widget-main-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  color: #3b3f44;
  text-align: left;
  margin: 0;
  padding: 0;
  max-width: 100%;
  width: 100%;
}

.accessibility-widget-main-heading .accessibility-widget-highlight {
  color: #8353c6;
}

@media (max-width: 768px) {
  .accessibility-widget-main-heading {
    font-size: 2rem;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .accessibility-widget-main-heading {
    font-size: 1.75rem;
    line-height: 1.4;
  }
}
