/* LIG Product Works Page Specific Styles */

.page {
  max-width: 1100px;
  padding: 32px 24px 64px;
}

.breadcrumb {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--colour-text-muted);
  margin-bottom: 16px;
}

.breadcrumb:hover {
  color: var(--colour-accent-strong);
}

/* Hero */
.page-hero {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: -80px;
  position: relative;
  min-height: 36vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 32, 28, 0.94) 0%, rgba(26, 32, 28, 0.88) 55%, rgba(41, 49, 43, 0.82) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(154, 165, 142, 0.3), transparent 55%);
  pointer-events: none;
}

.page-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.product-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-hero-text h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1.15;
  color: #ffffff;
  font-weight: 600;
}

.page-hero-text p {
  margin: 0 0 16px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(179, 106, 60, 0.9);
  color: #fff7f0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-card {
  position: relative;
  z-index: 2;
}

.section-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 600;
}

p.lead {
  margin: 0;
  font-size: 16px;
  color: var(--colour-text-muted);
  line-height: 1.7;
}

/* Solutions grid */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(170, 181, 161, 0.2);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.solution-card .status-badge {
  background: rgba(179, 106, 60, 0.15);
  color: var(--colour-accent-strong);
  margin-bottom: 10px;
}

.solution-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.solution-card h4 {
  margin: 14px 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--colour-text-muted);
}

.solution-card ul {
  margin: 0;
  padding-left: 18px;
}

.solution-card ul li {
  margin-bottom: 6px;
}

/* Tiers (reused for Spotlight cards) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.tier-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(170, 181, 161, 0.2);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(170, 181, 161, 0.2);
  padding-bottom: 8px;
  margin-bottom: 10px;
  gap: 10px;
}

.tier-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--colour-text-muted);
  font-weight: 600;
}

.tier-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--colour-accent-strong);
}

.tier-quote {
  font-style: italic;
  color: var(--colour-text-muted);
  margin-bottom: 12px;
}

.tier-card h4 {
  margin: 14px 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--colour-text-muted);
}

.tier-card ul {
  margin: 0 0 6px;
  padding-left: 18px;
}

/* Spotlights */
.spotlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 32px;
}

.spotlight-fit-filter {
  margin-top: 0;
  padding: 24px;
  background: rgba(249, 246, 240, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(154, 165, 142, 0.25);
}

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

@media (max-width: 1000px) {
  .spotlight-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .spotlight-fit-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

/* CTA panel */
.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(44, 53, 47, 0.95), rgba(26, 32, 28, 0.95));
  color: #f4f1e8;
}

.cta-panel p {
  color: rgba(244, 241, 232, 0.8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f4f1e8;
  color: #1e241f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cta-bubble:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: auto;
    padding: 60px 0;
    margin-bottom: -60px;
  }

  .page-hero-container {
    padding: 40px 24px;
  }

  .page-hero-text h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .solution-grid,
  .tier-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-card {
    padding: 32px 24px 28px;
  }

  .cta-panel {
    padding: 28px;
  }
}
