/* =====================================================
   MedDev Advisory - Product Resource Landing Styles
   ===================================================== */

.product-header {
  position: relative;
  overflow: hidden;
}

.product-header .tag {
  background: rgba(0, 180, 166, 0.16);
  border: 1px solid rgba(0, 180, 166, 0.4);
  color: #DDF7F4;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-header::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 45%;
  height: 380px;
  background:
    radial-gradient(circle at 30% 35%, rgba(0, 180, 166, 0.2), transparent 34%),
    radial-gradient(circle at 70% 65%, rgba(214, 177, 94, 0.18), transparent 38%);
  pointer-events: none;
}

.product-eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 26px 0 0;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: var(--text-sm);
  font-weight: 700;
}

.product-preview-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl, 24px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.product-preview-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.product-preview-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  padding: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #eef6f8, #f8fbfc);
}

.product-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(10, 22, 40, 0.12));
}

.product-preview-media:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -3px;
}

.product-preview-caption {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  color: var(--text-mid);
  line-height: 1.65;
}

.product-preview-caption strong {
  color: var(--navy);
}

.product-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.product-package-card i {
  color: var(--teal);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.product-package-card h3 {
  color: var(--navy);
  font-size: var(--text-md);
  margin-bottom: 10px;
}

.product-package-card p {
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.product-proof-strip {
  background: linear-gradient(135deg, var(--navy), #0f465f);
  color: var(--white);
}

.product-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-proof-item {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.product-proof-item strong {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.product-proof-item span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.product-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-fit-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-fit-card.is-good {
  border-top: 4px solid var(--teal);
}

.product-fit-card.is-not,
.product-fit-card.is-caution {
  border-top: 4px solid #D97706;
}

.product-fit-card h3 {
  color: var(--navy);
  margin-bottom: 14px;
}

.product-fit-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-fit-card li {
  display: flex;
  gap: 10px;
  color: var(--text-mid);
  line-height: 1.65;
}

.product-fit-card li i {
  color: var(--teal);
  margin-top: 5px;
  flex-shrink: 0;
}

.product-fit-card.is-not li i,
.product-fit-card.is-caution li i {
  color: #D97706;
}

.product-steps {
  counter-reset: product-step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-step {
  counter-increment: product-step;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.product-step::before {
  content: counter(product-step);
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.product-step h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.product-step p {
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.product-use-guide {
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 180, 166, 0.08), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(214, 177, 94, 0.12), transparent 30%),
    linear-gradient(135deg, #F8FBFB, #FFFDF7);
}

.product-guide-shell {
  border: 1px solid rgba(0, 73, 95, 0.12);
  border-radius: var(--radius-xl, 24px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
  padding: 34px;
}

.product-guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.product-guide-copy {
  max-width: 850px;
}

.product-guide-copy .section-title {
  margin-bottom: 12px;
  text-align: left;
}

.product-guide-copy .section-subtitle {
  max-width: none;
  margin: 0;
  text-align: left;
}

.product-guide-quickstart {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 180, 166, 0.35);
  background:
    linear-gradient(135deg, rgba(0, 73, 95, 0.96), rgba(14, 85, 101, 0.92)),
    var(--navy);
  color: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.product-guide-quickstart span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-guide-quickstart h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.product-guide-quickstart ol {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.product-guide-quickstart li + li {
  margin-top: 8px;
}

.product-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.product-guide-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-guide-card-kicker {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 180, 166, 0.12);
  color: var(--teal);
  font-weight: 900;
  font-size: var(--text-sm);
}

.product-guide-card.is-caution .product-guide-card-kicker {
  background: rgba(217, 119, 6, 0.12);
  color: #B45309;
}

.product-guide-card.is-emphasis {
  border-color: rgba(0, 180, 166, 0.42);
  background: linear-gradient(135deg, rgba(0, 180, 166, 0.08), rgba(255, 255, 255, 0.96));
}

.product-guide-card.is-caution {
  border-color: rgba(217, 119, 6, 0.36);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(255, 255, 255, 0.96));
}

.product-guide-card h3 {
  color: var(--navy);
  margin-bottom: 0;
}

.product-guide-card ul,
.product-guide-card ol {
  margin: 0;
  padding-left: 18px;
  color: var(--text-mid);
  line-height: 1.65;
}

.product-guide-card li + li {
  margin-top: 8px;
}

.product-guide-card strong {
  color: var(--navy);
}

.product-guide-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.product-guide-outcome {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(0, 73, 95, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 16px;
}

.product-guide-outcome i {
  color: var(--teal);
  margin-top: 4px;
}

.product-guide-outcome strong {
  display: block;
  color: var(--navy);
  margin-bottom: 3px;
}

.product-guide-outcome span {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.product-price-card {
  background: linear-gradient(135deg, #F8FBFB, #F3EFE4);
  border: 1px solid rgba(214, 177, 94, 0.45);
  border-radius: var(--radius-xl, 24px);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.product-price-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.product-price-card p {
  color: var(--text-mid);
  line-height: 1.75;
}

.product-disclaimer-card {
  background: linear-gradient(135deg, #F8FBFB, #F3EFE4);
  border: 1px solid rgba(214, 177, 94, 0.45);
  border-radius: var(--radius-xl, 24px);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.product-disclaimer-card h2 {
  color: var(--navy);
  margin-bottom: 12px;
}

.product-disclaimer-card p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}

.product-price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.product-price-list div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.product-price-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.product-price-list span {
  color: var(--text-light);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.product-price-card .product-disclaimer {
  color: var(--text-light);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin: 18px 0 0;
}

.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 980px) {
  .product-package-grid,
  .product-proof-grid,
  .product-steps,
  .product-price-list,
  .product-preview-grid,
  .product-guide-grid,
  .product-guide-hero,
  .product-guide-outcomes {
    grid-template-columns: 1fr;
  }

  .product-fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-package-card,
  .product-fit-card,
  .product-step,
  .product-price-card,
  .product-disclaimer-card,
  .product-guide-shell,
  .product-guide-card {
    padding: 22px;
  }
}
