.content-package {
  padding: 60px 0;
  background: #f1f6ff;
}

.content-package__header {
  max-width: 720px;
  margin: 0 auto 35px;
  text-align: center;
}

.content-package__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: var(--blue);
  margin: 0 0 12px;
}

.content-package__description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #6b717a;
  margin: 0;
}

@media screen and (min-width: 1200px) {
  .content-package__heading {
    font-size: 38px;
  }

  .content-package__description {
    font-size: 18px;
  }
}

/* Cards */

.content-package__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 35px;
  margin-bottom: 40px;
}

.content-package__card {
  position: relative;
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  transition: transform .3s ease;
}

.content-package__card:hover {
  transform: translateY(-8px);
}

.content-package__card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 21px;
  background: #fff;
  border: 1px solid var(--border-blue3);
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow .3s ease, border-color .3s ease;
}

.content-package__card:hover .content-package__card-inner {
  border-color: transparent;
  box-shadow: 0 28px 40px rgba(0, 42, 120, 0.16);
}

.content-package__card--featured {
  padding: 7px;
  border-radius: 25px;
  background: linear-gradient(120deg, #00daa6 0%, #00b3da 100%);
}

.content-package__card--featured .content-package__card-inner {
  border: none;
}

.content-package__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(95deg, #00daa6 0.2%, #00b3da 104.6%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.content-package__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.content-package__card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-package__plan {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #e9f7ff;
  border-radius: 15px;
}

.content-package__icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}

.content-package__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-package__plan-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.content-package__plan-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  margin: 0;
}

.content-package__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #26348b;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  width: fit-content;
}

.content-package__tag-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.content-package__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6dce3;
}

.content-package__price-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3;
  color: #000;
}

.content-package__price-unit {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #6b717a;
}

.content-package__included h4,
.content-package__included p:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  margin: 0 0 15px;
}

.content-package__included ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.content-package__included li {
  padding-left: 24px;
  background: url(../../static/images/content-package-check.svg) no-repeat left 4px;
  background-size: 16px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #000;
}

@media screen and (min-width: 1200px) {
  .content-package__plan-name {
    font-size: 26px;
  }

  .content-package__price-value {
    font-size: 30px;
  }

  .content-package__included li {
    font-size: 16px;
  }
}

.content-package__btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 15px;
  text-align: center;
  font-size: 15px !important;
}

@media screen and (min-width: 1200px) {
  .content-package__btn {
    padding: 15px !important;
    font-size: 15px !important;
  }
}

/* Toggle */

/*
 * Sizing/layout only — .btn-green (added via block.php) owns all visual
 * styling (background gradient, hover transition, border-radius), same
 * pattern used for .industry-leaders__cta and .real-impact__toggle.
 */
.content-package__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 15px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}

.content-package__toggle-icon {
  display: inline-flex;
  width: 15px;
  height: 12.5px;
  background: url(../../static/images/faq-double-chevron.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.content-package__toggle[aria-expanded="true"] .content-package__toggle-icon {
  transform: scaleY(-1);
}

/* Expanded section */

/*
 * Height is driven inline by view.js (measuring scrollHeight and animating
 * to it, then settling on 'auto' once open) since height:auto itself can't
 * be transitioned. The [hidden] attribute still handles the fully-closed
 * resting state and the no-JS fallback.
 */
.content-package__more {
  height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: height .4s ease, opacity .3s ease, margin-top .4s ease;
}

.content-package__more.is-open {
  margin-top: 40px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .content-package__more {
    transition: none;
  }
}

.content-package__heading-two {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3;
  color: var(--blue);
  margin: 0 0 20px;
}

.content-package__description-two {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #6b717a;
  margin-bottom: 30px;
}

.content-package__description-two p {
  margin: 0 0 15px;
}

.content-package__description-two p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
  .content-package__heading-two {
    font-size: 38px;
  }

  .content-package__description-two {
    font-size: 18px;
  }
}

.content-package__list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 25px;
}

@media screen and (min-width: 768px) {
  .content-package__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 1200px) {
  .content-package__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
  }
}

.content-package__list-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-package__list-heading {
  padding: 8px 0 8px 15px;
  border-left: 5px solid #01d9a6;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--blue);
  margin: 0;
}

.content-package__list-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #6b717a;
  margin: 0;
}

@media screen and (min-width: 1200px) {
  .content-package__list-heading {
    font-size: 24px;
  }

  .content-package__list-description {
    font-size: 18px;
  }
}

@media screen and (min-width:1024px) {
  .content-package {
  padding-bottom: 120px;
}
}