/* ==========================================================================
   POSITIONING PROJECT LANDING PAGE
   ========================================================================== */

/* Hero */
.page-positioning-project .landing-hero {
  background: #121218;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  text-align: left;
  display: flex;
  align-items: center;
}

.page-positioning-project .landing-hero .container {
  width: 100%;
}

@media (max-width: 768px) {
  .page-positioning-project .landing-hero {
    padding: var(--hero-padding-top-mobile) 0 var(--hero-padding-bottom-mobile);
  }
}

.hero-intro-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
}

.landing-hero-title {
  color: #FDFFFC;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 580px;
}

@media (max-width: 768px) {
  .landing-hero-title {
    font-size: 2rem;
  }
}

.landing-hero-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 480px;
}

.lp-cta {
  display: inline-flex;
}

/* Middle section */
.landing-middle {
  padding: var(--section-padding) 0;
}

.lp-section-title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E1E24;
  margin: 0 0 24px;
}

/* Problem boxes - use design system symptom-card style */
.lp-problem-boxes {
  margin-bottom: 40px;
}

.lp-problem-boxes .problem-box {
  background: rgba(254, 226, 226, 0.7);
  border: 1.5px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.lp-problem-boxes .problem-box-icon {
  color: #ef4444;
  font-size: 1.25rem;
  font-weight: 700;
}

.lp-problem-boxes .problem-box-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Solution block */
.lp-solution-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-solution-text {
  color: #1E1E24;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

/* Deliverables card - green tint from design system */
.lp-gets-card {
  background: color-mix(in oklab, var(--green) 18%, #ffffff 82%);
  border: 1px solid color-mix(in oklab, var(--green) 35%, #dcdcdc);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 520px;
}

.lp-gets-label {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1E1E24;
  margin-bottom: 14px;
}

.lp-gets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-gets li {
  color: #1E1E24;
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.lp-gets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}
