/* Scoped styles for pricing-panel and best-panel from v2h.zip */
.pp-v2h-wrap {
  --v2h-orange: #f45b16;
  --v2h-black: #101010;
  --v2h-text: #2e3340;
  --v2h-line: #e8ebf0;
  --v2h-shadow: 0 12px 34px rgba(16,16,16,.075);
  --v2h-radius-xl: 20px;
  --v2h-radius-lg: 16px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.pp-v2h-wrap .pricing-panel,
.pp-v2h-wrap .best-panel {
  border: 1px solid var(--v2h-line);
  border-radius: var(--v2h-radius-xl);
  background: #fff;
  box-shadow: var(--v2h-shadow);
}

.pp-v2h-wrap .pricing-panel {
  position: relative;
  z-index: 0;
  padding: 18px 48px 26px;
  background: #fff;
}

.pp-v2h-wrap .pricing-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--v2h-radius-xl);
  background: url('bg_prices.jpg') center bottom / cover no-repeat;
  opacity: .5;
  pointer-events: none;
}

.pp-v2h-wrap .pricing-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--v2h-radius-xl);
  background: linear-gradient(to bottom, #fff 0%, #fff 35%, transparent 100%);
  pointer-events: none;
}

.pp-v2h-wrap .section-heading {
  text-align: center;
}

.pp-v2h-wrap .section-heading h2 {
  margin: 0;
  color: var(--v2h-black) !important;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: .95;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.pp-v2h-wrap .section-heading p {
  margin: 4px 0 0;
  color: #4f5869 !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.pp-v2h-wrap .section-heading .section-lead {
  color: var(--v2h-orange) !important;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.pp-v2h-wrap .price-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.pp-v2h-wrap .price-tile {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  grid-template-areas: "icon text price" "icon text save";
  align-items: center;
  column-gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--v2h-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(16,16,16,.045);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.pp-v2h-wrap .price-tile:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: -15px;
  width: 1px;
  height: 50%;
  background: var(--v2h-line);
}

.pp-v2h-wrap .price-tile:hover,
.pp-v2h-wrap .price-tile.is-selected {
  border-color: rgba(244,91,22,.55);
  box-shadow: 0 14px 32px rgba(244,91,22,.12);
}

.pp-v2h-wrap .price-tile.is-selected {
  transform: translateY(-2px);
}

.pp-v2h-wrap .price-tile:hover {
  transform: translateY(-2px) scale(1.03);
}

.pp-v2h-wrap .price-tile-featured {
  border-color: var(--v2h-orange);
  background: radial-gradient(circle at 50% 10%, rgba(244,91,22,.10), transparent 46%), #fff;
}

.pp-v2h-wrap .best-badge {
  position: absolute;
  top: -1px;
  left: 65%;
  transform: translateX(-50%);
  min-width: 116px;
  padding: 7px 14px 8px;
  border-radius: 0 0 9px 9px;
  background: linear-gradient(180deg, #ff7a24, var(--v2h-orange));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(244,91,22,.22);
}

.pp-v2h-wrap .price-icon {
  grid-area: icon;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff3eb;
}

.pp-v2h-wrap .price-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--v2h-orange);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-v2h-wrap .price-copy {
  grid-area: text;
}

.pp-v2h-wrap .price-copy h3 {
  margin: 0;
  color: var(--v2h-black) !important;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.05;
}

.pp-v2h-wrap .price-copy span {
  display: inline-flex;
  margin-top: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #f0f2f6;
  color: #6f7889 !important;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.pp-v2h-wrap .price {
  grid-area: price;
  align-self: end;
  color: var(--v2h-black) !important;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.pp-v2h-wrap .price-tile-featured .price {
  color: var(--v2h-orange) !important;
}

.pp-v2h-wrap .save-pill {
  grid-area: save;
  justify-self: start;
  align-self: start;
  margin-top: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--v2h-orange) !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.pp-v2h-wrap .best-panel {
  margin-top: 12px;
  padding: 16px 32px 20px;
}

.pp-v2h-wrap .compact-heading {
  margin-bottom: 14px;
}

.pp-v2h-wrap .benefit-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.pp-v2h-wrap .benefit-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 13px;
  border-right: 1px solid var(--v2h-line);
}

.pp-v2h-wrap .benefit-item:first-child { padding-left: 4px; }
.pp-v2h-wrap .benefit-item:last-child { border-right: 0; padding-right: 4px; }

.pp-v2h-wrap .benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff3eb;
}

.pp-v2h-wrap .benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--v2h-orange);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.pp-v2h-wrap .benefit-item:hover .benefit-icon svg {
  transform: scale(1.22);
}

.pp-v2h-wrap .benefit-item h3 {
  margin: 0 0 4px;
  color: var(--v2h-black) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.pp-v2h-wrap .benefit-item p {
  margin: 0;
  color: #606979 !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

/* Tablet */
@media (max-width: 1100px) {
  .pp-v2h-wrap .pricing-panel { padding: 18px 20px 24px; }
  .pp-v2h-wrap .price-strip { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pp-v2h-wrap .price-tile::after { display: none; }
  .pp-v2h-wrap .benefit-strip { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pp-v2h-wrap .benefit-item { border: 1px solid var(--v2h-line); border-radius: 14px; padding: 14px; }
  .pp-v2h-wrap .best-panel { padding: 16px 20px 20px; }
}

/* Mobile */
@media (max-width: 640px) {
  .pp-v2h-wrap .pricing-panel,
  .pp-v2h-wrap .best-panel { padding: 17px 14px; }
  .pp-v2h-wrap .section-heading h2 { font-size: 28px; }
  .pp-v2h-wrap .section-heading .section-lead { font-size: 17px; }
  .pp-v2h-wrap .price-strip { grid-template-columns: 1fr; gap: 10px; }
  .pp-v2h-wrap .price-tile { grid-template-columns: 46px 1fr auto; min-height: 96px; padding: 16px 14px; }
  .pp-v2h-wrap .price-icon { width: 43px; height: 43px; }
  .pp-v2h-wrap .price { font-size: 21px; }
  .pp-v2h-wrap .benefit-strip { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 430px) {
  .pp-v2h-wrap .price-tile {
    grid-template-columns: 43px 1fr;
    grid-template-areas: "icon text" "price save";
    row-gap: 10px;
  }
  .pp-v2h-wrap .price { justify-self: start; }
}
