.packs-page,
.pack-detail {
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(16, 185, 129, 0.09),
      transparent 25%
    ),
    #f8fbfd;
  color: #0f2144;
  min-height: 100vh;
}
.packs-hero {
  padding: 48px 0 22px;
}
.packs-hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 44px;
  align-items: center;
}
.packs-kicker {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  background: #dcfce7;
  color: #07883e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.packs-hero h1 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 12px 0 8px;
  font-weight: 850;
}
.packs-hero h1 em {
  font-style: normal;
  color: #079447;
}
.packs-hero > div p,
.packs-hero-grid > div > p {
  font-size: 16px;
  color: #526581;
}
.packs-promises,
.detail-promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 26px;
}
.packs-promises span,
.detail-promises span {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 10px;
  align-items: center;
}
.packs-promises i,
.detail-promises i {
  grid-row: 1/3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8faf1;
  color: #08a454;
  font-size: 20px;
}
.packs-promises b,
.detail-promises b {
  font-size: 13px;
}
.packs-promises small,
.detail-promises small {
  color: #6c7d96;
}
.packs-help {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #effcf5, #e8f8f4);
  box-shadow: 0 12px 30px rgba(6, 78, 59, 0.08);
}
.packs-store {
  font-size: 70px;
  color: #08a454;
}
.packs-help strong {
  display: block;
}
.packs-help p {
  font-size: 13px !important;
  margin: 4px 0 12px;
}
.packs-catalog {
  padding-bottom: 42px;
}
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pack-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 150px;
  min-height: 265px;
  background: #fff;
  border: 1px solid #dce6ef;
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 33, 68, 0.04);
  transition: 0.2s;
}
.pack-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 33, 68, 0.1);
}
.pack-card.is-featured {
  border-color: #0ab45b;
}
.pack-ribbon {
  position: absolute;
  right: 16px;
  top: 0;
  transform: translateY(-50%);
  background: #079e4c;
  color: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.pack-heading {
  display: flex;
  gap: 13px;
}
.pack-icon {
  width: 52px;
  height: 52px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: color-mix(in srgb, var(--pack-accent) 12%, white);
  color: var(--pack-accent);
  font-size: 26px;
}
.pack-heading h2 {
  font-size: 19px;
  margin: 2px 0 4px;
}
.pack-heading p {
  font-size: 13px;
  color: #526581;
  line-height: 1.4;
  margin: 0;
}
.pack-card ul,
.detail-price ul,
.side-card ul {
  padding: 0;
  margin: 15px 0;
  list-style: none;
}
.pack-card li,
.detail-price li,
.side-card li {
  font-size: 13px;
  margin: 6px 0;
  color: #36506e;
}
.pack-card li i,
.detail-price li i,
.side-card li i {
  color: #08a454;
  margin-right: 7px;
}
.pack-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.pack-copy {
  display: flex;
  flex-direction: column;
}
.pack-price strong {
  font-size: 25px;
}
.pack-price small {
  color: #526581;
}
.pack-media {
  margin-left: 14px;
  display: grid;
  place-items: center;
}
.pack-media img,
.detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.pack-illustration,
.detail-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--pack-accent) 17%, white),
    #edf7f3
  );
  overflow: hidden;
}
.pack-illustration > i,
.detail-illustration > i {
  font-size: 64px;
  color: var(--pack-accent);
  z-index: 1;
}
.pack-illustration span {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  right: -25px;
  top: -20px;
}
.pack-illustration span + span {
  width: 70px;
  height: 70px;
  left: -18px;
  top: auto;
  bottom: -14px;
}
.packs-trust {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.7fr 1.8fr;
  align-items: center;
  background: #fff;
  border: 1px solid #dce6ef;
  border-radius: 16px;
  padding: 16px 20px;
  gap: 18px;
}
.packs-trust > span {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
}
.packs-trust i {
  grid-row: 1/3;
  font-size: 24px;
  color: #08a454;
}
.packs-trust b {
  font-size: 14px;
}
.packs-trust small {
  color: #6c7d96;
}
.packs-custom {
  display: flex !important;
  align-items: center;
  background: #effcf5;
  border-radius: 12px;
  padding: 10px;
}
.packs-custom .btn {
  margin-left: auto;
}
.pack-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 18px 0;
  color: #6c7d96;
  font-size: 13px;
}
.pack-breadcrumb a {
  text-decoration: none;
  color: #526581;
}
.detail-top {
  display: grid;
  grid-template-columns: 300px 1fr 310px;
  gap: 28px;
  align-items: stretch;
}
.detail-visual {
  min-height: 250px;
}
.detail-illustration {
  min-height: 250px;
}
.detail-illustration {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--pack-accent);
}
.detail-illustration strong {
  text-align: center;
  text-transform: capitalize;
}
.detail-intro {
  padding: 16px 0;
}
.detail-intro h1 {
  font-size: 38px;
  letter-spacing: -0.04em;
  margin: 10px 0 5px;
}
.detail-intro > p {
  color: #526581;
  font-size: 16px;
}
.detail-promises {
  margin-top: 22px;
  gap: 10px;
}
.detail-promises span {
  grid-template-columns: 40px 1fr;
}
.detail-promises i {
  width: 40px;
  height: 40px;
}
.detail-price,
.side-card,
.detail-section,
.detail-tabs,
.package-lead-card {
  background: #fff;
  border: 1px solid #dce6ef;
  border-radius: 15px;
}
.detail-price {
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-price .btn {
  width: 100%;
}
.detail-price p {
  color: #526581;
  margin: 0;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 20px;
  margin-top: 22px;
  align-items: start;
}
.detail-tabs {
  display: flex;
  padding: 4px 16px;
  margin-bottom: 12px;
  gap: 20px;
  position: sticky;
  top: 72px;
  z-index: 4;
}
.detail-tabs a {
  padding: 11px;
  text-decoration: none;
  color: #36506e;
  font-weight: 600;
}
.detail-tabs a:first-child {
  color: #079e4c;
  border-bottom: 2px solid #079e4c;
}
.detail-section {
  padding: 18px;
  margin-bottom: 14px;
}
.section-title {
  display: flex;
  justify-content: space-between;
}
.section-title h2,
.side-card h2,
.package-lead-card h2 {
  font-size: 19px;
  margin: 0;
}
.section-title p {
  color: #6c7d96;
  margin: 2px 0 14px;
}
.section-title > span {
  color: #079e4c;
  font-size: 13px;
}
.detail-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.detail-features article {
  display: flex;
  gap: 12px;
  padding: 15px;
  border: 1px solid #e3eaf1;
  border-radius: 11px;
}
.detail-features article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #e9faf1;
  color: #079e4c;
  border-radius: 10px;
  flex: none;
}
.detail-features h3 {
  font-size: 14px;
  margin: 2px 0;
}
.detail-features p {
  font-size: 12.5px;
  line-height: 1.45;
  color: #526581;
  margin: 0;
}
.detail-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.side-card,
.package-lead-card {
  padding: 18px;
}
.side-art {
  height: 100px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e9faf1, #f0f9ff);
  font-size: 58px;
  color: var(--pack-accent);
  border-radius: 12px;
}
.side-card details {
  border: 1px solid #e3eaf1;
  border-radius: 8px;
  margin-top: 7px;
  padding: 9px;
}
.side-card summary {
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}
.side-card details p {
  font-size: 12px;
  color: #526581;
  margin: 8px 0 0;
}
.detail-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border: 1px solid #bbf7d0;
  border-radius: 15px;
  background: linear-gradient(90deg, #eafaf1, #f4fcf8);
}
.detail-cta b,
.detail-cta small {
  display: block;
}
.detail-cta small {
  color: #526581;
}
.package-lead-card label {
  font-size: 12px;
  margin: 8px 0;
}
.package-lead-card textarea {
  min-height: 90px;
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.screenshot-grid img {
  width: 100%;
  border-radius: 8px;
}
.packs-empty {
  text-align: center;
  padding: 80px;
}
.packs-empty i {
  font-size: 45px;
  color: #94a3b8;
}
@media (max-width: 1200px) {
  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-top {
    grid-template-columns: 240px 1fr;
  }
  .detail-price {
    grid-column: 1/-1;
  }
  .detail-promises {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .packs-hero-grid,
  .detail-layout,
  .detail-top {
    grid-template-columns: 1fr;
  }
  .packs-promises,
  .detail-promises {
    grid-template-columns: repeat(2, 1fr);
  }
  .packs-grid {
    grid-template-columns: 1fr;
  }
  .packs-trust {
    grid-template-columns: 1fr 1fr;
  }
  .detail-features {
    grid-template-columns: 1fr 1fr;
  }
  .detail-tabs {
    overflow: auto;
  }
  .pack-media {
    display: none;
  }
}
@media (max-width: 520px) {
  .packs-hero h1,
  .detail-intro h1 {
    font-size: 30px;
  }
  .packs-promises,
  .detail-promises,
  .detail-features,
  .packs-trust {
    grid-template-columns: 1fr;
  }
  .pack-card {
    grid-template-columns: 1fr;
  }
  .packs-custom {
    grid-column: 1/-1;
  }
}
.packs-page > .packs-hero .container,
.packs-page > .packs-catalog,
.pack-detail > .container {
  width: min(1380px, calc(100% - 40px));
  max-width: none;
}
.pack-card {
  min-height: 300px;
}
.pack-card.no-image {
  grid-template-columns: 1fr;
}
.pack-card.no-image .pack-copy {
  padding-right: 78px;
  position: relative;
  z-index: 1;
}
.pack-card.no-image .pack-media {
  position: absolute;
  right: 18px;
  top: 82px;
  width: 82px;
  height: 120px;
  margin: 0;
  opacity: 0.13;
  pointer-events: none;
}
.pack-card.no-image .pack-illustration {
  min-height: 120px;
  background: transparent;
  overflow: visible;
}
.pack-card.no-image .pack-illustration > i {
  font-size: 70px;
}
.pack-card.no-image .pack-illustration span {
  display: none;
}
.pack-ribbon {
  top: 10px;
  transform: none;
  z-index: 3;
}
.pack-price em {
  display: block;
  margin-top: 2px;
  color: #079e4c;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}
.pack-footer {
  align-items: flex-end;
  flex-wrap: wrap;
}
.pack-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.pack-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 11px;
  font-size: 11px;
  white-space: nowrap;
}
.btn-whatsapp {
  border: 1px solid #19a95b !important;
  background: #fff !important;
  color: #07883e !important;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #eafaf1 !important;
  color: #056c33 !important;
}
.whatsapp-number {
  display: block;
  margin-top: 5px;
  color: #526581;
  text-align: center;
  font-size: 11px;
}
.packs-help .whatsapp-number {
  color: #36506e;
}
.detail-price .pack-ribbon {
  top: -12px;
}
.detail-price .whatsapp-number {
  margin-top: -5px;
}
.detail-cta-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.detail-cta-actions .btn {
  min-width: 140px;
}
@media (max-width: 1100px) {
  .packs-page > .packs-hero .container,
  .packs-page > .packs-catalog,
  .pack-detail > .container {
    width: min(100% - 28px, 960px);
  }
  .pack-card.no-image .pack-copy {
    padding-right: 55px;
  }
  .pack-actions {
    justify-content: flex-start;
  }
  .pack-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .packs-page > .packs-hero .container,
  .packs-page > .packs-catalog,
  .pack-detail > .container {
    width: calc(100% - 24px);
  }
  .pack-card.no-image .pack-copy {
    padding-right: 0;
  }
  .pack-card.no-image .pack-media {
    display: none;
  }
  .pack-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .pack-actions .btn {
    width: 100%;
  }
  .detail-cta {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }
  .detail-cta-actions {
    width: 100%;
  }
  .detail-cta-actions .btn {
    flex: 1;
  }
}

/* Industry Packs listing — image-led marketplace */
.packs-v2 {
  padding-bottom: 34px;
  background: linear-gradient(180deg, #f7fbfd 0, #fff 42%, #f7fbfd 100%);
}
.v2-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #eef9f5;
}
.v2-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.v2-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0.96) 32%,
    rgba(255, 255, 255, 0.45) 53%,
    rgba(255, 255, 255, 0.03) 75%
  );
}
.v2-hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.packs-v2 .container {
  width: min(1380px, calc(100% - 64px));
  max-width: none;
}
.v2-copy {
  width: min(640px, 53%);
  position: relative;
  z-index: 2;
}
.v2-copy h1 {
  margin: 12px 0 8px;
  color: #0b2044;
  font-size: 45px;
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 850;
}
.v2-copy h1 em {
  font-style: normal;
  color: #08a454;
}
.v2-copy > p {
  max-width: 650px;
  margin: 0;
  color: #314967;
  font-size: 15px;
  line-height: 1.52;
}
.v2-promises {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.v2-promises > span {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  column-gap: 8px;
}
.v2-promises i {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0f8eb;
  color: #08a454;
  font-size: 17px;
}
.v2-promises b {
  color: #10213e;
  font-size: 11px;
}
.v2-promises small {
  color: #60738d;
  font-size: 9.5px;
}
.v2-handnote {
  position: absolute;
  left: 54%;
  top: 54px;
  color: #0c2345;
  font:
    600 25px/1.18 "Segoe Print",
    "Comic Sans MS",
    cursive;
  transform: rotate(-5deg);
  text-align: center;
  text-shadow: 0 1px #fff;
}
.v2-handnote i {
  display: block;
  width: 110px;
  height: 38px;
  margin: 2px auto 0;
  border-bottom: 4px solid #08a454;
  border-radius: 50%;
  transform: rotate(-8deg);
}
.v2-live-card {
  position: absolute;
  right: 1.5%;
  top: 52px;
  width: 166px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 35px rgba(7, 39, 64, 0.17);
  backdrop-filter: blur(8px);
}
.v2-live-card small,
.v2-live-card strong,
.v2-live-card > b {
  display: block;
}
.v2-live-card small {
  color: #60738d;
  font-size: 9px;
}
.v2-live-card strong {
  margin: 3px 0 11px;
  color: #0d2142;
  font-size: 13px;
}
.v2-live-card > span {
  height: 55px;
  display: flex;
  align-items: end;
  gap: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #dce7eb;
}
.v2-live-card > span i {
  width: 13px;
  height: 18px;
  background: #42c881;
  border-radius: 2px 2px 0 0;
}
.v2-live-card > span i:nth-child(2) {
  height: 29px;
}
.v2-live-card > span i:nth-child(3) {
  height: 24px;
}
.v2-live-card > span i:nth-child(4) {
  height: 39px;
}
.v2-live-card > span i:nth-child(5) {
  height: 34px;
}
.v2-live-card > span i:nth-child(6) {
  height: 50px;
  background: #08a454;
}
.v2-live-card > b {
  margin-top: 9px;
  color: #087c40;
  font-size: 10px;
}
.v2-catalog {
  position: relative;
  padding-top: 0;
  padding-bottom: 18px;
}
.v2-discovery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 12px;
}
.v2-discovery label { position: relative; display: block; flex: 1; max-width: 480px; }
.v2-discovery label > i { position: absolute; left: 14px; top: 50%; z-index: 1; transform: translateY(-50%); color: #60738b; }
.v2-discovery input { width: 100%; height: 44px; margin: 0 !important; padding: 9px 14px 9px 40px !important; border: 1px solid #dbe6ee; border-radius: 12px; background: #fff; color: #102341; font-size: 13px; }
.v2-discovery > span { color: #60738b; font-size: 12px; white-space: nowrap; }
.v2-filters {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 9px;
  margin: -18px auto 22px;
  position: relative;
  z-index: 3;
}
.v2-filters button {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #dbe6ee;
  border-radius: 999px;
  background: #fff;
  color: #19304f;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 5px 15px rgba(15, 33, 68, 0.04);
  cursor: pointer;
  white-space: nowrap;
}
.v2-filters button i {
  margin-right: 5px;
}
.v2-filters button.active {
  border-color: var(--filter-accent, #08a454);
  background: var(--filter-accent, #08a454);
  color: #fff;
  box-shadow: 0 8px 20px rgba(8, 164, 84, 0.2);
}
.v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.v2-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe5ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 33, 68, 0.055);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.v2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(15, 33, 68, 0.11);
}
.v2-card.featured {
  border-color: #0ab45b;
}
.v2-card[hidden] {
  display: none;
}
.v2-popular {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 3;
  padding: 5px 12px;
  border-radius: 999px;
  background: #079e4c;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.v2-card-media {
  height: 176px;
  overflow: hidden;
  background: color-mix(in srgb, var(--card-accent) 9%, #f5f8fa);
}
.v2-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.v2-card:hover .v2-card-media img {
  transform: scale(1.025);
}
.v2-card-media > span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--card-accent);
  font-size: 58px;
}
.v2-card-body {
  position: relative;
  padding: 24px 20px 18px;
}
.v2-card-icon {
  position: absolute;
  left: 20px;
  top: -29px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--card-accent);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 5px 14px rgba(15, 33, 68, 0.18);
}
.v2-card-body h2 {
  margin: 0 0 3px;
  color: #0c2041;
  font-size: 21px;
  letter-spacing: -0.025em;
}
.v2-card-body > p {
  height: 40px;
  margin: 0;
  color: #526781;
  font-size: 12.5px;
  line-height: 1.35;
}
.v2-card-body ul {
  min-height: 94px;
  margin: 13px 0 10px;
  padding: 0;
  list-style: none;
}
.v2-card-body li {
  margin: 6px 0;
  color: #405775;
  font-size: 12.5px;
}
.v2-card-body li i {
  margin-right: 8px;
  color: #09a956;
}
.v2-price {
  min-height: 53px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.v2-price strong {
  color: #0b2143;
  font-size: 27px;
  letter-spacing: -0.03em;
}
.v2-price > span {
  color: #526781;
  font-size: 12px;
}
.v2-price small {
  display: block;
  flex-basis: 100%;
  align-self: flex-end;
  margin-left: -100%;
  transform: translate(100%, 17px);
  color: #078d46;
  font-size: 10px;
  font-weight: 750;
}
.v2-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.v2-actions .btn {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 750;
}
.v2-trust {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 0.7fr 0.8fr 2fr;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid #dce6ed;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 33, 68, 0.035);
}
.v2-trust > div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.v2-trust > div > i {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e9faf1;
  color: #08a454;
  font-size: 18px;
}
.v2-trust b,
.v2-trust small {
  display: block;
}
.v2-trust b {
  color: #102341;
  font-size: 11px;
}
.v2-trust small {
  color: #60738d;
  font-size: 9px;
}
.v2-contact {
  padding: 9px 10px;
  border-radius: 11px;
  background: #effbf5;
}
.v2-contact > a {
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid #19a95b;
  border-radius: 8px;
  color: #087c40;
  text-decoration: none;
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
}
.v2-journey {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 0;
  padding: 22px 36px !important;
  border-radius: 18px;
  background: linear-gradient(110deg, #073a30, #08734e 58%, #055c43);
  color: #fff;
  box-shadow: 0 15px 36px rgba(6, 78, 59, 0.15);
}
.v2-journey h2 {
  margin: 0 0 3px;
  font-size: 22px;
}
.v2-journey p {
  margin: 0;
  color: #d8f3e7;
  font-size: 12px;
}
.v2-journey > div:nth-child(2) {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.v2-journey .btn {
  min-width: 150px;
  padding: 10px 18px;
  font-size: 11px;
}
.v2-journey > span {
  margin-left: 22px;
  font:
    600 21px/1.15 "Segoe Print",
    "Comic Sans MS",
    cursive;
  transform: rotate(-4deg);
  text-align: center;
}
@media (max-width: 1180px) {
  .v2-handnote,
  .v2-live-card {
    display: none;
  }
  .v2-copy {
    width: 62%;
  }
  .v2-filters {
    grid-template-columns: repeat(4, 1fr);
  }
  .v2-grid {
    gap: 18px;
  }
  .v2-trust {
    grid-template-columns: repeat(4, 1fr);
  }
  .v2-contact {
    grid-column: 1/-1;
  }
  .v2-card-body > p {
    height: auto;
    min-height: 40px;
  }
}
@media (max-width: 900px) {
  .v2-hero {
    height: auto;
    min-height: 480px;
  }
  .v2-hero > img {
    object-position: 70% center;
  }
  .v2-hero-shade {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.91) 56%,
      rgba(255, 255, 255, 0.15) 100%
    );
  }
  .v2-hero-content {
    padding: 55px 0;
  }
  .v2-copy {
    width: 70%;
  }
  .v2-copy h1 {
    font-size: 38px;
  }
  .v2-promises {
    grid-template-columns: 1fr 1fr;
  }
  .v2-grid {
    grid-template-columns: 1fr 1fr;
  }
  .v2-filters {
    display: flex;
    overflow: auto;
    padding-bottom: 3px;
  }
  .v2-filters button {
    min-width: max-content;
    flex: 1;
  }
  .v2-trust {
    grid-template-columns: 1fr 1fr;
  }
  .v2-journey > span {
    display: none;
  }
}
@media (max-width: 640px) {
  .packs-v2 .container {
    width: calc(100% - 24px);
  }
  .v2-hero {
    min-height: 560px;
  }
  .v2-hero > img {
    object-position: 70% center;
    opacity: 0.3;
  }
  .v2-hero-shade {
    background: rgba(255, 255, 255, 0.74);
  }
  .v2-copy {
    width: 100%;
  }
  .v2-copy h1 {
    font-size: 35px;
  }
  .v2-copy > p {
    font-size: 14px;
  }
  .v2-grid {
    grid-template-columns: 1fr;
  }
  .v2-card-media {
    height: 190px;
  }
  .v2-trust {
    grid-template-columns: 1fr;
  }
  .v2-journey {
    align-items: stretch;
    flex-direction: column;
    padding: 22px !important;
  }
  .v2-journey > div:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 0;
  }
  .v2-journey .btn {
    min-width: 0;
  }
  .v2-price small {
    margin-left: -80px;
    transform: translate(80px, 17px);
  }
}
.packs-v2 .v2-price {
  min-height: 58px;
  display: block;
  margin-bottom: 10px;
}
.packs-v2 .v2-price > span {
  margin-left: 4px;
}
.packs-v2 .v2-price small {
  display: block;
  margin: 0;
  transform: none;
  line-height: 1.4;
}

/* Reference-matched public package detail */
.pack-detail-v2 {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 8% 22%,
      rgba(38, 194, 112, 0.07),
      transparent 25%
    ),
    #f7fbfd;
  color: #102341;
}
.pd2-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-bottom: 1px solid #dce8e3;
}
.pd2-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pd2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0.96) 37%,
    rgba(255, 255, 255, 0.36) 61%,
    rgba(255, 255, 255, 0.05) 100%
  );
}
.pd2-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 36px;
  align-items: center;
  min-height: 420px;
}
.pd2-intro {
  width: 55%;
  min-width: 600px;
  padding: 32px 0;
}
.pd2-intro h1 {
  margin: 10px 0 7px;
  color: #0c2143;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 850;
}
.pd2-intro h1 em {
  color: #0a9e4e;
  font-style: normal;
}
.pd2-intro > p {
  max-width: 620px;
  margin: 0;
  color: #344e70;
  font-size: 16px;
  line-height: 1.5;
}
.pd2-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 28px;
}
.pd2-promises span {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 9px;
  align-items: center;
}
.pd2-promises i {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e4f8ed;
  color: #08a655;
  font-size: 19px;
}
.pd2-promises b,
.pd2-promises small {
  display: block;
}
.pd2-promises b {
  font-size: 12px;
}
.pd2-promises small {
  color: #647790;
  font-size: 10px;
}
.pd2-price {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px 22px;
  border: 1px solid #dbe7e2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 15px 42px rgba(18, 45, 35, 0.14);
}
.pd2-popular {
  position: absolute;
  right: 14px;
  top: -12px;
  padding: 5px 13px;
  border-radius: 999px;
  background: #079b4c;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.pd2-price-value {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.pd2-price-value strong {
  font-size: 35px;
  line-height: 1;
  color: #0d2041;
  letter-spacing: -0.04em;
}
.pd2-price-value span {
  font-size: 12px;
  color: #526881;
}
.pd2-trial {
  color: #1765e8;
  font-size: 14px;
}
.pd2-price > p {
  margin: 0 0 3px;
  color: #526881;
  font-size: 12px;
}
.pd2-price > .btn {
  width: 100%;
  min-height: 39px;
  padding: 7px 12px;
  font-size: 11px;
}
.btn-whatsapp {
  border: 1px solid #13aa5c;
  background: #fff;
  color: #078c45;
}
.btn-whatsapp:hover {
  background: #ecfaf2;
  color: #066c39;
}
.pd2-price ul,
.pd2-side-card ul {
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}
.pd2-price li,
.pd2-side-card li {
  margin: 6px 0;
  color: #526881;
  font-size: 11px;
}
.pd2-price li i,
.pd2-side-card li i {
  margin-right: 8px;
  color: #09a956;
}
.pd2-page {
  padding-top: 0;
  padding-bottom: 30px;
}
.pd2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  align-items: start;
}
.pd2-main {
  min-width: 0;
}
.pd2-tabs {
  position: sticky;
  top: 72px;
  z-index: 8;
  display: flex;
  gap: 18px;
  margin: -1px 0 14px;
  padding: 4px 14px;
  border: 1px solid #dbe5ea;
  border-radius: 0 0 13px 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(15, 33, 68, 0.045);
  backdrop-filter: blur(8px);
}
.pd2-tabs a {
  padding: 11px 16px;
  border-bottom: 2px solid transparent;
  color: #38506d;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.pd2-tabs a.active,
.pd2-tabs a:hover {
  border-color: #09a956;
  color: #078e45;
}
.pd2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid #dce6eb;
  border-radius: 14px;
  background: #fff;
}
.pd2-stats span {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 9px;
  padding: 0 13px;
  border-right: 1px solid #e5ecef;
}
.pd2-stats span:last-child {
  border: 0;
}
.pd2-stats i {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8faf1;
  color: #08a655;
}
.pd2-stats b {
  font-size: 12px;
}
.pd2-stats small {
  color: #647790;
  font-size: 9px;
}
.pd2-panel,
.pd2-side-card,
.pd2-contact {
  margin-bottom: 14px;
  border: 1px solid #dce6eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(15, 33, 68, 0.035);
}
.pd2-panel {
  padding: 17px;
}
.pd2-panel > header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 12px;
}
.pd2-panel h2,
.pd2-side-card h2,
.pd2-testimonials h2 {
  margin: 0;
  color: #102341;
  font-size: 18px;
  font-weight: 820;
}
.pd2-panel header p,
.pd2-testimonials header p {
  margin: 1px 0 0;
  color: #63758d;
  font-size: 11px;
}
.pd2-panel header > a {
  color: #079448;
  text-decoration: none;
  font-size: 10px;
  font-weight: 750;
}
.pd2-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pd2-features article {
  display: flex;
  gap: 11px;
  min-height: 82px;
  padding: 12px;
  border: 1px solid #e0e8ed;
  border-radius: 10px;
  background: #fff;
}
.pd2-features article > i {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e7faf0;
  color: #08a957;
  font-size: 18px;
}
.pd2-features h3 {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 800;
}
.pd2-features p {
  margin: 0;
  color: #5f7188;
  font-size: 9.5px;
  line-height: 1.35;
}
.pd2-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pd2-screens figure {
  margin: 0;
}
.pd2-screens figure > img,
.pd2-screen-mock {
  width: 100%;
  height: 142px;
  border: 1px solid #d8e3e8;
  border-radius: 8px;
  object-fit: cover;
  overflow: hidden;
}
.pd2-screens figcaption {
  padding: 6px 2px;
}
.pd2-screens figcaption b,
.pd2-screens figcaption small {
  display: block;
}
.pd2-screens figcaption b {
  font-size: 10px;
}
.pd2-screens figcaption small {
  color: #68798d;
  font-size: 8.5px;
}
.pd2-screen-mock {
  position: relative;
  display: grid;
  grid-template-columns: 25% 75%;
  padding-top: 12px;
  background: #f6fafc;
}
.pd2-screen-mock > span {
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: #fff;
  border-bottom: 1px solid #e2e9ed;
}
.pd2-screen-mock > aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px 7px;
  background: #0e2b38;
}
.pd2-screen-mock > aside i {
  height: 5px;
  border-radius: 4px;
  background: #48606b;
}
.pd2-screen-mock > main {
  display: block;
  padding: 12px 10px;
}
.pd2-screen-mock > main > b {
  display: block;
  width: 42%;
  height: 7px;
  margin-bottom: 9px;
  border-radius: 4px;
  background: #1c3047;
}
.pd2-screen-mock section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.pd2-screen-mock section i {
  height: 28px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e1e9ed;
}
.pd2-screen-mock footer {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 54px;
  margin-top: 8px;
  padding: 7px;
  background: #fff;
  border: 1px solid #e1e9ed;
  border-radius: 4px;
}
.pd2-screen-mock footer i {
  flex: 1;
  background: #15ad5d;
  border-radius: 2px 2px 0 0;
}
.pd2-screen-mock footer i:nth-child(1) {
  height: 22%;
}
.pd2-screen-mock footer i:nth-child(2) {
  height: 58%;
}
.pd2-screen-mock footer i:nth-child(3) {
  height: 38%;
}
.pd2-screen-mock footer i:nth-child(4) {
  height: 75%;
}
.pd2-testimonials {
  margin: 25px 3px 18px;
}
.pd2-testimonials > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.pd2-testimonials blockquote {
  margin: 0;
  padding: 16px;
  border: 1px solid #dfe8ec;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(15, 33, 68, 0.035);
}
.pd2-testimonials blockquote > p {
  min-height: 48px;
  margin: 0;
  color: #405572;
  font-size: 10px;
  font-style: italic;
}
.pd2-testimonials footer {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}
.pd2-testimonials footer > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e3e9ef;
  font-size: 10px;
  font-weight: 800;
}
.pd2-testimonials footer b,
.pd2-testimonials footer small {
  display: block;
  font-size: 9px;
}
.pd2-testimonials footer small {
  color: #6a7a8d;
  font-weight: 500;
}
.pd2-testimonials footer i {
  color: #f5ad00;
  font-size: 9px;
  font-style: normal;
}
.pd2-side {
  padding-top: 14px;
}
.pd2-side-card {
  padding: 16px;
}
.pd2-side-callout {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(120deg, #edf9f2, #eef8fb);
}
.pd2-side-callout > i {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  font-size: 29px;
}
.pd2-side-callout b {
  font-size: 10px;
}
.pd2-side-callout small {
  color: #6b7d92;
  font-size: 8px;
}
.pd2-contact {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 8px;
  padding: 15px;
  background: linear-gradient(120deg, #effbf4, #f8fffb);
}
.pd2-contact > i {
  grid-row: 1/2;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  color: #08a655;
}
.pd2-contact b,
.pd2-contact small {
  display: block;
}
.pd2-contact b {
  font-size: 10px;
}
.pd2-contact small {
  color: #63768d;
  font-size: 8px;
}
.pd2-contact > a {
  grid-column: 1/-1;
  padding: 8px;
  border: 1px solid #10a755;
  border-radius: 7px;
  color: #087d3e;
  text-align: center;
  text-decoration: none;
  font-size: 10px;
  font-weight: 750;
}
.pd2-side-card details {
  margin-top: 7px;
  border: 1px solid #dfe7ec;
  border-radius: 7px;
  background: #fff;
}
.pd2-side-card summary {
  padding: 8px 10px;
  color: #263d5c;
  font-size: 9.5px;
  font-weight: 700;
  cursor: pointer;
}
.pd2-side-card details p {
  padding: 0 10px 9px;
  margin: 0;
  color: #62748b;
  font-size: 9px;
}
.pd2-bottom-cta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 8px;
  padding: 23px 32px;
  border-radius: 16px;
  background: linear-gradient(105deg, #064831, #087c52 68%, #046846);
  color: #fff;
  overflow: hidden;
}
.pd2-bottom-cta h2 {
  margin: 0;
  font-size: 19px;
}
.pd2-bottom-cta p {
  margin: 2px 0 0;
  color: #d5f2e4;
  font-size: 10px;
}
.pd2-bottom-cta > div:nth-child(2) {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.pd2-bottom-cta .btn {
  min-height: 38px;
  padding: 8px 15px;
  font-size: 10px;
}
.pd2-bottom-cta > span {
  margin-left: 15px;
  font:
    600 17px/1.2 "Segoe Print",
    "Comic Sans MS",
    cursive;
  transform: rotate(-4deg);
  text-align: center;
}
.pack-detail-v2 .package-lead-card {
  padding: 16px;
}
.pack-detail-v2 .package-lead-card form {
  gap: 8px;
}
.pack-detail-v2 .package-lead-card label {
  font-size: 10px;
}
@media (max-width: 1100px) {
  .pd2-intro {
    width: 65%;
    min-width: 0;
  }
  .pd2-hero-grid {
    grid-template-columns: minmax(0, 1fr) 290px;
  }
  .pd2-bottom-cta > span {
    display: none;
  }
}
@media (max-width: 850px) {
  .pd2-hero {
    padding: 30px 0;
  }
  .pd2-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .pd2-intro {
    width: 100%;
    padding: 15px 0;
  }
  .pd2-price {
    max-width: 430px;
  }
  .pd2-layout {
    grid-template-columns: 1fr;
  }
  .pd2-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .pd2-side-card,
  .pd2-contact {
    margin: 0;
  }
  .pd2-side .package-lead-card {
    grid-column: 1/-1;
  }
  .pd2-tabs {
    top: 68px;
  }
  .pd2-stats {
    grid-template-columns: 1fr 1fr;
  }
  .pd2-stats span:nth-child(2) {
    border: 0;
  }
  .pd2-bottom-cta > div:nth-child(2) {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .pd2-hero-overlay {
    background: rgba(255, 255, 255, 0.88);
  }
  .pd2-intro h1 {
    font-size: 36px;
  }
  .pd2-promises {
    grid-template-columns: 1fr;
  }
  .pd2-tabs {
    overflow: auto;
    gap: 3px;
  }
  .pd2-tabs a {
    padding: 10px;
    white-space: nowrap;
  }
  .pd2-features,
  .pd2-screens,
  .pd2-testimonials > div,
  .pd2-side {
    grid-template-columns: 1fr;
  }
  .pd2-stats {
    grid-template-columns: 1fr;
  }
  .pd2-stats span {
    border: 0;
    border-bottom: 1px solid #e5ecef;
    padding: 9px;
  }
  .pd2-bottom-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }
  .pd2-bottom-cta > div:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 851px) and (max-width: 1120px) {
  body:has(.packs-v2) .site-header .container,
  body:has(.pack-detail-v2) .site-header .container {
    max-width: 100%;
    padding-inline: 24px;
  }
  body:has(.packs-v2) .site-header .kb-brand,
  body:has(.pack-detail-v2) .site-header .kb-brand {
    gap: 5px;
    font-size: 16px;
  }
  body:has(.packs-v2) .site-header .kb-brand img,
  body:has(.pack-detail-v2) .site-header .kb-brand img {
    width: 34px;
    height: 34px;
  }
  body:has(.packs-v2) .site-header .kb-brand small,
  body:has(.pack-detail-v2) .site-header .kb-brand small {
    font-size: 7px;
  }
  body:has(.packs-v2) .site-header .nav-link,
  body:has(.pack-detail-v2) .site-header .nav-link {
    padding: 8px 7px !important;
    font-size: 11px;
  }
  body:has(.packs-v2) .site-header .nav-actions,
  body:has(.pack-detail-v2) .site-header .nav-actions {
    gap: 6px !important;
  }
  body:has(.packs-v2) .site-header .nav-actions .btn,
  body:has(.pack-detail-v2) .site-header .nav-actions .btn {
    min-height: 37px;
    padding: 7px 11px;
    font-size: 11px;
  }
}
@media (max-width: 850px) and (min-width: 601px) {
  .pd2-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Final reference spacing and database theme colors */
.packs-v2 .v2-hero {
  height: 350px;
}
.packs-v2 .v2-copy {
  width: min(620px, 52%);
}
.packs-v2 .v2-copy h1 {
  margin: 10px 0 7px;
  font-size: 40px;
}
.packs-v2 .v2-copy > p {
  font-size: 13px;
  line-height: 1.48;
}
.packs-v2 .v2-promises {
  gap: 12px;
  margin-top: 18px;
}
.packs-v2 .v2-promises > span {
  grid-template-columns: 36px 1fr;
}
.packs-v2 .v2-promises i {
  width: 36px;
  height: 36px;
  font-size: 16px;
}
.packs-v2 .v2-handnote {
  top: 39px;
  font-size: 23px;
}
.packs-v2 .v2-live-card {
  right: 1.8%;
  top: 40px;
  width: 145px;
  padding: 13px;
  border-radius: 12px;
}
.packs-v2 .v2-live-card small {
  font-size: 8px;
}
.packs-v2 .v2-live-card > strong {
  margin: 2px 0 0;
  font-size: 15px;
}
.packs-v2 .v2-live-card > .v2-live-growth {
  margin: 0 0 3px;
  color: #08974a;
  font-size: 8px;
}
.packs-v2 .v2-live-card > .v2-live-bars {
  height: 48px;
  padding-bottom: 5px;
}
.packs-v2 .v2-live-card > .v2-live-bars i {
  width: 11px;
}
.packs-v2 .v2-live-items {
  padding-top: 7px;
}
.packs-v2 .v2-live-items > b {
  display: block;
  margin-bottom: 4px;
  color: #102341;
  font-size: 9px;
}
.packs-v2 .v2-live-items > span {
  display: grid;
  grid-template-columns: 15px 1fr auto;
  margin: 3px 0;
  color: #2c4361;
  font-size: 8px;
}
.packs-v2 .v2-live-items em {
  font-style: normal;
}
.packs-v2 .v2-live-items strong {
  font-size: 8px;
}
.packs-v2 .v2-filters {
  margin-top: 0;
  margin-bottom: 18px;
}
.packs-v2 .v2-card-media {
  height: 128px;
}
.packs-v2 .v2-card-icon {
  top: -25px;
  width: 50px;
  height: 50px;
  border-width: 3px;
  background-color: var(--card-accent);
  color: #fff;
  font-size: 21px;
}
.packs-v2 .v2-card-body {
  padding: 38px 18px 15px;
}
.packs-v2 .v2-card-body h2 {
  font-size: 19px;
}
.packs-v2 .v2-card-body > p {
  height: 35px;
  font-size: 11px;
}
.packs-v2 .v2-card-body ul {
  min-height: 78px;
  margin: 10px 0 8px;
}
.packs-v2 .v2-card-body li {
  margin: 5px 0;
  font-size: 11px;
}
.packs-v2 .v2-price {
  min-height: 49px;
  margin-bottom: 7px;
}
.packs-v2 .v2-price strong {
  font-size: 25px;
}
.packs-v2 .v2-actions .btn {
  min-height: 37px;
}
.packs-v2 .v2-grid {
  gap: 18px 22px;
}
.packs-v2 .v2-trust {
  margin-top: 18px;
}
.packs-v2 .v2-journey {
  padding: 19px 32px !important;
}
.pack-detail-v2 .pd2-hero {
  min-height: 350px;
}
.pack-detail-v2 .pd2-hero-grid {
  min-height: 350px;
  padding-top: 24px;
}
.pd2-breadcrumb {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4e6480;
  font-size: 9px;
}
.pd2-breadcrumb a {
  color: #087e41;
  text-decoration: none;
}
.pd2-breadcrumb i {
  font-size: 7px;
}
.pack-detail-v2 .pd2-intro {
  padding: 25px 0;
}
.pack-detail-v2 .pd2-intro h1 {
  font-size: 40px;
}
.pack-detail-v2 .pd2-intro > p {
  font-size: 14px;
}
.pack-detail-v2 .pd2-promises {
  margin-top: 20px;
}
.pack-detail-v2 .pd2-promises i {
  width: 40px;
  height: 40px;
  font-size: 17px;
}
.pack-detail-v2 .pd2-price {
  gap: 5px;
  padding: 18px 19px;
}
.pack-detail-v2 .pd2-price-value strong {
  font-size: 31px;
}
.pack-detail-v2 .pd2-trial {
  font-size: 12px;
}
.pack-detail-v2 .pd2-price > p {
  font-size: 10.5px;
}
.pack-detail-v2 .pd2-price > .btn {
  min-height: 35px;
  padding: 6px 10px;
}
.pack-detail-v2 .pd2-price li {
  margin: 4px 0;
}
.pack-detail-v2 .pd2-tabs {
  margin-bottom: 12px;
}
.pack-detail-v2 .pd2-panel {
  padding: 15px;
}
.pack-detail-v2 .pd2-features article {
  min-height: 76px;
  padding: 10px;
}
.pack-detail-v2 .pd2-features article > i {
  background: color-mix(in srgb, var(--pack-accent) 12%, white);
  color: var(--pack-accent);
}
.pack-detail-v2 .pd2-promises i,
.pack-detail-v2 .pd2-stats i,
.pack-detail-v2 .pd2-contact > i {
  color: var(--pack-accent);
}
@media (max-width: 1180px) {
  .packs-v2 .v2-live-card {
    display: block;
  }
  .packs-v2 .v2-handnote {
    display: block;
  }
}
@media (max-width: 960px) {
  .packs-v2 .v2-live-card,
  .packs-v2 .v2-handnote {
    display: none;
  }
  .packs-v2 .v2-copy {
    width: 66%;
  }
}
@media (max-width: 900px) {
  .packs-v2 .v2-hero {
    height: auto;
    min-height: 460px;
  }
  .pack-detail-v2 .pd2-hero,
  .pack-detail-v2 .pd2-hero-grid {
    min-height: 0;
  }
  .pd2-breadcrumb {
    position: static;
    grid-column: 1/-1;
    margin-bottom: -12px;
  }
}
