.app-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.5fr);
  gap: clamp(42px, 7vw, 112px);
  padding: clamp(76px, 10vw, 140px) clamp(22px, 7vw, 112px);
  background: #f1f2ee;
  color: #172426;
}

.app-showcase::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  border: 1px solid rgba(19, 111, 104, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(19, 111, 104, .035), 0 0 0 58px rgba(19, 111, 104, .025);
}

.app-intro { position: relative; z-index: 1; align-self: center; }
.app-intro .section-label { color: #13766f; }
.app-kicker { margin: clamp(34px, 5vw, 72px) 0 14px; color: #ae842b; font-size: 11px; letter-spacing: .2em; font-weight: 700; }
.app-title-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.app-title-row h2 { margin: 0; color: #12383a; font-size: clamp(58px, 8vw, 104px); line-height: .92; letter-spacing: -.08em; }
.app-subtitle { margin: 16px 0 0; color: #4c6263; font-size: clamp(17px, 2vw, 23px); letter-spacing: .06em; }
.app-icon { flex: 0 0 clamp(78px, 11vw, 138px); width: clamp(78px, 11vw, 138px); height: clamp(78px, 11vw, 138px); overflow: hidden; border-radius: 28%; background: #fff; box-shadow: 0 16px 38px rgba(33, 65, 64, .13); }
.app-icon img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.app-lead { max-width: 540px; margin: 34px 0 0; color: #213d3e; font-size: clamp(18px, 2.1vw, 25px); line-height: 1.7; }
.app-lead-en { max-width: 520px; margin: 16px 0 0; color: #687878; font-size: 13px; line-height: 1.65; }
.app-feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.app-feature-tags span { border: 1px solid rgba(19, 118, 111, .25); border-radius: 999px; padding: 8px 12px; color: #176f69; background: rgba(255,255,255,.6); font-size: 12px; }
.app-note { max-width: 540px; margin: 28px 0 0; padding-top: 18px; border-top: 1px solid rgba(23, 65, 66, .14); color: #718081; font-size: 12px; line-height: 1.75; }

.app-screens { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(90px, 1fr)); align-items: end; gap: clamp(10px, 1.8vw, 24px); }
.app-screen { min-width: 0; margin: 0; }
.app-screen > div { overflow: hidden; border: 5px solid #fff; border-radius: 22px; background: #fff; box-shadow: 0 20px 42px rgba(35, 59, 58, .12); }
.app-screen img { display: block; width: 100%; height: auto; aspect-ratio: 0.465; object-fit: cover; }
.app-screen-featured { grid-column: span 2; }
.app-screen-featured > div { border-width: 7px; border-radius: 28px; }
.app-screen-featured img { aspect-ratio: .685; }
.app-screen figcaption { display: flex; flex-direction: column; gap: 3px; padding: 12px 2px 0; }
.app-screen figcaption strong { color: #204344; font-size: 12px; line-height: 1.3; }
.app-screen figcaption span { color: #7b8989; font-size: 10px; line-height: 1.4; }

@media (max-width: 960px) {
  .app-showcase { grid-template-columns: 1fr; }
  .app-intro { max-width: 720px; }
  .app-screens { max-width: 720px; }
}

@media (max-width: 620px) {
  .app-showcase { padding: 68px 18px 84px; }
  .app-title-row h2 { font-size: 68px; }
  .app-screens { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
  .app-screen-featured { grid-column: span 2; max-width: 72%; margin: 0 auto; }
  .app-screen > div { border-width: 4px; border-radius: 16px; }
  .app-screen-featured > div { border-width: 6px; border-radius: 22px; }
}
