/* Featured logos */
.featured-flex {
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.featured-flex img {
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
  max-height: 38px;
  object-fit: contain;
}
.featured-flex img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Title */
.title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.15;
}

/* How it works — step cards */
.step-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pry-color);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* Comparison table */
.comparison-table {
  background-color: #ffffff;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}
.comparison-table .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  min-width: 33.33%;
}
.comparison-table .column-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  max-height: 64px;
  height: 100%;
  width: 100%;
  padding: 8px 12px;
}
.comparison-table .column-inner:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.03);
}
.comparison-table .column.column-two .column-inner:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
.comparison-table .column-inner p {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.comparison-table .column-one .column-inner {
  justify-content: flex-start;
}
.comparison-table .column-one .column-inner p {
  text-align: left;
}
.column-inner i {
  font-size: 22px;
}
.comparison-table .column.column-two {
  border-radius: 8px;
  border: 2px solid var(--pry-color);
  background: var(--pry-light-color);
  box-shadow: 0px 20px 40px 0px rgba(82, 101, 175, 0.2);
}
.comparison-table .column.column-two .subtitle {
  color: var(--pry-color);
}

/* Benefits section */
.benefits-sleep {
  background-image: url('/img/sleep/benefits.webp');
  background-size: cover;
  background-position: center;
}
.sleep-overlay {
  background: linear-gradient(90deg, rgba(0, 25, 59, 0.88) 35%, rgba(0, 15, 59, 0.15) 100%);
  min-height: 100%;
}
.num {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  height: 40px;
  width: 40px;
  min-width: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
}
.benefits-sleep p {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

/* Accordion */
/* .accordion-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0 !important;
}
.accordion-button {
  font-size: 17px;
  color: var(--pry-color);
  background: none !important;
  font-weight: 600;
}
.accordion-button.collapsed {
  font-size: 17px;
  color: #111;
  font-weight: 500;
}
.accordion-button:not(.collapsed) {
  box-shadow: none;
} */
.accordion-body {
  font-size: 18px;
}
.subtitle {
  font-size: 28px;
  line-height: 38px
}
@media screen and (min-width: 768px) {
  .comparison-table {
    padding: 0;
  }
  .comparison-table-inner {
    width: 100%;
    max-width: 900px;
    padding: 24px 32px;
  }
  .comparison-table .column-one {
    width: 50%;
    min-width: 50%;
  }
  .comparison-table .column-two,
  .comparison-table .column-three {
    width: 25%;
    min-width: 25%;
  }
  .comparison-table .column-one .column-inner p,
  .comparison-table .column-inner.heading p {
    font-size: 16px;
    line-height: 1.3;
  }
  .comparison-table .column-inner {
    min-height: 60px;
    max-height: 60px;
  }
  .comparison-table-button-container a {
    max-width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 28px;
  }
  .subtitle {
    font-size: 17px;
  }
  .featured-flex {
    gap: 20px;
  }
  .featured-flex img {
    max-width: 76px;
  }
}

@media screen and (max-width: 535px) {
  .subtitle {
    font-size: 16px;
  }
}
