/* ============================================================
   solution.css — Our Solution deep-dive page
   ============================================================ */

.feature { padding-block: clamp(2.8rem, 6vw, 5rem); scroll-margin-top: 90px; }
.feature__badge {
  display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem;
}
.feature__badge .n {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  color: #fff;
}
.feature__badge .lbl {
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; font-size: var(--fs-sm); color: var(--ink-faint);
}
.feature h2 { margin-bottom: 0.8rem; }
.feature .checklist { margin-top: 1.5rem; }

/* Illustration panel */
.feature-art {
  position: relative;
  border-radius: var(--r-xl);
  min-height: 340px;
  display: grid; place-items: center;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  overflow: hidden;
}
.feature-art .blob { opacity: 0.6; }
.feature-art__main {
  position: relative; z-index: 2;
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  width: min(320px, 100%);
  padding: 1.3rem;
}
.feature-art__icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 1rem;
}
.feature-art__icon svg { width: 34px; height: 34px; }
.feature-art__row { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.7rem; }
.feature-art__bar { height: 9px; border-radius: 6px; background: var(--lavender-200); flex: 1; }
.feature-art__bar i { display: block; height: 100%; border-radius: 6px; }
.fa-line { height: 10px; border-radius: 6px; background: var(--lavender-200); }
.fa-line.s { width: 60%; }
.fa-line.m { width: 80%; }

.feature-chip {
  position: absolute; z-index: 3;
  background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: 0.6rem 0.85rem; display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 0.82rem;
}
.feature-chip svg { width: 20px; height: 20px; }
.feature-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.feature-chip--tl { top: 8%; left: -3%; }
.feature-chip--br { bottom: 9%; right: -3%; }

/* "What you get" mini-grid below the four features */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
@media (max-width: 820px){ .outcomes { grid-template-columns: 1fr; } }
.outcome__ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 0.9rem; }
.outcome__ic svg { width: 28px; height: 28px; }
