.product-hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(4rem, 10vw, 6rem);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(123, 104, 238, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(45, 188, 220, 0.25), transparent 50%),
    linear-gradient(155deg, #001849 0%, #003fa4 42%, #0050cb 72%, #006dba 100%);
  color: #f8f7ff;
}

.product-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--spacing-container-margin, 1.25rem);
}

@media (min-width: 1024px) {
  .product-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.5rem;
  }
}

.product-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: rgba(248, 247, 255, 0.72);
  margin-bottom: 0.75rem;
}

.product-hero__breadcrumb a {
  color: rgba(248, 247, 255, 0.88);
  text-decoration: none;
  transition: color 0.15s ease;
}

.product-hero__breadcrumb a:hover {
  color: #ffffff;
}

.product-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.product-hero__badge--accent {
  border-color: rgba(111, 251, 187, 0.45);
  background: rgba(0, 108, 73, 0.35);
  color: #d4ffe8;
}

.product-hero__title {
  font-family: Geist, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
}

.product-hero__tagline {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(248, 247, 255, 0.82);
}

.product-hero__pricing {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  max-width: 22rem;
}

.product-hero__price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-hero__price-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.product-hero__price-amount {
  font-family: Geist, system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #6ffbbe;
  letter-spacing: -0.02em;
  line-height: 1;
}

.product-hero__currency-toggle {
  display: inline-flex;
  flex-shrink: 0;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.product-hero__currency-option {
  min-width: 2.8rem;
  border: 0;
  border-radius: 3px;
  background: transparent;
  padding: 0.3rem 0.55rem;
  color: rgba(248, 247, 255, 0.75);
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-hero__currency-option.is-active {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.product-hero__btn {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.35rem;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.product-hero__btn .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.product-hero__btn--buy {
  border-color: transparent;
  background: #facc15;
  color: #3b2f00;
}

.product-hero__btn--buy:hover {
  background: #f6c90e;
  color: #2f2500;
  opacity: 0.95;
}

.product-hero__btn--demo {
  border-color: #087f5b;
  background: #16a875;
  color: #ffffff;
}

.product-hero__btn--demo:hover {
  border-color: #066c4d;
  background: #0b9168;
  color: #ffffff;
}

.product-hero__btn--docs {
  border-color: #0050a8;
  background: #006dba;
  color: #ffffff;
}

.product-hero__btn--docs:hover {
  border-color: #00429b;
  background: #005ba8;
  color: #ffffff;
}

.product-hero__btn--icon {
  width: 2.75rem;
  min-width: 2.75rem;
  padding-left: 0;
  padding-right: 0;
}

.product-hero__btn--icon.add-cart-btn:hover,
.product-hero__btn--icon.add-cart-btn:focus-visible {
  width: auto;
  min-width: 2.75rem;
  padding-left: 1rem;
  padding-right: 1.15rem;
}


.product-hero__visual {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  aspect-ratio: 4 / 3;
  min-height: 16rem;
}

.product-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-hero__visual-placeholder {
  display: flex;
  height: 100%;
  min-height: 16rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.product-hero__visual-icon {
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
}

.product-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.product-hero__glow--one {
  top: -4rem;
  right: 10%;
  width: 18rem;
  height: 18rem;
  background: rgba(123, 104, 238, 0.35);
}

.product-hero__glow--two {
  bottom: -3rem;
  left: 5%;
  width: 14rem;
  height: 14rem;
  background: rgba(45, 188, 220, 0.28);
}

.product-hero__loading,
.product-hero__error {
  max-width: 42rem;
  margin: 0 auto;
  padding: 4rem var(--spacing-container-margin, 1.25rem);
  text-align: center;
}

.product-hero__error a {
  color: var(--color-pd-primary);
}

/* ── Product perks (below hero) ── */
.product-perks {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 149, 206, 0.08), transparent 32%),
    radial-gradient(circle at 88% 100%, rgba(123, 104, 238, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #faf8ff 50%, #f5f8fc 100%);
  border-bottom: 1px solid rgba(0, 80, 168, 0.08);
}

.product-perks::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(0, 109, 186, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
  pointer-events: none;
}

.product-perks__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--spacing-container-margin, 1.25rem);
}

.product-perks__header {
  width: 100%;
  max-width: none;
  margin: 0 0 2rem;
  text-align: center;
}

.product-perks__eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(0, 109, 186, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
  color: #006dba;
  font-family: "Catamaran", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-perks__heading {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.product-perks__subtitle {
  max-width: 42rem;
  margin: 0.85rem auto 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.product-perks__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .product-perks__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.product-perks__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 0;
  padding: 1.1rem 1.2rem 1rem;
  border: 1px solid rgba(0, 109, 186, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(11, 26, 61, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-perks__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(90deg, #006dba, #7b68ee);
  opacity: 0.85;
}

.product-perks__card--payment::before {
  background: linear-gradient(90deg, #006dba, #0095ce);
}

.product-perks__card--source::before {
  background: linear-gradient(90deg, #5f4dd2, #7b68ee);
}

.product-perks__card--install::before {
  background: linear-gradient(90deg, #087f5b, #16a875);
}

.product-perks__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 109, 186, 0.2);
  box-shadow: 0 14px 36px rgba(0, 66, 155, 0.12);
}

.product-perks__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 5px;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(11, 26, 61, 0.12);
}

.product-perks__card--payment .product-perks__icon {
  background: linear-gradient(135deg, #006dba, #00429b);
}

.product-perks__card--source .product-perks__icon {
  background: linear-gradient(135deg, #6b5ce7, #5f4dd2);
}

.product-perks__card--install .product-perks__icon {
  background: linear-gradient(135deg, #16a875, #087f5b);
}

.product-perks__icon .material-symbols-outlined {
  font-size: 1.35rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.product-perks__title {
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.product-perks__text {
  margin: 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
}

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

  .product-perks__card:hover {
    transform: none;
  }
}

/* ── Key highlights ── */
.product-highlights {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding: clamp(3.5rem, 7vw, 5rem) max(20px, calc((100vw - 1200px) / 2));
  background-color: #f4f8ff;
  background-image:
    linear-gradient(to right, rgba(0, 109, 186, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 109, 186, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 10% 18%, rgba(0, 149, 206, 0.16), transparent 34%),
    radial-gradient(circle at 90% 82%, rgba(123, 104, 238, 0.16), transparent 36%),
    radial-gradient(circle at 50% -10%, rgba(0, 109, 186, 0.08), transparent 48%),
    linear-gradient(155deg, #f8fbff 0%, #eef4ff 46%, #f6f2ff 100%);
  background-size: 52px 52px, 52px 52px, auto, auto, auto, auto;
  border-top: 1px solid rgba(0, 80, 168, 0.08);
  border-bottom: 1px solid rgba(0, 80, 168, 0.08);
}

.product-highlights::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    radial-gradient(rgba(0, 109, 186, 0.16) 1.5px, transparent 1.5px),
    linear-gradient(135deg, rgba(123, 104, 238, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 109, 186, 0.04) 50%, rgba(0, 109, 186, 0.04) 75%, transparent 75%);
  background-size: 20px 20px, 40px 40px;
  background-position: 0 0, 0 0;
  opacity: 0.42;
  pointer-events: none;
}

.product-highlights::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -7rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(123, 104, 238, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.75rem rgba(123, 104, 238, 0.05),
    0 0 0 5.5rem rgba(0, 109, 186, 0.035),
    -28rem 36rem 0 -4rem rgba(0, 149, 206, 0.05),
    -28rem 36rem 0 0 rgba(0, 149, 206, 0.08);
  pointer-events: none;
}

.product-highlights__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.product-highlights__header {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.product-highlights__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(0, 109, 186, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #006dba;
  font-family: "Catamaran", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-highlights__title {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.product-highlights__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #006dba, #00a4d6);
}

.product-highlights__subtitle {
  width: 100%;
  max-width: none;
  margin: 1rem 0 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: clamp(1rem, 2vw, 1.06rem);
  line-height: 1.75;
}

.product-highlights__grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .product-highlights__card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 1.4rem) / 2);
    justify-self: center;
  }
}

@media (min-width: 900px) {
  .product-highlights__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .product-highlights__card {
    grid-column: span 2;
    width: auto;
    justify-self: stretch;
  }

  .product-highlights__card:last-child:nth-child(odd) {
    grid-column: span 2;
    width: auto;
    justify-self: stretch;
  }

  .product-highlights__card:last-child:nth-child(3n + 1) {
    grid-column: 3 / span 2;
  }

  .product-highlights__card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 2 / span 2;
  }

  .product-highlights__card:last-child:nth-child(3n + 2) {
    grid-column: span 2;
  }
}

.product-highlights__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding: 1.6rem 1.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 2px rgba(11, 26, 61, 0.04),
    0 12px 32px rgba(11, 26, 61, 0.07);
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-highlights__card::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 5px;
  background: rgba(0, 109, 186, 0.06);
  z-index: 0;
}

.product-highlights__card:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(0, 109, 186, 0.16);
  box-shadow:
    0 4px 12px rgba(11, 26, 61, 0.06),
    0 18px 42px rgba(0, 66, 155, 0.1);
}

.product-highlights__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.product-highlights__card-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 5px;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(11, 26, 61, 0.12);
  position: relative;
  z-index: 1;
}

.product-highlights__card:nth-child(3n + 1) .product-highlights__card-icon {
  background: linear-gradient(135deg, #006dba, #00429b 85%);
}

.product-highlights__card:nth-child(3n + 2) .product-highlights__card-icon {
  background: linear-gradient(135deg, #6b5ce7, #5f4dd2 85%);
}

.product-highlights__card:nth-child(3n) .product-highlights__card-icon {
  background: linear-gradient(135deg, #16a875, #087f5b 85%);
}

.product-highlights__card-icon .material-symbols-outlined {
  font-size: 1.45rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.product-highlights__card-index {
  color: rgba(11, 26, 61, 0.28);
  font-family: "Dosis", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.product-highlights__card-title {
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.3;
}

.product-highlights__card-desc {
  margin: 0.55rem 0 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: 0.94rem;
  line-height: 1.65;
}

.product-highlights__list {
  margin: 0.65rem 0 0;
  padding: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border: 1px solid rgba(0, 109, 186, 0.08);
  border-radius: 5px;
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9ff 100%);
}

.product-highlights__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #1a2b4a;
  font-family: "Catamaran", sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
}

.product-highlights__check {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 5px;
  background: linear-gradient(135deg, #16a875 0%, #087f5b 100%);
  box-shadow: 0 2px 8px rgba(8, 127, 91, 0.28);
}

.product-highlights__check .material-symbols-outlined {
  display: block;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 20;
}

@media (max-width: 639px) {
  .product-highlights__list {
    padding: 0.9rem;
  }
}

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

  .product-highlights__card:hover {
    transform: none;
  }
}
