/* ============================================================
   product-detail.css
   Styles the individual product detail pages (DigSight,
   HaulSight Open Cut, HaulSight Underground, DrillSight,
   BeltSight) — hero, body overview, modules box, deliverables
   grid, and integration note.
   ============================================================ */

/* --- Product detail hero --- */
.product-detail-hero {
  background: var(--navy);
  padding: 56px 32px 48px;
}
.product-detail-hero__inner {
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Back button --- */
.product-detail-back {
  background: none;
  border: none;
  color: var(--od-m);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.product-detail-back:hover { color: var(--od); }

/* --- Hero two-column grid --- */
.product-detail-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

/* --- Vertical tag badge (mining green) --- */
.product-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 16px;
  background: rgba(29,158,117,0.15);
  color: #4ED9A8;
  border: 1px solid rgba(29,158,117,0.3);
}

/* --- Headline --- */
.product-detail-hero h1 {
  color: var(--od);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* --- Tagline and intro --- */
.product-detail-tagline {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-detail-intro {
  color: var(--od-m);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* --- Hero image --- */
.product-detail-hero__image {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.product-detail-hero__image img {
  width: 100%;
  display: block;
  max-height: 300px;
  object-fit: cover;
}

/* --- Body section --- */
.product-detail-body {
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 32px;
}

/* --- Overview two-column grid --- */
.product-overview {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.product-overview h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  color: var(--text);
}
.product-overview p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* --- Modules box --- */
.product-modules-box {
  background: var(--light);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--border);
}
.product-modules-box h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

/* --- Module list --- */
.product-modules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-modules-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.product-modules-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 8px;
}

/* --- Deliverables section --- */
.product-deliverables h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 28px;
  color: var(--text);
}

/* --- Deliverables two-column grid --- */
.product-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* --- Individual deliverable card --- */
.product-deliverable-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.product-deliverable-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-deliverable-card h3 i { color: var(--blue); font-size: 16px; }
.product-deliverable-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-deliverable-card ul li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.product-deliverable-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--res);
  font-weight: 700;
  font-size: 12px;
}

/* --- Integration / reporting note box --- */
.product-integration {
  background: var(--navy2);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.product-integration h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--od);
  margin-bottom: 10px;
}
.product-integration p {
  color: var(--od-m);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Pipedrive embed wrapper --- */
.pipedrive-embed-wrapper {
  /* Container for either the fallback form or an iframe embed */
}
