body.product-detail {
  background: var(--fx-bg);
  color: var(--fx-text);
  font-family: var(--fx-font);
  background-image: radial-gradient(120% 120% at 10% 15%, rgba(210, 35, 42, 0.08), transparent),
    radial-gradient(140% 120% at 85% 10%, rgba(31, 35, 41, 0.08), transparent 60%);
  background-attachment: fixed;
}

body.product-detail--inspior {
  --inspior-ink: #111a2b;
  --inspior-muted: rgba(17, 26, 43, 0.7);
  --inspior-highlight: #ff5964;
  --inspior-iris: #5b6dff;
  --inspior-surface: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 243, 253, 0.9) 55%, rgba(244, 237, 243, 0.86) 100%);
  --inspior-surface-strong: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 241, 252, 0.94) 45%, rgba(246, 237, 243, 0.9) 100%);
  --inspior-border: rgba(94, 120, 160, 0.35);
  --inspior-border-soft: rgba(94, 120, 160, 0.22);
  --inspior-border-glass: rgba(255, 255, 255, 0.65);
  --inspior-grid-line: rgba(17, 24, 39, 0.035);
  --inspior-grid-line-strong: rgba(17, 24, 39, 0.08);
  --inspior-shadow-lg: 0 40px 80px rgba(12, 18, 32, 0.16);
  --inspior-shadow-md: 0 26px 54px rgba(12, 18, 32, 0.14);
  --inspior-shadow-sm: 0 18px 38px rgba(12, 18, 32, 0.1);
  background-color: #eef1f8;
  background-image:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(239, 243, 253, 0.92)),
    repeating-linear-gradient(0deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 46px),
    repeating-linear-gradient(90deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 46px);
  background-attachment: fixed;
  color: var(--inspior-ink);
}

.product-detail--inspior .product-main {
  position: relative;
  z-index: 1;
}

.product-detail--inspior .product-main::before {
  content: '';
  position: absolute;
  inset: -60px -60px 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(236, 240, 250, 0.55)),
    radial-gradient(140% 180% at 12% -20%, rgba(255, 89, 100, 0.18), transparent 62%),
    radial-gradient(160% 180% at 92% -10%, rgba(91, 109, 255, 0.16), transparent 60%),
    repeating-linear-gradient(0deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 60px);
  opacity: 0.9;
}

.product-detail--inspior .product-main::after {
  content: '';
  position: absolute;
  inset: 12% 15% 4% 15%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(255, 255, 255, 0.6), transparent 70%),
    radial-gradient(120% 140% at 50% 100%, rgba(91, 109, 255, 0.18), transparent 70%);
  filter: blur(36px);
  opacity: 0.55;
}

.product-main {
  max-width: min(1180px, 94vw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4.5rem, 7.5vw, 7rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3.4rem, 6.5vw, 5rem);
}

.product-hero {
  background: var(--fx-surface);
  border-radius: clamp(28px, 6vw, 40px);
  box-shadow: var(--fx-shadow-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.product-detail--inspior .product-hero {
  background: var(--inspior-surface-strong);
  border: 1px solid var(--inspior-border);
  box-shadow: var(--inspior-shadow-lg);
  color: var(--inspior-ink);
  isolation: isolate;
  backdrop-filter: blur(6px);
}

.product-detail--inspior .product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 240, 252, 0.65)),
    radial-gradient(110% 120% at 90% 0%, rgba(255, 89, 100, 0.24), transparent 55%),
    radial-gradient(120% 150% at 0% 30%, rgba(91, 109, 255, 0.22), transparent 70%),
    repeating-linear-gradient(0deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(90deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 42px);
  mix-blend-mode: lighten;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.product-detail--inspior .product-hero::after {
  background:
    radial-gradient(120% 160% at 88% 18%, rgba(255, 89, 100, 0.22), transparent 64%),
    radial-gradient(140% 150% at 10% 18%, rgba(91, 109, 255, 0.18), transparent 70%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.2), rgba(91, 109, 255, 0.08));
  opacity: 0.85;
}

.product-detail--inspior .product-hero__eyebrow {
  color: rgba(210, 35, 42, 0.78);
}

.product-detail--inspior .product-hero__title {
  color: var(--inspior-ink);
  text-shadow: 0 10px 24px rgba(18, 22, 36, 0.12);
}

.product-detail--inspior .product-hero__lead {
  color: var(--inspior-muted);
}

.product-detail--inspior .product-hero__visual::before {
  content: none;
}

.product-detail--inspior .product-hero__visual > * {
  position: relative;
  z-index: 1;
}

.product-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.product-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
}

.product-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  color: var(--fx-accent);
  margin: 0;
}

.product-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 2vw + 2rem, 3.2rem);
  font-weight: 700;
}

.product-hero__lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--fx-muted);
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-hero__visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  place-items: center;
}

.product-hero__image-stack {
  width: min(420px, 100%);
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.6rem);
}

.product-hero__image-card {
  margin: 0;
  display: grid;
  gap: 0.75rem;
  background: transparent;
  border-radius: 22px;
  box-shadow: var(--fx-shadow-sm);
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.product-hero__image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.product-hero__image-card figcaption {
  margin: 0;
  font-size: 0.92rem;
  color: var(--fx-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-hero__media {
  width: min(420px, 100%);
  min-height: clamp(220px, 30vw, 320px);
}

.media-slot.media-slot--active + .product-hero__orb {
  display: none;
}

.product-hero__orb {
  width: clamp(220px, 32vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 18px 48px rgba(255, 255, 255, 0.65), 0 30px 60px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  position: relative;
}

.product-hero__glyph {
  width: 52%;
  max-width: 200px;
  color: var(--fx-accent);
}

.product-hero__glyph svg {
  width: 100%;
  height: auto;
  display: block;
}

.product-hero--inspior::after {
  background: radial-gradient(circle at top right, rgba(210, 35, 42, 0.28), transparent 60%),
    linear-gradient(135deg, rgba(210, 35, 42, 0.08), rgba(210, 35, 42, 0.25));
}

.product-hero--fluidxsuite::after {
  background: radial-gradient(circle at top right, rgba(210, 35, 42, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(210, 35, 42, 0.06), rgba(210, 35, 42, 0.22));
}

.product-hero--chips::after {
  background: radial-gradient(circle at top right, rgba(210, 35, 42, 0.24), transparent 65%),
    linear-gradient(135deg, rgba(210, 35, 42, 0.05), rgba(210, 35, 42, 0.2));
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.product-metric {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  border-radius: 22px;
  box-shadow: var(--fx-shadow-sm);
  padding: clamp(1.4rem, 3vw, 1.8rem);
  display: grid;
  gap: 0.55rem;
  border: 1px solid rgba(210, 35, 42, 0.1);
}

.product-detail--inspior .product-metric {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 235, 241, 0.82));
  border: 1px solid var(--inspior-border);
  box-shadow: var(--inspior-shadow-sm);
  position: relative;
  overflow: hidden;
}

.product-detail--inspior .product-metric::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at -10% 0%, rgba(210, 35, 42, 0.22), transparent 60%),
    radial-gradient(120% 140% at 110% 120%, rgba(124, 105, 190, 0.16), transparent 70%);
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}

.product-detail--inspior .product-metric > * {
  position: relative;
  z-index: 1;
}

.product-metric__label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fx-muted);
}

.product-metric__value {
  margin: 0;
  font-size: clamp(1.4rem, 1.3vw + 1rem, 2rem);
  font-weight: 600;
}

.product-detail--inspior .product-metric__label {
  color: rgba(210, 35, 42, 0.74);
}

.product-detail--inspior .product-metric__value {
  color: var(--inspior-ink);
}

.product-section {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
}

.product-section__intro {
  display: grid;
  gap: clamp(0.9rem, 2.2vw, 1.4rem);
  max-width: 62ch;
}

.product-section--integrations {
  padding: clamp(2.4rem, 5vw, 3.6rem);
  border-radius: clamp(28px, 6vw, 36px);
  background: linear-gradient(135deg, rgba(210, 35, 42, 0.08), rgba(31, 35, 41, 0.04));
  box-shadow: var(--fx-shadow-sm);
  position: relative;
  overflow: hidden;
}

.product-section--integrations::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(210, 35, 42, 0.16), transparent 58%),
    radial-gradient(circle at bottom left, rgba(31, 35, 41, 0.12), transparent 60%);
  pointer-events: none;
  opacity: 0.75;
}

.product-detail--inspior .product-section--integrations {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(245, 234, 244, 0.84));
  border: 1px solid var(--inspior-border);
  box-shadow: var(--inspior-shadow-md);
}

.product-detail--inspior .product-section--integrations::after {
  background:
    radial-gradient(120% 150% at 92% 10%, rgba(210, 35, 42, 0.18), transparent 60%),
    radial-gradient(140% 150% at 12% 100%, rgba(124, 105, 190, 0.18), transparent 65%),
    radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.42), transparent 65%);
  opacity: 0.85;
}

.product-section--integrations > * {
  position: relative;
  z-index: 1;
}

.product-section__title {
  margin: 0;
  font-size: clamp(1.8rem, 1.2vw + 1.4rem, 2.4rem);
  font-weight: 650;
}

.product-section__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fx-muted);
}

.product-section--overview {
  gap: clamp(1.6rem, 3vw, 2.4rem);
  padding: clamp(2.6rem, 5vw, 3.6rem);
  border-radius: clamp(28px, 6vw, 40px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(210, 35, 42, 0.07));
  box-shadow: var(--fx-shadow-md);
  position: relative;
  overflow: hidden;
}

.product-section--overview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(210, 35, 42, 0.14), transparent 60%),
    radial-gradient(circle at bottom left, rgba(31, 35, 41, 0.14), transparent 65%);
  mix-blend-mode: multiply;
  opacity: 0.7;
  pointer-events: none;
}

.product-section--overview > * {
  position: relative;
  z-index: 1;
}

.product-detail--inspior .product-section__title {
  color: var(--inspior-ink);
}

.product-detail--inspior .product-section__lead {
  color: var(--inspior-muted);
}

.product-detail--inspior .product-section--overview {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(247, 235, 241, 0.84));
  border: 1px solid var(--inspior-border);
  box-shadow: var(--inspior-shadow-md);
}

.product-detail--inspior .product-section--overview::after {
  background:
    radial-gradient(120% 140% at 90% 0%, rgba(210, 35, 42, 0.18), transparent 58%),
    radial-gradient(120% 160% at 0% 80%, rgba(124, 105, 190, 0.16), transparent 62%);
  opacity: 0.85;
}

.product-section--configurations {
  padding: clamp(2.4rem, 4.8vw, 3.4rem);
  border-radius: clamp(26px, 5vw, 38px);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.97), rgba(210, 35, 42, 0.08));
  border: 1px solid rgba(210, 35, 42, 0.16);
  box-shadow: 0 28px 52px rgba(17, 19, 23, 0.14);
  position: relative;
  overflow: hidden;
}

.product-section--configurations::after {
  content: '';
  position: absolute;
  inset: -20% -8% -18% 42%;
  background: radial-gradient(circle at 20% 40%, rgba(210, 35, 42, 0.22), transparent 65%),
    radial-gradient(circle at 86% 18%, rgba(31, 35, 41, 0.16), transparent 70%);
  opacity: 0.65;
  pointer-events: none;
}

.product-section--configurations > * {
  position: relative;
  z-index: 1;
}

.product-detail--inspior .product-section--configurations {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.97), rgba(247, 235, 241, 0.86));
  border: 1px solid var(--inspior-border);
  box-shadow: var(--inspior-shadow-lg);
}

.product-detail--inspior .product-section--configurations::after {
  background:
    radial-gradient(140% 180% at 20% 40%, rgba(210, 35, 42, 0.22), transparent 62%),
    radial-gradient(160% 160% at 86% 18%, rgba(124, 105, 190, 0.18), transparent 65%);
  opacity: 0.75;
}

.product-showcase {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.6rem, 5vw, 3.8rem);
  border-radius: clamp(28px, 6vw, 36px);
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.24), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(210, 35, 42, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(31, 35, 41, 0.92), rgba(31, 35, 41, 0.72));
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}

.product-showcase::before {
  content: '';
  position: absolute;
  inset: -40% 45% 40% -25%;
  background: radial-gradient(circle at center, rgba(210, 35, 42, 0.4), transparent 70%);
  filter: blur(60px);
}

.product-showcase::after {
  content: '';
  position: absolute;
  inset: 40% -30% -45% 55%;
  background: radial-gradient(circle at center, rgba(111, 207, 151, 0.32), transparent 70%);
  filter: blur(70px);
}

.product-showcase > * {
  position: relative;
  z-index: 1;
}

.product-showcase__copy {
  display: grid;
  gap: 1rem;
  max-width: 48ch;
}

.product-showcase__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.product-showcase__title {
  margin: 0;
  font-size: clamp(2rem, 2vw + 1.6rem, 2.8rem);
  font-weight: 650;
}

.product-showcase__lead {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.product-showcase__note {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 201, 76, 0.9);
}

.product-showcase__media {
  width: min(520px, 100%);
  justify-self: center;
}

.product-overview {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  border-radius: clamp(26px, 6vw, 40px);
  background:
    radial-gradient(circle at 0% 10%, rgba(255, 255, 255, 0.85), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(210, 35, 42, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 231, 236, 0.75));
  box-shadow: 0 35px 60px rgba(31, 35, 41, 0.12);
}

.product-overview__copy {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
  max-width: 68ch;
}

.product-overview__lead {
  display: grid;
  gap: clamp(1rem, 2.6vw, 1.6rem);
}

.product-overview__paragraph {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(31, 35, 41, 0.82);
}

.product-overview__paragraph strong {
  font-weight: 650;
  color: rgba(134, 32, 37, 0.95);
}

.product-overview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.product-overview__actions .btn {
  min-width: 200px;
  justify-content: center;
}

.product-overview__copy .product-callouts {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.product-overview__media {
  position: relative;
}

.product-overview__media .media-slot__content {
  border-radius: clamp(20px, 4vw, 28px);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(31, 35, 41, 0.18);
  background: linear-gradient(135deg, rgba(17, 19, 23, 0.12), rgba(17, 19, 23, 0.4));
}

.product-overview__media video {
  display: block;
  width: 100%;
  height: auto;
}

.product-overview__media figure {
  margin: 0;
}

.product-callouts {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.product-callouts--inline {
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(0.75rem, 2vw, 1.1rem);
}

.product-callout {
  margin: 0;
  padding: clamp(1.1rem, 2.6vw, 1.6rem);
  border-radius: 18px;
  border: 1px solid var(--fx-border-soft);
  background: linear-gradient(140deg, rgba(210, 35, 42, 0.06), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(113, 30, 35, 0.82);
}

.product-detail--inspior .product-callout {
  border-color: rgba(210, 35, 42, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(210, 35, 42, 0.12));
  box-shadow: 0 18px 36px rgba(17, 19, 23, 0.12);
}

.product-callouts--inline .product-callout {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.3rem);
}

.product-detail--inspior .product-section--compare {
  position: relative;
  border-radius: clamp(28px, 6vw, 40px);
  background: var(--inspior-surface);
  border: 1px solid var(--inspior-border);
  box-shadow: var(--inspior-shadow-lg);
  padding: clamp(2.6rem, 5vw, 3.6rem);
  overflow: hidden;
}

.product-detail--inspior .product-section--compare::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(255, 89, 100, 0.18), transparent 60%),
    radial-gradient(140% 140% at 5% 100%, rgba(91, 109, 255, 0.16), transparent 70%),
    repeating-linear-gradient(0deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 46px),
    repeating-linear-gradient(90deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 46px);
  opacity: 0.9;
  pointer-events: none;
}

.product-compare {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.8rem, 3.6vw, 2.4rem);
}

.product-compare__intro {
  display: grid;
  gap: clamp(0.9rem, 2.4vw, 1.4rem);
  max-width: 720px;
}

.product-compare__title {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  letter-spacing: -0.015em;
  color: var(--inspior-ink);
}

.product-compare__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--inspior-muted);
}

.product-compare__grid {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.product-compare__card {
  border-radius: clamp(22px, 4vw, 28px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(236, 241, 252, 0.88));
  border: 1px solid var(--inspior-border);
  box-shadow: var(--inspior-shadow-md);
  padding: clamp(1.8rem, 3.2vw, 2.4rem);
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.2rem);
}

.product-compare__name {
  margin: 0;
  font-size: 1.28rem;
  color: var(--inspior-ink);
}

.product-compare__summary {
  margin: 0;
  line-height: 1.7;
  color: var(--inspior-muted);
}

.product-compare__list {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: rgba(17, 26, 43, 0.76);
  line-height: 1.6;
}

.product-compare__list li {
  padding-left: 0.25em;
}

.product-compare__note {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(91, 109, 255, 0.85);
}

.product-card {
  background: var(--fx-surface);
  border-radius: 20px;
  border: 1px solid var(--fx-border-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: grid;
  gap: 0.85rem;
}

.product-detail--inspior .product-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(210, 35, 42, 0.08));
  border: 1px solid rgba(210, 35, 42, 0.18);
  box-shadow: 0 22px 40px rgba(17, 19, 23, 0.12);
}

.product-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.product-card__body {
  margin: 0;
  color: var(--fx-muted);
  line-height: 1.6;
}

.product-card__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.product-card__list li {
  line-height: 1.5;
}

.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--fx-surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--fx-shadow-sm);
}

.product-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 20px;
}

.product-table--config tbody td,
.product-table--config thead th {
  width: calc(100% / 3);
}

.product-table thead {
  background: rgba(210, 35, 42, 0.08);
}

.product-table th,
.product-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--fx-border-soft);
}

.product-table--config tbody tr {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-table--config tbody td:first-child {
  font-weight: 600;
  color: rgba(31, 35, 41, 0.86);
}

.product-table--config tbody td:last-child {
  color: rgba(31, 35, 41, 0.74);
}

.product-detail--inspior .product-table-wrapper {
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
  padding: clamp(0.85rem, 2vw, 1.2rem);
  border-radius: 32px;
  background: linear-gradient(150deg, rgba(210, 35, 42, 0.08), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(210, 35, 42, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.product-detail--inspior .product-table--config {
  background: #fff;
  border: 1px solid rgba(210, 35, 42, 0.18);
  box-shadow: 0 26px 48px rgba(17, 19, 23, 0.14);
}

.product-detail--inspior .product-table--config thead th {
  background: #fff;
  color: rgba(31, 35, 41, 0.7);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 700;
}

.product-detail--inspior .product-table--config td {
  border-bottom-color: rgba(210, 35, 42, 0.14);
}

.product-detail--inspior .product-table--config tbody tr {
  background: #fff;
}

.product-detail--inspior .product-table--config tbody tr:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(17, 19, 23, 0.12);
}

.product-section--applications {
  gap: clamp(1.6rem, 3vw, 2.6rem);
  padding: clamp(2.4rem, 5vw, 3.4rem);
  border-radius: clamp(28px, 6vw, 40px);
  background: radial-gradient(circle at 15% 20%, rgba(210, 35, 42, 0.12), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(31, 35, 41, 0.08));
  box-shadow: var(--fx-shadow-md);
  position: relative;
  overflow: hidden;
}

.product-section--applications::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 10%, rgba(210, 35, 42, 0.18), transparent 65%);
  opacity: 0.55;
}

.product-section--applications > * {
  position: relative;
  z-index: 1;
}

.product-section--chips {
  padding: clamp(2.6rem, 5.2vw, 3.8rem);
  border-radius: clamp(30px, 6.4vw, 44px);
  background:
    linear-gradient(135deg, rgba(14, 22, 40, 0.86), rgba(14, 22, 40, 0.74)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 42px);
  box-shadow: 0 32px 60px rgba(7, 11, 19, 0.38);
  color: rgba(235, 243, 255, 0.92);
  position: relative;
  overflow: hidden;
}

.product-section--chips::before,
.product-section--chips::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.product-section--chips::before {
  background:
    radial-gradient(120% 140% at 12% 20%, rgba(91, 109, 255, 0.32), transparent 62%),
    radial-gradient(130% 130% at 85% 10%, rgba(255, 89, 100, 0.28), transparent 66%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), transparent 65%);
  opacity: 0.8;
}

.product-section--chips::after {
  background:
    conic-gradient(from 90deg at 18% 82%, rgba(91, 109, 255, 0.22), transparent 45%),
    radial-gradient(120% 160% at 82% 82%, rgba(255, 255, 255, 0.18), transparent 65%);
  opacity: 0.65;
}

.product-chips {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 4.5vw, 3.2rem);
  align-items: start;
}

.product-chips__content {
  display: grid;
  gap: clamp(1.4rem, 3.2vw, 2.2rem);
}

.product-chips__copy {
  display: grid;
  gap: clamp(0.9rem, 2.4vw, 1.4rem);
  color: rgba(229, 237, 255, 0.86);
  font-size: 1.06rem;
  line-height: 1.85;
}

.product-chips__copy p {
  margin: 0;
}

.product-chips__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.product-section--chips .btn,
.product-section--chips .btn.btn--ghost {
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.product-section--chips .btn {
  background: linear-gradient(135deg, rgba(91, 109, 255, 0.92), rgba(91, 109, 255, 0.72));
  box-shadow: 0 18px 34px rgba(22, 32, 56, 0.36);
  color: #fff;
}

.product-section--chips .btn:hover,
.product-section--chips .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(22, 32, 56, 0.42);
}

.product-section--chips .btn.btn--ghost {
  background: linear-gradient(135deg, rgba(14, 22, 40, 0.6), rgba(14, 22, 40, 0.4));
  border: 1px solid rgba(142, 162, 210, 0.45);
  color: rgba(223, 232, 255, 0.92);
}

.product-section--chips .btn.btn--ghost:hover,
.product-section--chips .btn.btn--ghost:focus-visible {
  background: linear-gradient(135deg, rgba(91, 109, 255, 0.32), rgba(91, 109, 255, 0.18));
  box-shadow: 0 20px 38px rgba(7, 11, 19, 0.38);
}

.product-chips__aside {
  position: relative;
}

.product-chips__media {
  position: relative;
  border-radius: clamp(22px, 4.6vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(142, 162, 210, 0.45);
  box-shadow: 0 28px 54px rgba(7, 11, 19, 0.44);
  background: linear-gradient(145deg, rgba(18, 28, 48, 0.85), rgba(18, 28, 48, 0.65));
}

.product-chips__media::after {
  content: '';
  position: absolute;
  inset: 4%;
  border-radius: inherit;
  border: 1px solid rgba(91, 109, 255, 0.28);
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(91, 109, 255, 0.14);
}

.product-chips__media video,
.product-chips__media img {
  display: block;
  width: 100%;
  height: auto;
}

.product-chips__media .media-slot__content {
  position: relative;
  isolation: isolate;
}

.product-chips__media .media-slot__content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.2), rgba(8, 14, 26, 0));
  pointer-events: none;
}

.product-chips__media .media-slot__content > * {
  position: relative;
  z-index: 0;
}

@media (max-width: 960px) {
  .product-chips {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-chips__aside {
    order: -1;
  }
}

@media (max-width: 640px) {
  .product-section--chips {
    padding: clamp(2rem, 8vw, 2.6rem);
  }

  .product-section--chips .btn,
  .product-section--chips .btn.btn--ghost {
    width: 100%;
    justify-content: center;
  }
}

.product-applications {
  display: grid;
  gap: clamp(1.8rem, 3vw, 2.6rem);
}

.product-applications__viewport {
  position: relative;
  overflow: hidden;
}

.product-applications__track {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.3, 1);
  will-change: transform;
}

.product-applications__track [data-config-template] {
  display: none;
}

.product-applications[data-carousel-ready] .product-applications__track {
  display: flex;
}

.product-applications__track .application-card {
  max-width: min(560px, 100%);
  margin: 0 auto;
}

.product-applications[data-carousel-ready] .application-card {
  flex: 0 0 100%;
  max-width: none;
  margin: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.product-applications[data-carousel-ready] .application-card:not(.is-active) {
  opacity: 0.75;
  transform: scale(0.98);
}

.product-applications .media-slot {
  background: linear-gradient(160deg, rgba(31, 35, 41, 0.07), rgba(210, 35, 42, 0.14));
  border-radius: 18px;
}

.product-applications__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.2rem);
  flex-wrap: wrap;
}

.product-applications__control {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(210, 35, 42, 0.26);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(210, 35, 42, 0.16));
  color: rgba(210, 35, 42, 0.85);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 16px 32px rgba(17, 19, 23, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-applications__control:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  box-shadow: none;
}

.product-applications__control:not(:disabled):hover,
.product-applications__control:not(:disabled):focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(17, 19, 23, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(210, 35, 42, 0.22));
}

.product-applications__control span {
  display: block;
  transform: translateY(-1px);
}

.product-applications__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-applications__indicators {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.product-applications__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(210, 35, 42, 0.28);
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  cursor: pointer;
}

.product-applications__dot:focus-visible {
  outline: 2px solid rgba(210, 35, 42, 0.65);
  outline-offset: 2px;
}

.product-applications__dot.is-active {
  width: 26px;
  background: rgba(210, 35, 42, 0.78);
  transform: translateY(-1px);
}

.product-applications__progress {
  width: 180px;
  height: 4px;
  border-radius: 999px;
  background: rgba(210, 35, 42, 0.18);
  overflow: hidden;
  position: relative;
}

.product-applications__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(var(--progress, 0));
  background: rgba(210, 35, 42, 0.6);
  transition: transform 0.4s ease;
}

.product-applications:not([data-carousel-ready]) .product-applications__progress {
  display: none;
}

.product-detail--inspior .product-section--applications {
  position: relative;
  padding: clamp(2.6rem, 5vw, 3.8rem);
  border-radius: clamp(28px, 6vw, 40px);
  background: var(--inspior-surface);
  border: 1px solid var(--inspior-border);
  box-shadow: var(--inspior-shadow-lg);
  overflow: hidden;
}

.product-detail--inspior .product-section--applications::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 160% at 85% 10%, rgba(255, 89, 100, 0.2), transparent 60%),
    radial-gradient(140% 160% at 15% 85%, rgba(91, 109, 255, 0.18), transparent 65%),
    radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.32), transparent 68%),
    repeating-linear-gradient(0deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, var(--inspior-grid-line) 0, var(--inspior-grid-line) 1px, transparent 1px, transparent 40px);
  opacity: 0.9;
  pointer-events: none;
}

.product-detail--inspior .product-applications {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 2.8rem);
}

.product-detail--inspior .product-applications__viewport {
  position: relative;
  border-radius: clamp(24px, 5vw, 32px);
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.product-detail--inspior .product-applications__viewport::before {
  content: none;
}

.product-detail--inspior .product-applications__track {
  display: grid;
  gap: clamp(1.8rem, 3vw, 2.6rem);
  transition: transform 0.6s cubic-bezier(0.4, 0.8, 0.4, 1);
  will-change: transform;
}

.product-detail--inspior .product-applications[data-carousel-ready] .product-applications__track {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  padding: 0;
}

.product-detail--inspior .product-applications[data-carousel-ready] .application-card {
  flex: 0 0 100%;
  transform-origin: center;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.product-detail--inspior .product-applications[data-carousel-ready] .application-card:not(.is-active) {
  opacity: 0.55;
  transform: scale(0.95);
}

.product-detail--inspior .product-applications__controls {
  display: grid;
  gap: clamp(0.8rem, 3vw, 1.4rem);
  justify-items: center;
}

.product-detail--inspior .product-applications__indicators {
  display: grid;
  gap: 0.65rem;
  align-items: center;
  justify-items: center;
  min-width: min(240px, 42vw);
}

.product-detail--inspior .product-applications__control {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(94, 120, 160, 0.55);
  background: linear-gradient(165deg, rgba(13, 19, 33, 0.92), rgba(27, 35, 56, 0.84));
  color: #f5f7ff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 20px 42px rgba(12, 18, 32, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.product-detail--inspior .product-applications__control:disabled {
  opacity: 0.35;
  box-shadow: none;
  cursor: not-allowed;
  background: linear-gradient(165deg, rgba(22, 30, 46, 0.75), rgba(29, 38, 58, 0.7));
  border-color: rgba(94, 120, 160, 0.35);
}

.product-detail--inspior .product-applications__control:not(:disabled):hover,
.product-detail--inspior .product-applications__control:not(:disabled):focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 54px rgba(12, 18, 32, 0.42);
  background: linear-gradient(165deg, rgba(19, 27, 44, 0.92), rgba(39, 52, 78, 0.88));
  border-color: rgba(245, 247, 255, 0.3);
}

.product-detail--inspior .product-applications__control span {
  transform: translateY(-1px);
}

.product-detail--inspior .product-applications__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product-detail--inspior .product-applications__dot {
  width: 14px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(94, 120, 160, 0.5);
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  cursor: pointer;
}

.product-detail--inspior .product-applications__dot.is-active {
  width: 36px;
  background: linear-gradient(90deg, #ff5964, #5b6dff);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.product-detail--inspior .product-applications__progress {
  width: min(240px, 42vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(94, 120, 160, 0.35);
  overflow: hidden;
  position: relative;
}

.product-detail--inspior .product-applications__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(var(--progress, 0));
  background: linear-gradient(90deg, #ff5964, #5b6dff);
  transition: transform 0.4s ease;
}






.product-detail--inspior .product-applications .media-slot {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(15, 21, 35, 0.92), rgba(31, 42, 63, 0.88));
  border: 1px solid rgba(94, 120, 160, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: clamp(0.85rem, 2vw, 1.4rem);
}

.product-detail--inspior .product-applications .media-slot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.application-card {
  display: grid;
  gap: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  border-radius: 24px;
  padding: clamp(1.6rem, 3.2vw, 2.3rem);
  border: 1px solid rgba(210, 35, 42, 0.12);
  box-shadow: var(--fx-shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-detail--inspior .application-card {
  position: relative;
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.6rem);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  border-radius: clamp(24px, 5vw, 32px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(236, 241, 252, 0.9));
  border: 1px solid rgba(94, 120, 160, 0.35);
  box-shadow: var(--inspior-shadow-md);
  color: var(--inspior-ink);
  overflow: hidden;
}

.product-detail--inspior .application-card > * {
  position: relative;
  z-index: 1;
}

.product-detail--inspior .application-card::before {
  content: '';
  position: absolute;
  inset: -20% 35% auto -10%;
  height: 65%;
  background: radial-gradient(80% 100% at 0% 50%, rgba(255, 89, 100, 0.22), transparent 70%);
  filter: blur(22px);
  opacity: 0.75;
  pointer-events: none;
}

.product-detail--inspior .application-card::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0.55;
  pointer-events: none;
}

.product-detail--inspior .application-card__label {
  color: #ff5964;
}

.product-detail--inspior .application-card__title {
  color: var(--inspior-ink);
  font-size: clamp(1.18rem, 1.2vw + 1rem, 1.4rem);
  letter-spacing: -0.01em;
}

.product-detail--inspior .application-card__summary {
  color: var(--inspior-muted);
}

.product-detail--inspior .application-card__value {
  color: var(--inspior-ink);
}

.product-detail--inspior .application-card__note {
  border-color: rgba(94, 120, 160, 0.28);
  color: rgba(17, 26, 43, 0.7);
}

.application-card__media {
  margin: -0.3rem 0 0;
}

.application-card__body {
  display: grid;
  gap: 1rem;
}

.application-card__title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
}

.application-card__summary {
  margin: 0;
  color: var(--fx-muted);
  line-height: 1.6;
}

.application-card__detail {
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.application-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(113, 30, 35, 0.78);
}

.application-card__value {
  font-weight: 600;
  color: rgba(31, 35, 41, 0.85);
  line-height: 1.55;
}

.application-card__note {
  margin: 0;
  color: rgba(31, 35, 41, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
  border-top: 1px solid rgba(210, 35, 42, 0.12);
  padding-top: 0.85rem;
}

.product-table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fx-muted);
}

.product-table tbody tr:last-child td {
  border-bottom: none;
}

.product-callouts,
.product-applications,
.product-table-wrapper {
  scrollbar-width: thin;
}

.product-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.product-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(31, 35, 41, 0.2);
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .product-detail--inspior .product-applications__track,
  .product-detail--inspior .product-applications[data-carousel-ready] .application-card,
  .product-detail--inspior .product-applications__progress-bar,
  .product-detail--inspior .product-applications__control {
    transition: none !important;
  }
}

@media (max-width: 720px) {
  .product-detail--inspior .product-table--config thead {
    display: none;
  }

  .product-detail--inspior .product-table--config tbody {
    display: grid;
    gap: clamp(1rem, 3vw, 1.4rem);
  }

  .product-detail--inspior .product-table--config tbody tr {
    display: grid;
    gap: 0.75rem;
    padding: clamp(1.2rem, 4vw, 1.6rem);
    border-radius: 22px;
    border: 1px solid rgba(210, 35, 42, 0.2);
    box-shadow: 0 20px 38px rgba(17, 19, 23, 0.12);
    transform: none !important;
  }

  .product-detail--inspior .product-table--config tbody td {
    padding: 0;
    border: 0;
  }

  .product-detail--inspior .product-table--config tbody td::before {
    content: attr(data-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(210, 35, 42, 0.72);
    display: block;
    margin-bottom: 0.3rem;
  }
}

.product-cta {
  background: var(--fx-surface);
  border-radius: 26px;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--fx-shadow-sm);
  border: 1px solid var(--fx-border-soft);
}

.product-detail--inspior .product-cta {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(210, 35, 42, 0.12));
  border: 1px solid rgba(210, 35, 42, 0.2);
  box-shadow: 0 24px 46px rgba(17, 19, 23, 0.14);
  align-items: center;
}

.product-detail--inspior .product-cta > :first-child {
  flex: 1 1 56ch;
}

.product-detail--inspior .product-cta__body {
  margin-top: 1.1rem;
  max-width: 56ch;
}

.product-detail--inspior .product-cta__actions {
  justify-content: flex-end;
  margin-left: auto;
}

.product-cta__title {
  margin: 0;
  font-size: clamp(1.6rem, 1vw + 1.4rem, 2.2rem);
  font-weight: 650;
}

.product-cta__body {
  margin: 0;
  max-width: 38ch;
  color: var(--fx-muted);
  line-height: 1.6;
}

.product-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .product-showcase {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .product-card--chips {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    align-items: start;
  }
}

@media (max-width: 960px) {
  .product-hero {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .product-hero__visual {
    justify-items: start;
  }

  .product-overview {
    padding: clamp(2rem, 6vw, 3rem);
  }
}

@media (min-width: 820px) {
  .product-callouts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-detail--inspior .product-cta__actions {
    margin-left: 0;
  }

  .product-showcase {
    padding: clamp(2rem, 9vw, 2.6rem);
  }

  .product-overview__actions {
    flex-direction: column;
  }

  .product-overview__actions .btn {
    width: 100%;
  }
}
