/* Product page — combined overview + offers */

.product-overview-section {
  padding: clamp(28px, 4vw, 40px) 0;
}

.product-overview-shell {
  position: relative;
  isolation: isolate;
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(246, 247, 251, 0.09);
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 18px,
      rgba(239, 68, 68, 0.03) 18px,
      rgba(239, 68, 68, 0.03) 19px
    ),
    linear-gradient(165deg, rgba(14, 15, 22, 0.96) 0%, rgba(10, 11, 16, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.07),
    0 14px 36px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.product-overview-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(239, 68, 68, 0.1), transparent 58%),
    radial-gradient(ellipse 60% 50% at 88% 100%, rgba(239, 68, 68, 0.08), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.product-overview-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
  align-items: start;
}

.product-overview-block-head {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(246, 247, 251, 0.07);
}

.product-overview-heading {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(246, 247, 251, 0.98);
}

.product-overview-sub {
  margin: 4px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(246, 247, 251, 0.52);
}

/* Overview rows — shared compact step style (How it works + Inside the hub) */
.product-overview-rows {
  grid-template-columns: 1fr !important;
  gap: 6px;
  max-width: none;
  margin: 0;
}

.product-overview-rows .why-card.why-row {
  opacity: 1;
  transform: none;
  padding: 10px 12px;
  border-radius: 12px;
  border-color: rgba(246, 247, 251, 0.08);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.04);
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-overview-rows .why-card.why-row:hover {
  border-color: rgba(239, 68, 68, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.28);
}

.product-overview-rows .why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.22);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.12);
}

.product-overview-rows .why-icon .icon {
  width: 16px;
  height: 16px;
}

.product-overview-rows .why-text h3 {
  margin: 0 0 2px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-overview-rows .why-text p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.42;
  color: rgba(246, 247, 251, 0.58);
}

@media (min-width: 901px) {
  .product-overview-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(18px, 2.5vw, 24px);
  }

  .product-overview-block--steps {
    padding-right: clamp(14px, 2vw, 20px);
    border-right: 1px solid rgba(246, 247, 251, 0.06);
  }

  .product-overview-block--hub {
    padding-left: clamp(2px, 0.5vw, 6px);
  }
}

@media (max-width: 900px) {
  .product-overview-block--steps {
    padding-right: 0;
    border-right: none;
  }
}

@media (max-width: 480px) {
  .product-overview-shell {
    padding: 14px;
  }
}

.product-offers-section {
  position: relative;
  isolation: isolate;
  border-top: 1px solid rgba(246, 247, 251, 0.06);
  border-bottom: 1px solid rgba(246, 247, 251, 0.06);
  padding: clamp(48px, 7vw, 72px) 0;
  overflow: hidden;
}

.product-offers-section::before {
  content: "";
  position: absolute;
  inset: -20% 0;
  background:
    radial-gradient(ellipse 55% 45% at 18% 40%, rgba(239, 68, 68, 0.1), transparent 68%),
    radial-gradient(ellipse 55% 45% at 82% 55%, rgba(239, 68, 68, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.product-offers-section .container {
  position: relative;
  z-index: 1;
}

.product-offers-section .section-head {
  margin-bottom: 12px;
  padding-top: 4px;
}

.product-offers-section .section-lead {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.product-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 36px);
  width: 100%;
  max-width: min(1040px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.product-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: clamp(22px, 2.8vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(246, 247, 251, 0.1);
  background-image:
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 20px,
      rgba(239, 68, 68, 0.05) 20px,
      rgba(239, 68, 68, 0.05) 21px
    ),
    repeating-linear-gradient(
      75deg,
      transparent 0,
      transparent 20px,
      rgba(239, 68, 68, 0.04) 20px,
      rgba(239, 68, 68, 0.04) 21px
    ),
    linear-gradient(180deg, rgba(14, 15, 22, 0.94) 0%, rgba(10, 11, 16, 0.98) 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.08),
    0 10px 36px rgba(0, 0, 0, 0.38),
    0 2px 0 rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.product-offer::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(239, 68, 68, 0.05),
    0 0 28px rgba(239, 68, 68, 0.08);
  pointer-events: none;
}

.product-offer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(246, 247, 251, 0.14), transparent);
  pointer-events: none;
  z-index: 2;
}

.product-offer:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 247, 251, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.1),
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 2px 0 rgba(0, 0, 0, 0.12);
}

.product-offer--featured {
  border-color: rgba(239, 68, 68, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.09),
    0 0 0 1px rgba(239, 68, 68, 0.22),
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 52px rgba(239, 68, 68, 0.14);
  background-image:
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 20px,
      rgba(239, 68, 68, 0.08) 20px,
      rgba(239, 68, 68, 0.08) 21px
    ),
    repeating-linear-gradient(
      75deg,
      transparent 0,
      transparent 20px,
      rgba(239, 68, 68, 0.06) 20px,
      rgba(239, 68, 68, 0.06) 21px
    ),
    linear-gradient(180deg, rgba(16, 12, 18, 0.96) 0%, rgba(10, 11, 16, 0.98) 100%);
}

.product-offer--featured::before {
  box-shadow:
    0 0 0 1px rgba(239, 68, 68, 0.12),
    0 0 40px rgba(239, 68, 68, 0.16),
    0 0 72px rgba(239, 68, 68, 0.08);
}

.product-offer--featured::after {
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.55), transparent);
}

.product-offer--featured:hover {
  border-color: rgba(239, 68, 68, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.1),
    0 0 0 1px rgba(239, 68, 68, 0.35),
    0 22px 56px rgba(0, 0, 0, 0.48),
    0 0 64px rgba(239, 68, 68, 0.18);
}

.product-offer-head .product-offer-ribbon {
  flex: 0 0 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: rgba(246, 247, 251, 0.98);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(185, 28, 28, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.32);
}

.product-offer-head .product-offer-ribbon--neutral {
  color: rgba(246, 247, 251, 0.9);
  background: linear-gradient(180deg, rgba(246, 247, 251, 0.12), rgba(246, 247, 251, 0.04));
  border: 1px solid rgba(246, 247, 251, 0.16);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.product-offer-glow {
  position: absolute;
  inset: 0 0 50%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.product-offer-glow span {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  animation: product-offer-pulse 7s ease-in-out infinite;
}

.product-offer-glow span:nth-child(1) {
  left: -12%;
  top: -25%;
  width: 72%;
  height: 95%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.16) 0%, transparent 70%);
}

.product-offer-glow span:nth-child(2) {
  right: -12%;
  top: -18%;
  width: 68%;
  height: 88%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 70%);
  animation-delay: 0.7s;
}

.product-offer-glow span:nth-child(3) {
  left: 50%;
  top: -8%;
  width: 58%;
  height: 62%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 65%);
  animation-delay: 0.35s;
}

.product-offer-glow--featured span:nth-child(1) {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.24) 0%, transparent 70%);
}

@keyframes product-offer-pulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.product-offer > .product-offer-art,
.product-offer > .product-offer-body {
  position: relative;
  z-index: 1;
}

.product-offer > .product-offer-glow {
  position: absolute;
  z-index: 0;
}

.product-offer-art {
  --offer-art-size: clamp(200px, 42vw, 260px);
  display: block;
  flex: 0 0 auto;
  width: var(--offer-art-size);
  height: var(--offer-art-size);
  margin: 0 auto clamp(16px, 2vw, 22px);
  padding: 0;
  border-radius: 16px;
  border: none;
  background: transparent;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.product-offer:hover .product-offer-art {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.product-offer--featured .product-offer-art {
  box-shadow:
    0 0 32px rgba(239, 68, 68, 0.22),
    0 12px 32px rgba(0, 0, 0, 0.35);
}

.product-offer-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  filter: brightness(1.06) contrast(1.04) saturate(1.08);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.product-offer:hover .product-offer-art img {
  transform: scale(1.03);
}

.product-offer-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  text-align: center;
}

.product-offer-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
}

.product-offer-title {
  margin: 0;
  font-size: clamp(1.12rem, 2.2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(246, 247, 251, 0.98);
}

.product-offer-meta {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(246, 247, 251, 0.45);
}

.product-offer-list {
  margin: 8px 0 0;
  padding: 14px 16px;
  list-style: none;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(246, 247, 251, 0.78);
  font-weight: 600;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(246, 247, 251, 0.06);
}

.product-offer--featured .product-offer-list {
  border-color: rgba(239, 68, 68, 0.1);
  background: rgba(239, 68, 68, 0.04);
}

.product-offer-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.product-offer-list li:last-child {
  margin-bottom: 0;
}

.product-offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.45);
  box-shadow: none;
}

.product-offer-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.45em + 4px);
  width: 6px;
  height: 3px;
  border-left: 2px solid rgba(246, 247, 251, 0.95);
  border-bottom: 2px solid rgba(246, 247, 251, 0.95);
  transform: rotate(-45deg);
}

.product-offer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.product-offer-checkout {
  padding-top: 12px;
  border-top: 1px solid rgba(246, 247, 251, 0.09);
  gap: 8px;
  text-align: left;
}

.product-offer-checkout .checkout-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.product-offer-checkout .checkout-agree-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(246, 247, 251, 0.72);
}

.product-offer-checkout .checkout-agree-input {
  flex-shrink: 0;
  margin: 2px 0 0;
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  cursor: pointer;
}

.product-offer-checkout .checkout-agree-label a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 700;
}

.product-offer-checkout .checkout-email,
.product-offer-checkout .checkout-signature-name {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(246, 247, 251, 0.12);
  background: rgba(8, 9, 12, 0.88);
  color: rgba(246, 247, 251, 0.92);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.8rem;
  box-sizing: border-box;
}

.product-offer-checkout .checkout-email:focus,
.product-offer-checkout .checkout-signature-name:focus {
  outline: none;
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.product-offer-checkout .checkout-hint {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(246, 247, 251, 0.45);
  text-align: center;
}

.product-offer-checkout .checkout-disclaimer {
  margin: 0.15rem 0 0;
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(246, 247, 251, 0.34);
  text-align: center;
}

.product-offer-checkout .product-offer-btn {
  letter-spacing: 0.06em;
  text-transform: none;
  height: 40px;
  min-height: 40px;
  font-size: 0.82rem;
}

.product-offer-checkout .product-offer-btn--primary {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: #fff;
  border: 1px solid rgba(220, 38, 38, 0.95);
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.22);
}

.product-offer-checkout .product-offer-btn--primary:hover {
  background: #dc2626;
  box-shadow: 0 8px 28px rgba(239, 68, 68, 0.3);
}

.product-faq-section {
  padding: clamp(40px, 6vw, 56px) 0;
}

.product-offer-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 13px 20px;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-offer:not(.product-offer--featured) .product-offer-btn {
  background: rgba(18, 20, 28, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.32);
  color: rgba(246, 247, 251, 0.95);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.06);
}

.product-offer:not(.product-offer--featured) .product-offer-btn:hover {
  background: rgba(24, 26, 36, 0.95);
  border-color: rgba(239, 68, 68, 0.48);
  box-shadow: 0 0 28px rgba(239, 68, 68, 0.12);
}

.product-offer--featured .product-offer-btn {
  background: var(--accent);
  border: none;
  color: #fff;
  box-shadow: 0 8px 28px rgba(239, 68, 68, 0.28);
}

.product-offer--featured .product-offer-btn:hover {
  background: #dc2626;
  box-shadow: 0 12px 36px rgba(239, 68, 68, 0.38);
  transform: translateY(-1px);
}

.product-offers-foot {
  margin: clamp(16px, 2.5vw, 22px) 0 0;
  text-align: center;
}

.product-offers-foot a {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(246, 247, 251, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-offers-foot a:hover {
  color: rgba(252, 165, 165, 0.95);
}

.product-offers-section .pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.5625rem;
  padding: 5px 10px;
  border-radius: 999px;
  margin: 0;
  color: rgba(246, 247, 251, 0.92);
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.14), rgba(239, 68, 68, 0.05));
}

.product-offers-section .pricing-badge--neutral {
  border: 1px solid rgba(246, 247, 251, 0.14);
  background: linear-gradient(180deg, rgba(246, 247, 251, 0.09), rgba(246, 247, 251, 0.02));
  color: rgba(246, 247, 251, 0.75);
}

/* Hero — breathing room below nav slogan */
.product-page .product-hero-section .hub-tag {
  margin-top: 20px;
}

/* Hero title — match homepage hub headline */
.product-page .product-hero-section .hub-title {
  font-size: clamp(1.75rem, 5vw, 2.45rem);
  letter-spacing: -0.06em;
  line-height: 1.1;
  max-width: 20ch;
}

.product-page .product-hero-section .hub-title::after {
  margin-left: 0;
  margin-right: auto;
}

.product-page .product-hero-section .hub-title::before {
  margin-left: 0;
  margin-right: auto;
}

/* Hero copy strip — same animated flow border as homepage (#hub) */
.product-page .product-hero-section .hub-copy-strip {
  max-width: 50ch;
}

/* Hero + steps polish on product page */
.product-page .product-hero-actions .btn {
  border-radius: 14px;
  font-weight: 800;
}


/* Desktop — balanced vertical product cards */
@media (min-width: 901px) {
  .product-offers-section {
    padding: clamp(40px, 5vw, 56px) 0;
  }

  .product-offers-section .section-lead {
    margin-bottom: 28px;
  }

  .product-offers {
    max-width: min(800px, 100%);
    gap: 22px;
    align-items: stretch;
  }

  .product-offer {
    display: flex;
    flex-direction: column;
    padding: 22px 20px 20px;
  }

  .product-offer:hover {
    transform: translateY(-3px);
  }

  .product-offer-head .product-offer-ribbon {
    margin-bottom: 6px;
  }

  .product-offer-art {
    --offer-art-size: 200px;
    width: 200px;
    height: 200px;
    margin: 0 auto 14px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }

  .product-offer-art img {
    border-radius: 14px;
  }

  .product-offer-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
    text-align: center;
  }

  .product-offer-head {
    justify-content: center;
  }

  .product-offer-title {
    font-size: 1.1rem;
  }

  .product-offer-meta {
    font-size: 0.74rem;
  }

  .product-offer-list {
    margin-top: 4px;
    padding: 12px 14px;
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .product-offer-list li {
    margin-bottom: 6px;
  }

  .product-offer-actions {
    padding-top: 14px;
    margin-top: auto;
  }

  .product-offer-btn {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 12px 18px;
    font-size: 0.82rem;
  }

  .product-offers-foot {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-offer-glow span {
    animation: none;
  }

  .product-offer,
  .product-offer-art img {
    transition: none;
  }
}

@media (max-width: 720px) {
  .product-offers {
    grid-template-columns: 1fr;
    max-width: min(400px, 100%);
    gap: 22px;
  }

  .product-offer-art {
    --offer-art-size: min(100%, 240px);
  }

  .product-offer-head .product-offer-ribbon {
    margin-bottom: 6px;
    padding: 4px 9px;
    font-size: 0.52rem;
  }
}

