/* ==========================================
   SOLUTION DETAIL PAGES
   Shared styles for all 8 solution pages
   ========================================== */

/* --- Split Page Hero --- */
.hero--split-page {
  padding: 160px 0 80px;
  background: var(--color-bg);
}

.hero--split-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero--split-page__text h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero--split-page__text p {
  font-size: 1.0625rem;
  max-width: 500px;
  margin-bottom: 32px;
  color: var(--color-text-secondary);
}

.hero--split-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero--split-page__visual {
  position: relative;
}

.hero--split-page__visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .hero--split-page { padding: 140px 0 60px; }
  .hero--split-page__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero--split-page__visual { order: -1; }
}

/* --- Case Cards (base) --- */
.case-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border-color: var(--color-border-hover);
}

.case-card__body {
  padding: 32px;
}

.case-card__body h3 {
  margin-bottom: 12px;
}

.case-card__body p {
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

/* --- Steps Card Number (base) --- */
.steps-card__number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.page-header__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  max-width: 620px;
  font-size: 1.125rem;
}


/* ========== SOLUTION DETAIL PAGES ========== */

.case-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-bg-subtle, #F5F3EF);
  color: var(--color-text-heading);
  margin-bottom: 16px;
}

.case-card__icon svg {
  width: 24px;
  height: 24px;
}

.process-step .steps-card__number {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  font-weight: 700;
}

/* Solution page feature card bullet list */
.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.feature-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-body);
}

.feature-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-heading);
}

/* Solution detail section spacing */
.section--alt {
  background: var(--color-bg-subtle, #FAFAF8);
}
