/* ======================================================================
   PRODUCTS OVERVIEW PAGE
   Only two products exist, so this deliberately avoids a symmetric
   two-card grid (the generic pattern) in favour of two large alternating
   editorial panels — image and copy swap sides between the two, and the
   background alternates white/cream so the page has real rhythm instead
   of two identical boxes side by side.

   Page-specific components only. Shared tokens, header, footer and the
   final-CTA (.fcta-*) live in index.css and are reused as-is. The
   DecisionDesk AI panel reuses that product's own .dl-hero-visual*
   component (loaded via decisiondesk-ai.css) rather than inventing a
   second version of the same "scattered signals" visual.
   ====================================================================== */

.prod-panel {
  padding: 100px 0;
  background: #ffffff;
}

.prod-panel--alt {
  background: var(--page-bg);
}

@media (max-width: 767px) {
  .prod-panel {
    padding: 76px 0;
  }
}

.prod-panel__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .prod-panel__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 72px;
  }

  .prod-panel--reverse .prod-panel__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .prod-panel--reverse .prod-panel__body {
    order: 2;
  }

  .prod-panel--reverse .prod-panel__media {
    order: 1;
  }
}

.prod-panel__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-5);
}

.prod-panel__eyebrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(15, 45, 73, 0.16);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
}

.prod-panel__title {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent-2);
}

.prod-panel__text {
  margin: 16px 0 0;
  max-width: 48ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(15, 45, 73, 0.65);
}

.prod-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.prod-panel__tags li {
  padding: 6px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5ebf1;
  color: rgba(15, 45, 73, 0.62);
  font-size: 12.5px;
  font-weight: 600;
}

.prod-panel--alt .prod-panel__tags li {
  background: var(--page-bg);
  border-color: rgba(15, 45, 73, 0.1);
}

.prod-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent-2);
}

.prod-panel__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 300ms ease;
}

.prod-panel__cta:hover svg {
  transform: translateX(3px);
}

.prod-panel__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5ebf1;
}

.prod-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}

/* The DecisionDesk AI panel's abstract visual sits on the product's own
   navy background instead of the page's light bg, since .dl-hero-visual
   was designed for a dark backdrop. */
.prod-panel__media--visual {
  padding: 40px;
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.prod-panel__media--visual .dl-hero-visual {
  max-width: 420px;
  margin: 0 auto;
}

/* ============================ FINAL CTA =============================
   Same "point of the company" pattern as About / Insight 360X: navy
   gradient, four corner photos, centered content, minimal transparent
   -underline form — instead of the plain shared .fcta-section this page
   started with. */

.prod-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 130px 0;
  text-align: center;
  background: linear-gradient(160deg, var(--accent-3) 0%, var(--accent-2) 55%, #0a1e33 100%);
}

.prod-cta-arc {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  height: 70px;
  pointer-events: none;
}

.prod-cta-arc svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .prod-cta-arc {
    height: 40px;
  }
}

.prod-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.prod-cta__photo {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  background-color: #0f2d49;
  background-image: var(--img);
  background-position: center;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
}

.prod-cta__photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 42, 78, 0.5) 0%, rgba(0, 20, 38, 0.25) 100%);
  mix-blend-mode: multiply;
}

.prod-cta__photo--tl { top: 14%; left: 6%; width: 210px; height: 270px; }
.prod-cta__photo--tr { top: 10%; right: 7%; width: 190px; height: 150px; }
.prod-cta__photo--bl { bottom: 12%; left: 8%; width: 220px; height: 140px; }
.prod-cta__photo--br { bottom: 16%; right: 5%; width: 200px; height: 250px; }

@media (max-width: 1279px) {
  .prod-cta__photo--tl { width: 170px; height: 220px; left: 20px; }
  .prod-cta__photo--tr { width: 150px; height: 120px; right: 24px; }
  .prod-cta__photo--bl { width: 170px; height: 110px; left: 24px; }
  .prod-cta__photo--br { width: 160px; height: 200px; right: 20px; }
}

@media (max-width: 1023px) {
  .prod-cta {
    padding: 96px 0;
  }

  .prod-cta__media {
    display: none;
  }
}

.prod-cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.prod-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-1);
}

.prod-cta__eyebrow-icon {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--accent-1);
}

.prod-cta__title {
  margin: 22px auto 0;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.prod-cta__lede {
  margin: 18px auto 0;
  max-width: 50ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.prod-cta__card {
  max-width: 520px;
  margin: 34px auto 0;
  text-align: left;
}

.prod-cta__form-row {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

@media (min-width: 480px) {
  .prod-cta__form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prod-cta__field--wide {
    grid-column: span 2;
  }
}

.prod-cta__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prod-cta__field span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.prod-cta__field input,
.prod-cta__field select {
  min-height: 34px;
  padding: 0 0 6px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  transition: border-color 220ms ease;
}

.prod-cta__field select option {
  color: var(--accent-2);
}

.prod-cta__field input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.prod-cta__field input:focus,
.prod-cta__field select:focus {
  outline: none;
  border-color: var(--accent-1);
}

.prod-cta__submit {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  margin-top: 6px;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #d9cfae 0%, var(--accent-1) 100%);
  color: var(--accent-2);
  font-size: 15px;
  font-weight: 600;
  transition: transform 300ms ease;
}

.prod-cta__submit svg {
  width: 16px;
  height: 16px;
  transition: transform 300ms ease;
}

.prod-cta__submit:hover {
  transform: translateY(-2px);
}

.prod-cta__submit:hover svg {
  transform: translateX(3px);
}

.prod-cta__assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.prod-cta__assurances li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.prod-cta__alt {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.prod-cta__alt a {
  color: var(--accent-1);
  text-decoration: underline;
  text-underline-offset: 3px;
}
