/* ==========================================================================
   Product pages (Intelzo / DocAssist) — loaded only on those templates.
   Extends the futuristic design system; everything scoped to body.is-hero-page
   which the product templates also receive.
   ========================================================================== */

/* --- Compact spotlight hero -------------------------------------------------- */

body.is-hero-page .hero-spotlight--compact {
  height: 88vh;
  height: 88dvh;
}

body.is-hero-page .hero-spotlight--compact .hero-spotlight__heading {
  padding-bottom: 4vh;
}

body.is-hero-page .hero-spotlight--compact .hero-line-1 {
  font-size: 2.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  text-shadow: 0 0 18px rgba(0, 230, 118, 0.5);
}

body.is-hero-page .hero-spotlight--compact .hero-line-2 {
  font-size: 3rem;
  margin-top: 1rem;
}

body.is-hero-page .hero-spotlight__sub {
  max-width: 720px;
  margin: 1.6rem auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.7rem;
  line-height: 1.7;
}

body.is-hero-page .hero-spotlight__cta-row--center {
  justify-content: center;
  margin-top: 2.2rem;
  pointer-events: auto;
}

/* Trust strip chips under the hero copy */
body.is-hero-page .trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2.4rem;
}

body.is-hero-page .trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: #9fffcd;
  border-radius: 9999px;
  padding: 0.55rem 1.2rem;
  font-size: 1.25rem;
}

body.is-hero-page .trust-strip i {
  font-size: 1rem;
}

/* --- Problem list -------------------------------------------------------------- */

body.is-hero-page .problem-list {
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

body.is-hero-page .problem-list li {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 3px solid rgba(255, 99, 99, 0.55);
  border-radius: 12px;
  padding: 1.4rem 1.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.55rem;
  line-height: 1.65;
}

body.is-hero-page .problem-outro {
  max-width: 820px;
  margin: 2.4rem auto 0;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.7;
}

/* --- Narrative block ("What it is") ------------------------------------------- */

body.is-hero-page .narrative {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.7rem;
  line-height: 1.85;
  text-align: center;
}

body.is-hero-page .narrative strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* --- How it works: numbered steps ----------------------------------------------- */

body.is-hero-page .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.4rem;
  counter-reset: step;
}

body.is-hero-page .step-card {
  position: relative;
  counter-increment: step;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 2.6rem 2.2rem 2.2rem;
  overflow: hidden;
}

body.is-hero-page .step-card::before {
  content: '0' counter(step);
  position: absolute;
  top: 0.6rem;
  right: 1.4rem;
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(0, 230, 118, 0.14);
  line-height: 1;
}

body.is-hero-page .step-card h3 {
  font-size: 1.9rem;
  color: #fff;
  margin: 0 0 0.9rem;
}

body.is-hero-page .step-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.45rem;
  line-height: 1.65;
  margin: 0;
}

/* --- Pricing -------------------------------------------------------------------- */

body.is-hero-page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem;
  align-items: stretch;
}

body.is-hero-page .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.8rem 2.4rem;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease, box-shadow 0.45s ease;
}

body.is-hero-page .pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 230, 118, 0.4);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5), 0 0 42px rgba(0, 230, 118, 0.09);
}

body.is-hero-page .pricing-card--popular {
  border-color: rgba(0, 230, 118, 0.55);
  box-shadow: 0 0 42px rgba(0, 230, 118, 0.12);
}

body.is-hero-page .pricing-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: var(--primary-color);
  color: #041c10;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 0.4rem 1.1rem;
}

body.is-hero-page .pricing-card h3 {
  font-size: 2rem;
  color: #fff;
  margin: 0 0 0.4rem;
}

body.is-hero-page .pricing-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.35rem;
  line-height: 1.55;
  margin: 0 0 1.6rem;
  font-style: italic;
}

body.is-hero-page .pricing-price {
  font-size: 3.4rem;
  font-weight: 700;
  background: linear-gradient(120deg, #7dffb8, var(--primary-color) 45%, #00becc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(0, 230, 118, 0.3));
  margin-bottom: 0.2rem;
}

body.is-hero-page .pricing-per {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

body.is-hero-page .pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
  display: grid;
  gap: 0.9rem;
  flex: 1;
}

body.is-hero-page .pricing-card ul li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.4rem;
  line-height: 1.55;
  padding-left: 2.2rem;
  position: relative;
}

body.is-hero-page .pricing-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  text-shadow: 0 0 6px rgba(0, 230, 118, 0.55);
}

body.is-hero-page .pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.3rem;
  margin-top: 2.6rem;
}

/* --- FAQ (native details/summary accordions) ------------------------------------- */

body.is-hero-page .faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

body.is-hero-page .faq-list details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

body.is-hero-page .faq-list details[open] {
  border-color: rgba(0, 230, 118, 0.4);
}

body.is-hero-page .faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.7rem 2rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  padding-right: 4.4rem;
}

body.is-hero-page .faq-list summary::-webkit-details-marker {
  display: none;
}

body.is-hero-page .faq-list summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

body.is-hero-page .faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

body.is-hero-page .faq-list details p {
  padding: 0 2rem 1.8rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.45rem;
  line-height: 1.7;
}

/* --- Final CTA banner --------------------------------------------------------------- */

body.is-hero-page .product-cta {
  position: relative;
  text-align: center;
  padding: 8rem 2rem;
}

body.is-hero-page .product-cta h2 {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

body.is-hero-page .product-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.7rem;
  max-width: 640px;
  margin: 0 auto 2.6rem;
}

/* --- Breadcrumb ----------------------------------------------------------------------- */

body.is-hero-page .product-breadcrumb {
  position: absolute;
  top: 7.6rem;
  left: 0;
  right: 0;
  z-index: 60;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-hero-page .product-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

body.is-hero-page .product-breadcrumb a:hover {
  color: var(--primary-color);
}

body.is-hero-page .product-breadcrumb span {
  color: rgba(0, 230, 118, 0.8);
}

/* --- Homepage products overview section ------------------------------------------------ */

body.is-hero-page .products-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

body.is-hero-page .product-overview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: 22px;
  padding: 3.2rem 2.8rem;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease, box-shadow 0.45s ease;
}

body.is-hero-page .product-overview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 230, 118, 0.55);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5), 0 0 48px rgba(0, 230, 118, 0.12);
}

body.is-hero-page .product-overview-card .product-kicker {
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 230, 118, 0.8);
  margin-bottom: 1rem;
}

body.is-hero-page .product-overview-card h3 {
  font-size: 2.6rem;
  color: #fff;
  margin: 0 0 1rem;
}

body.is-hero-page .product-overview-card > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

body.is-hero-page .product-overview-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
  display: grid;
  gap: 0.8rem;
  flex: 1;
}

body.is-hero-page .product-overview-card ul li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  padding-left: 2.2rem;
  position: relative;
}

body.is-hero-page .product-overview-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

body.is-hero-page .product-overview-card .product-link {
  align-self: flex-start;
}

/* --- Responsive tweaks ------------------------------------------------------------------- */

@media (min-width: 640px) {
  body.is-hero-page .hero-spotlight--compact .hero-line-2 {
    font-size: 4.4rem;
  }
}

@media (min-width: 768px) {
  body.is-hero-page .hero-spotlight--compact .hero-line-2 {
    font-size: 5.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-hero-page .pricing-card,
  body.is-hero-page .product-overview-card {
    transition: none;
  }
}
